diff --git a/app/includes/dao.tpl b/app/includes/dao.tpl index 0129a2a382..536bedc32c 100644 --- a/app/includes/dao.tpl +++ b/app/includes/dao.tpl @@ -75,21 +75,22 @@

Withdraw DAO for ETC

+ + +
- -
+
-
- + %
@@ -103,6 +104,7 @@

If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

+ diff --git a/app/includes/deployContract.tpl b/app/includes/deployContract.tpl index b0e5593f78..ef5c177a0e 100644 --- a/app/includes/deployContract.tpl +++ b/app/includes/deployContract.tpl @@ -28,10 +28,10 @@
- Sign Transaction + Sign Transaction
-
+

Raw Transaction

@@ -46,7 +46,7 @@
-
+ @@ -66,7 +66,7 @@ diff --git a/app/includes/myWallet.tpl b/app/includes/myWallet.tpl index 1a184215d2..a4f0b25442 100644 --- a/app/includes/myWallet.tpl +++ b/app/includes/myWallet.tpl @@ -74,7 +74,7 @@ {{twallet.balance | number:4 }} ETH
- {{token.getBalance() }} {{token.getSymbol()}}    + {{token.getBalance() }} {{token.getSymbol()}}   
{{twallet.btc }} BTC    $ {{twallet.usd }} USD    {{twallet.eur }} EUR diff --git a/app/scripts/controllers/deployContractCtrl.js b/app/scripts/controllers/deployContractCtrl.js index 7717c0b0f3..015a07e09c 100644 --- a/app/scripts/controllers/deployContractCtrl.js +++ b/app/scripts/controllers/deployContractCtrl.js @@ -10,6 +10,7 @@ var deployContractCtrl = function($scope, $sce, walletService) { nonce: null, gasPrice: null } + $scope.showRaw = false; $scope.$watch(function() { if (walletService.wallet == null) return null; return walletService.wallet.getAddressString(); @@ -17,6 +18,9 @@ var deployContractCtrl = function($scope, $sce, walletService) { if (walletService.wallet == null) return; $scope.wallet = walletService.wallet; }); + $scope.$watch('tx', function(newValue, oldValue) { + $scope.showRaw = false; + }, true); $scope.generateTx = function() { try { if ($scope.wallet == null) throw globalFuncs.errorMsgs[3]; @@ -34,7 +38,9 @@ var deployContractCtrl = function($scope, $sce, walletService) { $scope.rawTx = rawTx.rawTx; $scope.signedTx = rawTx.signedTx; $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + $scope.showRaw = true; } else { + $scope.showRaw = false; $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); } }); diff --git a/app/scripts/controllers/theDaoCtrl.js b/app/scripts/controllers/theDaoCtrl.js index 28771a0665..8aa307cf89 100644 --- a/app/scripts/controllers/theDaoCtrl.js +++ b/app/scripts/controllers/theDaoCtrl.js @@ -10,13 +10,15 @@ var theDaoCtrl = function($scope, $sce, walletService) { $scope.slockitContract = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa $scope.withdrawContract = "0xbf4ed7b27f1d666546e30d74d50d173d20bca754"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa $scope.daoCContract = "0x180826b05452ce96e157f0708c43381fee64a6b8"; - $scope.daoWithdrawContract = "0x5cead42dc4adb64f128a11382bf8e11f567a743d"; + // change this to go live + $scope.daoWithdrawContract = "0x9f5304da62a5408416ea58a17a92611019bd5ce3"; $scope.slockitTransfer = "0xa9059cbb"; $scope.balanceOf = "0x70a08231"; $scope.daoWithdraw = "0x3ccfd60b"; $scope.approveWithdraw = "0x095ea7b3"; $scope.withdrawDAOC = "0xf3fef3a3"; $scope.numETChex = "0x02ef6c86"; + $scope.Validator = Validator; $scope.tx = { gasLimit: 100000, data: '', @@ -129,6 +131,10 @@ var theDaoCtrl = function($scope, $sce, walletService) { $scope.withdrawModal.close(); } $scope.generateAndWithdrawDAOC = function() { + if(!Validator.isPositiveNumber($scope.daoC.donation)){ + $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[0])); + return; + } $scope.tx.to = $scope.daoWithdrawContract; $scope.tx.data = $scope.withdrawDAOC + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.daoC.to), 64) + ethFuncs.padLeft(new BigNumber($scope.daoC.donation).toString(16), 64); $scope.tx.value = 0; @@ -144,12 +150,5 @@ var theDaoCtrl = function($scope, $sce, walletService) { }); $scope.withdrawModalETC.close(); } - $scope.validateAddress = function(addr) { - if (ethFuncs.validateEtherAddress(addr)) { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } }; module.exports = theDaoCtrl; diff --git a/app/scripts/translations/ar.js b/app/scripts/translations/ar.js index c3719d9f2c..aef39ea74e 100644 --- a/app/scripts/translations/ar.js +++ b/app/scripts/translations/ar.js @@ -477,16 +477,16 @@ ar.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/bg.js b/app/scripts/translations/bg.js index b1df3249c6..2443f79c2c 100644 --- a/app/scripts/translations/bg.js +++ b/app/scripts/translations/bg.js @@ -477,16 +477,16 @@ bg.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/de.js b/app/scripts/translations/de.js index b669a65565..b56b0c102a 100644 --- a/app/scripts/translations/de.js +++ b/app/scripts/translations/de.js @@ -477,16 +477,16 @@ de.data = { HELP_12_Desc_15b: 'Wenn du an einem PC bist:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/el.js b/app/scripts/translations/el.js index 7bbf8e7cf3..2a4dff751a 100644 --- a/app/scripts/translations/el.js +++ b/app/scripts/translations/el.js @@ -481,16 +481,16 @@ el.data = { HELP_12_Desc_15: 'If you are on a Mac:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/en.js b/app/scripts/translations/en.js index 17c038e83f..c606182646 100644 --- a/app/scripts/translations/en.js +++ b/app/scripts/translations/en.js @@ -477,16 +477,16 @@ en.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/es.js b/app/scripts/translations/es.js index 096497630e..0da7ba9f8d 100644 --- a/app/scripts/translations/es.js +++ b/app/scripts/translations/es.js @@ -478,16 +478,16 @@ es.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/et.js b/app/scripts/translations/et.js index 0f61d031bf..ede8fc2487 100644 --- a/app/scripts/translations/et.js +++ b/app/scripts/translations/et.js @@ -477,16 +477,16 @@ et.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/fi.js b/app/scripts/translations/fi.js new file mode 100644 index 0000000000..2e862e9f78 --- /dev/null +++ b/app/scripts/translations/fi.js @@ -0,0 +1,507 @@ +// English +'use strict'; +var fi = function() {} +fi.code = 'fi'; +fi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Sinun Lompakkosi', + NAV_AddWallet: 'Lisää Lompakko', + NAV_GenerateWallet: 'Luo Lompakko', + NAV_BulkGenerate: 'Massa Generoi', + NAV_SendEther: 'Lähetä Etheriä', + NAV_SendTokens: 'Lähetä Tokeneita', + NAV_Offline: 'Lähetä Offlinena', + NAV_WithdrawDAO: 'Nosta DAO', + DAO_TitleLong: 'Muuta DAO Tokenisi ETH:iksi', + NAV_ClaimDGD: 'Lunasta DGD', + DGD_TitleLong: 'Lunasta DGD Tokenisi', + NAV_MyWallets: 'Minun Lompakkoni', + NAV_ViewWallet: 'Tarkista Lompakon Tiedot', + NAV_Help: 'Apua', + NAV_Contact: 'Yhteystiedot', + + /* General */ + x_Password: 'Salasana', + x_Download: 'Lataa', + x_Address: 'Sinun osoitteesi', + x_Save: 'x_Tallenna', + x_Cancel: 'x_Peruuta', + x_AddessDesc: 'Saatat tuntea tämän "Tilinumeronasi" tai sinun "Julkisena Salausavaimenasi". Tämä on se jonka jaat ihmisille, jotta he voivat lähettää sinulle ETHiä. Tuo kuvake on helppo tapa tunnistaa sinun osoitteesi.', + x_PrivKey: 'Yksityinen salausavain (salaamaton)', + x_PrivKeyDesc: 'Tämä on salaamaton versio sinun yksityisestä salausavaimestasi, tarkoittaen että salasanaa ei tarvita. Jos joku sattuisi löytämään sinun salaamattoman yksityisen salausavaimesi, he pääsisivät käsiksi sinun lompakkoosi ilman salasanaa. Tästä syystä salatut versiot ovat yleensä suositeltuja.', + x_Keystore: 'Avainsäilö/JSON Tiedosto (Suositeltu · Salattu · Mist/Geth Tiedostoformaatti)', + x_KeystoreDesc: 'Tämä Avainsäilö / JSON tiedosto vastaa sitä tiedostoformaattia jota Mist & Geth käyttävät, joten voit helposti tuoda sen tulevaisuudessa. Se on suositeltu tiedostomuoto ladata ja varmuuskopioida.', + x_Json: 'JSON Tiedosto (salaamaton)', + x_JsonDesc: 'Tämä on salaamaton, JSON tiedosto yksityisestä salausavaimestasi. Tämä tarkoittaa että et tarvitse salasanaa mutta kuka tahansa joka löytää JSON tiedostosi saa pääsyn lompakkoosi ja sen sisältämään Etheriin ilman salasanaa.', + x_PrintShort: 'Tulosta', + x_Print: 'Tulosta Paperi Lompakko', + x_PrintDesc: 'ProTip: Klikkaa Tulosta ja tallenna tämä PDF:nä, vaikka et omistaisikaan tulostinta!', + x_CSV: 'CSV tiedosto (salaamaton)', + x_TXT: 'TXT tiedosto (salaamaton)', + + /* Header */ + MEW_Warning_1: 'Tarkista URL aina ennen kuin avaat lompakkosi tai luot uuden lompakon. Varo tietojen-kalastelu sivustoja!', + CX_Warning_1: 'Varmista että sinulla on **ulkoiset varmuuskopiot** kaikista lompakoista joita säilytät täällä. Monia asioita voi tapahtua joiden seurauksena voit menettää tietoja tässä Chrome Laajennuksessa, mukaan lukien laajennuksen asennuksen poistaminen tai uudelleenasennus. Tämä laajennus on keino jolla saat helpon pääsyn lompakkoosi, **ei** keino varmuuskopioida niitä.', + MEW_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Ether Lompakko', + CX_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Chrome Laajennus', + + /* Footer */ + FOOTER_1: 'Avoimen lähdekoodin, asiakas-puolen javascript työkalu Ethereum lompakkojen luomista & varojen siirtoja varten.', + FOOTER_2: 'Lahjoituksia arvostetaan suuresti:', + FOOTER_3: 'Asiakas-puolen lompakon luomisen tarjoaa', + + /* Sidebar */ + sidebar_AccountInfo: 'Tilin Tiedot: ', + sidebar_AccountAddr: 'Tilin Osoite: ', + sidebar_AccountBal: 'Tilin Saldo: ', + sidebar_TokenBal: 'Tokenien Saldo: ', + sidebar_Equiv: 'Vastaavat Arvot: ', + sidebar_TransHistory: 'Siirto Historia', + sidebar_DGDBal: 'DGD Joukkomyynnin Tiedot:', + sidebar_donate: 'Lahjoita', + sidebar_donation: 'MyEtherWallet on ilmainen, avoimen lähdekoodin palvelu joka on omistautunut sinun yksityisyyteesi ja turvallisuuteesi. Mitä enemmän lahjoituksia me vastaanotamme, sitä enemmän aikaa me käytämme uusien toimintojen luomiseksi, kuunnellen teidän palautettanne ja antaen teille juuri sitä mitä te tahdotte. Me olemme vain kaksi ihmistä jotka koittavat muuttaa maailmaa. Auta meitä?', + sidebar_thanks: 'KIITOS!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kuinka haluaisit saada pääsyn lompakkoosi?', + decrypt_Title: 'Valitse yksityisen salausavaimesi muoto:', + decrypt_Select: 'Valitse Lompakko:', + + /* Add Wallet */ + ADD_Label_1: 'Mitä tahtoisit tehdä?', + ADD_Radio_1: 'Luo Uusi Lompakko', + ADD_Radio_2: 'Valitse Lompakko Tiedostosi (Avainsäilö / JSON)', + ADD_Radio_2_short: 'VALITSE LOMPAKKO TIEDOSTO...', + ADD_Radio_3: 'Liitä/Kirjoita Yksityinen Salausavaimesi', + ADD_Radio_4: 'Lisää Tili Jota Seurata', + ADD_Label_2: 'Luo Lempinimi:', + ADD_Label_3: 'Lompakkosi on salattu, ole hyvä ja syötä salasanasi: ', + ADD_Label_4: 'Lisää Tili Jota Seurata', + ADD_Warning_1: 'Voit lisätä minkä tahansa tilin jota "seurata" lompakkojen välilehdessä ilman yksityisen salausavaimesi lähettämistä. Tämä ** ei ** tarkoita että sinulla olisi pääsy tähän lompakkoon, tai että voit siirtää Etheriä siitä.', + ADD_Label_5: 'Syötä Osoite: ', + ADD_Label_6: 'Avaa Sinun Lompakkosi', + ADD_Label_6_short: 'Avaa', + ADD_Label_7: 'Lisää Tili', + + /* Generate Wallets */ + GEN_desc: 'Jos tahdot luoda useita lompakoita, voit tehdä sen täältä: ', + GEN_Label_1: 'Syötä vahva salasana (vähintään 9 merkkiä)', + GEN_Placeholder_1: 'ÄLÄ unohda tallentaa tätä!', + GEN_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + GEN_Warning: '**Tarvitset Avainsäilö/JSON Tiedostosi & salasanan tai Yksityisen salausavaimesi** saadaksesi pääsyn tähän lompakkoon tulevaisuudessa. Ole hyvä ja tallenna ja varmuuskopioi se ulkoisesti! Ei ole mitään keinoa palauttaa sitä jos et tallenna sitä. Voit lukea ohjeet [Apua sivulta](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Tallenna Avainsäilö/JSON tai Yksityinen salausavaimesi. Älä unohda yllä olevaa salasanaasi.', + GEN_Label_3: 'Tallenna Osoitteesi.', + GEN_Label_4: 'Tulosta paperi lompakkosi, tai säilö QR koodi versio. (valinnainen)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Kuinka Monta Lompakkoa Luodaan', + BULK_Label_2: 'Luo Lompakot', + BULK_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Osoitteeseen: ', + SEND_amount: 'Summa Joka Lähetetään: ', + SEND_amount_short: 'Summa', + SEND_custom: 'Mukautettu', + SEND_gas: 'Gas', + SEND_generate: 'Luo Allekirjoitettu Siirto', + SEND_raw: 'Käsittelemätön Siirto', + SEND_signed: 'Allekirjoitettu Siirto', + SEND_trans: 'Lähetä Siirto', + SEND_TransferTotal: 'Lähetettävissä oleva saldo', + SENDModal_Title: 'Varoitus! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Olet lähettämässä', + SENDModal_Content_2: 'osoitteeseen', + SENDModal_Content_3: 'Oletko varma että haluat tehdä tämän?', + SENDModal_Content_4: 'HUOMAUTUS: Jos kohtaat virheen, sinun täytyy todennäköisesti lisätä ETHiä tilillesi kattaaksesi siirron vaatiman gasin hinnan. Gas maksetaan ETHeinä.', + SENDModal_No: 'En, vie minut pois täältä!', + SENDModal_Yes: 'Kyllä, olen varma! Toteuta siirto.', + + /* Tokens */ + TOKEN_Addr: 'Osoite: ', + TOKEN_Symbol: 'Token Tunnus: ', + TOKEN_Dec: 'Desimaalit: ', + + /* Send Transaction */ + TRANS_desc: 'Jos haluat lähettää Tokeneita, ole hyvä ja käytä "Lähetä Tokeneita" sivua.', + TRANS_warning: 'Jos käytät "Vain ETH" tai "Vain ETC" Toimintoja, niin lähetät sopimuksen kautta. Joillakin palveluilla on vaikeuksia hyväksyä näitä siirtoja. Lue lisää.', + TRANS_standard: 'ETH (Tavallinen Siirto)', + TRANS_eth: 'Vain ETH', + TRANS_etc: 'Vain ETC', + TRANS_advanced: '+Edistynyt: Lisää Enemmän Gasia tai Tietoa ', + TRANS_data: ' Tiedot: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Tavallinen siirto käyttäen 21000 gasia maksaa 0.000441 ETHiä. Me käytämme hieman-yli-minimin gasin hintaa 0.000000021 ETHiä varmistaaksemme että se louhitaan nopeasti. Me emme veloita siirto maksua.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Vain ETH" ja "Vain ETC" Siirrot', + TRANSModal_Content_0: 'Huomautus erilaisista siirroista ja eri palveluista:', + TRANSModal_Content_1: '**ETH (Tavallinen Siirto): ** Tämä luo oletusarvoisen siirron osoitteesta toiseen. Siinä on oletus gasina 21000. On todennäköistä että kaikki ETH joka lähetetään tällä tavalla, toistetaan ETC ketjussa.', + TRANSModal_Content_2: '**Vain ETH: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETH** ketjussa.', + TRANSModal_Content_3: '**Only ETC: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETC** ketjussa. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Lähetä ainoastaan käyttäen Tavallista Siirtoa. Jos lähetät käyttäen "Vain" sopimuksia, sinun täytyy olla yhteydessä heidän asiakastukensa henkilöstöön jotta he joko manuaalisesti lisäävät sinun saldosi tai palauttavat rahasi. [Voit kokeilla myös ShapeShiftin "split" työkalua.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ei tunnettuja ongelmia. Käytä mitä vain.', + TRANSModal_Yes: 'Siistiä, nyt ymmärrän.', + TRANSModal_No: 'Voi ei, olen entistä enemmän hämilläni. Auttakaa minua.', + + /* Offline Transaction */ + OFFLINE_Title: 'Luo ja Lähetä Offline Siirto', + OFFLINE_Desc: 'Offline siirtojen luonti voidaan tehdä kolmella eri vaiheella. Teet vaiheet 1 ja 3 käyttäen verkossa olevaa tietokonetta, ja vaiheen 2 käyttäen offline/airgappattua tietokonetta. Tämä varmistaa ettei sinun yksityinen salausavaimesi ole kosketuksissa internettiin yhdistetyn laitteen kanssa.', + OFFLLINE_Step1_Title: 'Vaihe 1: Luo Tiedot (Online Tietokone)', + OFFLINE_Step1_Button: 'Luo Tiedot', + OFFLINE_Step1_Label_1: 'Osoitteesta: ', + OFFLINE_Step1_Label_2: 'Huomautus: Tämä on MISTÄ osoitteesta, ei MIHIN osoitteeseen. Nonce luodaan osoitteesta josta siirto on peräisin. Jos käytetään airgappattua tietokonetta, se olisi kylmä-varasto tilin osoite.', + OFFLLINE_Step2_Title: 'Vaihe 2: Luo Siirto (Offline Tietokone)', + OFFLINE_Step2_Label_1: 'Osoitteeseen: ', + OFFLINE_Step2_Label_2: 'Arvo / Määrä Joka Lähetetään', + OFFLINE_Step2_Label_3: 'Gasin hinta ', + OFFLINE_Step2_Label_3b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_4: 'Gas Raja ', + OFFLINE_Step2_Label_4b: '21000 on oletusarvoinen gas raja. Kun lähetät sopimuksiin tai lisäät tietoa, saattaa tämä määrä joutua olemaan eri. Kaikki käyttämätön gas palautetaan sinulle.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_6: 'Tiedot', + OFFLINE_Step2_Label_6b: 'Tämä on vapaaehtoinen. Tietoja käytetään usein kun varoja lähetetään sopimuksiin.', + OFFLINE_Step2_Label_7: 'Syötä / Valitse Yksityinen salausavaimesi / JSON.', + OFFLINE_Step3_Title: 'Vaihe 3: Lähetä / Julkaise Siirto (Verkkoon yhdistetty tietokone)', + OFFLINE_Step3_Label_1: 'Liitä allekirjoitettu siirto Vaiheesta 2 tähän ja paina "LÄHETÄ SIIRTO" nappia.', + + /* DAO */ + DAO_Desc: 'Käytä tätä välilehteä muuttaaksesi DAO Tokenisi ETHiksi. Mikäli haluat lähettää DAO:ta, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DAO_Inst: 'Kyllä. Paina vain isoa punaista nappia. Se on niin helppoa.', + DAO_Warning: 'Jos sinulla tulee "Riittämätön saldo gasille" virhe, sinulla täytyy olla pieni määrä ETHiä tililläsi kattaaksesi gasin hinnan. Lisää .01 ETHiä tälle tilille ja koita uudestaan. ', + DAOModal_Title: 'Varmistetaan vain...', + + /* Digix */ + DGD_Desc: 'Lunasta DigixDAO (DGD) tokenisi & merkkisi. Lunastaaksesi, sinun on täytynyt osallistua tokenien myyntiin Maaliskuun 30/31 päivänä, 2016. Jos haluat lähettää DGDtä, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DGD_Label_1: 'Arvioitu kulutus maksu:', + DGD_Label_2: 'Annettu Maksimi Maksu:', + DGD_Label_3: 'Gas Hinta:', + DGD_Generate: 'Luo Lunastus', + DGD_Content: 'Olet lunastamassa sinun DGD Tokenisi.', + + /* My Wallet */ + MYWAL_Nick: 'Lompakon Lempinimi', + MYWAL_Address: 'Lompakon Osoite', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Muokkaa', + MYWAL_View: 'Katso', + MYWAL_Remove: 'Poista', + MYWAL_RemoveWal: 'Poista Lompakko:', + MYWAL_WatchOnly: 'Sinun Seuraa-Ainoastaan Tilisi', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Piilota Lompakon Tiedot', + MYWAL_Edit: 'Muokkaa Lompakkoa: ', + MYWAL_Name: 'Lompakon Nimi', + MYWAL_Content_1: 'Varoitus! Olet poistamassa lompakkoasi.', + MYWAL_Content_2: 'Varmista että olet **tallentanut tähän lompakkoon liittyvät yksityisen salausavaimesi/JSON tiedostosi ja salasanasi** ennen kuin poistat sen.', + MYWAL_Content_3: 'Jos tahdot käyttää tätä lompakkoa sinun MyEtherWallet CX:si kanssa tulevaisuudessa, sinun täytyy manuaalisesti uudelleen-lisätä se käyttäen yksityistä salausavaintasi/JSONia ja salasanaa.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. Saatat tahtoa tehdä tämän [tuodaksesi sinun tilisi Gethiin/Mistiin](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jos haluat tarkistaa saldosi, me suosittelemme käyttämään lohkoketju exploreria kuten [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. ', + VIEWWALLET_SuccessMsg: 'Onnistui! Tässä ovat lompakkosi yksityiskohdat.', + + /* Error Messages */ + ERROR_1: 'Ole hyvä ja syötä kelpaava summa.', + ERROR_2: 'Salasanasi pitää olla vähintään 9 merkkiä pitkä. Ole hyvä ja varmista että käytät vahvaa salasanaa. ', + ERROR_3: 'Pahoittelut! Emme tunnista tämänlaista lompakko tiedostoa. ', + ERROR_4: 'Tämä ei ole validi lompakko tiedosto. ', + ERROR_5: 'Tätä yksikköä ei ole olemassa, ole hyvä ja käytä jotain seuraavista yksiköistä ', + ERROR_6: 'Virheellinen osoite. ', + ERROR_7: 'Virheellinen salasana. ', + ERROR_8: 'Virheellinen summa. ', + ERROR_9: 'Virheellinen gas raja. ', + ERROR_10: 'Virheellinen tieto arvo. ', + ERROR_11: 'Virheellinen gasin määrä. ', + ERROR_12: 'Virheellinen nonce. ', + ERROR_13: 'Virheellinen allekirjoitettu siirto. ', + ERROR_14: 'Lompakko tällä lempinimellä on jo olemassa. ', + ERROR_15: 'Lompakkoa ei löytynyt. ', + ERROR_16: 'Ei näytä että ehdotusta tällä ID:llä olisi vielä olemassa tai tapahtui virhe ehdotusta luettaessa. ', + ERROR_17: 'Lompakko jolla on tämä osoite on jo muistissa. Ole hyvä ja tarkista sinun lompakkosi sivu. ', + ERROR_18: 'Sinulla täytyy olla vähintään .001 ETHiä tililläsi kattaaksesi gasin hinnan. Ole hyvä ja lisää hieman ETHiä ja kokeile uudelleen. ', + ERROR_19: 'Kaikki gas käytettäisiin tässä siirrossa. Tämä tarkoittaa että olet jo äänestänyt tässä ehdotuksessa tai väittely aika on jo päättynyt.', + ERROR_20: 'Virheellinen merkki', + SUCCESS_1: 'Validi osoite', + SUCCESS_2: 'Lompakon salaus onnistuneesti purettu', + SUCCESS_3: 'Siirto lähetetty. TX ID: ', + SUCCESS_4: 'Lompakkosi lisätty onnistuneesti: ', + SUCCESS_5: 'Olet äänestänyt onnistuneesti. Kiitos että olet ollut aktiivinen osanottaja The DAOssa.', + + /* Tranlsation Info */ + translate_version: '0.1', + Translator_Desc: 'Kiitos kääntäjillemme...', + TranlsatorName_1: 'Smokyish', + TranlsatorAddr_1: '0xac9a2c1dd946da64c0dc8e70cec2cfb14304fd4f', + /* Translator 1: Insert Comments Here */ + TranlsatorName_2: ' ', + TranlsatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranlsatorName_3: ' ', + TranlsatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranlsatorName_4: ' ', + TranlsatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranlsatorName_5: ' ', + TranlsatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com', + HELP_6_Desc_9: 'Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.', + HELP_6_Desc_11: ' Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: ' Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', + HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = fi; diff --git a/app/scripts/translations/fr.js b/app/scripts/translations/fr.js index 7e057773cf..7011893bff 100644 --- a/app/scripts/translations/fr.js +++ b/app/scripts/translations/fr.js @@ -260,15 +260,15 @@ fr.data = { SUCCESS_6: 'Fichier sélectionné : ', /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', + GETH_InvalidSender: 'Expéditeur invalide', + GETH_Nonce: 'Nonce trop bas', + GETH_Cheap: 'Prix du gaz trop bas pour être accepté', + GETH_Balance: 'Solde insuffisant', + GETH_NonExistentAccount: 'Compte inexistant ou solde du compte trop bas', + GETH_InsufficientFunds: 'Fonds insuffisants pour gaz * prix + valeur', + GETH_IntrinsicGas: 'Gaz intrinsèque trop bas', + GETH_GasLimit: 'Limite en gaz dépassée', + GETH_NegativeValue: 'Valeur négative', /* Tranlsation Info */ translate_version: '0.3', @@ -390,159 +390,160 @@ fr.data = { HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Si vous êtes sur un PC :', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' + HELP_6_Title: '6) Comment puis-je séparer mes ETH / ETC ? ', + HELP_6_Desc_1: 'Quand le hard fork s\'est produit, à tout ETH que vous possédiez dans votre portefeuille correspond maintenant un montant égal en ETC. Si vous envoyez des ETH par une transaction standard, cela enverra également des ETC et, pour l\'empêcher, il vous faut maintenant "séparer" votre portefeuille d\'origine en deux en vous assurant que seul du ETH va dans le portefeuille ETH et seul du ETC va dans le portefeuille ETC.', + HELP_6_Desc_2: 'Vous pouvez également envoyer tout votre ETH et ETC par une transaction standard vers Kraken ou Poloniex. Ces *exchanges* vont automatiquement séparer vos ETH et ETC. Vous pouvez alors déplacer ces fonds vers de nouveaux portefeuilles ou vendre vos ETH ou vos ETC.', + HELP_6_Desc_3: '[Vous trouverez plus d\'informations sur les portefeuilles et les attaques par réexécution ici](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Générer un nouveau portefeuille ETH post-fork vierge pour vous-même (destination finale du pur ETH).', + HELP_6_Desc_5: 'Générer un nouveau portefeuille ETC post-fork vierge pour vous-même (destination finale du pur ETC).', + HELP_6_Desc_6: 'Sauvegardez ces nouveaux portefeuilles et vérifiez que vous pouvez y accéder. Voir #2a et #3 ci-dessus.', + HELP_6_Desc_7: 'Envoyez 0.1234 ETH à votre nouveau portefeuille ETH en utilisant l\'option "ETH seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_8: 'Envoyez 0.5678 ETC à votre nouveau portefeuille ETC en utilisant l\'option "ETC seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_9: 'Vérifiez que seuls les 0.1234 ETH ont bougé sur etherscan.io. Vérifiez que seuls les 0.5678 ETC ont bougé sur gastracker.io.', + HELP_6_Desc_10: 'Envoyez une transaction de 0.0001 ETH depuis votre nouveau portefeuille ETH. Vérifiez sur etherscan.io. Assurez-vous que les 0.0001 ETH ont bougé.', + HELP_6_Desc_11: 'Générez (mais n\'envoyez pas) une transaction de 0.0002 ETC depuis votre nouveau portefeuille ETC. Copiez le champ "Transaction signée". ', + HELP_6_Desc_12: 'Allez sur [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) et copiez cette transaction ETC dans l\'onglet hors ligne de classicetherwallet.com tout en bas et envoyez-la. Vérifiez sur gastracker.io. Assurez-vous que les 0.0002 ETC ont bougé.', + HELP_6_Desc_13: 'Si tout est correctement reçu et envoyé, vous avez gagné.', + HELP_6_Desc_14: 'Envoyez le reste du solde ETH par l\'option "ETH seulement" et répétez l\'opération pour le solde ETC par l\'option "ETC seulement".', + HELP_6_Desc_15: 'Par la suite, vous pourrez utiliser les transactions standard pour ces portefeuilles sans risque d\'attaque par réexécution.', + + + HELP_7_Title: '7) Comment puis-je envoyer des tokens et ajouter des tokens spécifiques ?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) est un excellent moyen d\'explorer les tokens et de trouver les décimales d\'un token.', + HELP_7_Desc_1: 'Naviguez vers la page "Envoi de tokens".', + HELP_7_Desc_2: 'Déverrouillez votre portefeuille.', + HELP_7_Desc_3: 'Entre l\'adresse à laquelle vous désirez faire l\'envoi dans le champ "Adresse de destination".', + HELP_7_Desc_4: 'Entrez le montant que vous désirez envoyer.', + HELP_7_Desc_5: 'Sélectionnez le token que vous désirez envoyer.', + HELP_7_Desc_6: 'Si celui-ci n\'est pas listé :', + HELP_7_Desc_7: 'Cliquez sur "Spécifique".', + HELP_7_Desc_8: 'Entrez l\'adresse, le nom et les décimales du token. Ces informations sont fournies par les développeurs du token et sont également nécessaires quand vous faites "Add a Watch Token" dans Mist.', + HELP_7_Desc_9: 'Cliquez sur "Sauver".', + HELP_7_Desc_10: 'Vous pouvez maintenant envoyer ces tokens ainsi qu\'en voir le solde dans la zone sur le côté.', + HELP_7_Desc_11: 'Cliquez sur "Générer la transaction".', + HELP_7_Desc_12: 'Quelques champs supplémentaires vont apparaître : votre navigateur est en train de générer la transaction.', + HELP_7_Desc_13: 'Cliquez sur le bouton bleu "Envoyer la transation" au dessous.', + HELP_7_Desc_14: 'Une fenêtre pop-up va apparaître. Vérifiez que le montant et que l\'adresse de destination sont corrects puis cliquez sur le bouton "Oui, j\'en suis sûr ! Effectuer la transaction."', + HELP_7_Desc_15: 'La transaction est alors soumise et l\'identifiant de transaction est affiché. Vous pouvez cliquer dessus pour le voir sur la blockchain.', + + HELP_8_Title: '8) Que se passe-t-il si votre site tombe ?', + HELP_8_Desc_1: 'MyEtherWallet n\'est pas un portefeuille sur le web. Vous n\'avez pas de login et rien n\'est jamais stocké sur nos serveurs. Ce n\'est qu\'une interface qui vous permet d\'interagir avec la blockchain.', + HELP_8_Desc_2: 'Si MyEtherWallet.com tombe, vous devrez trouver un autre moyen (comme geth ou Ethereum Wallet / Mist) pour faire la même chose. Mais vous n\'aurez pas à "récupérer" votre Ether depuis MyEtherWallet parce qu\'il ne se trouve pas dans MyEtherWallet. Il est chez vous, dans le portefeuille que vous avez généré par notre site.', + HELP_8_Desc_3: 'Vous pouvez maintenant importer facilement votre clef privée non chiffrée et vos fichiers (chiffrés) au format Geth/Mist, directement dans geth / Ethereum Wallet / Mist. Voir question #12 ci-dessous.', + HELP_8_Desc_4: 'De plus, la probabilité que nous laissions tomber MyEtherWallet approche zéro. Il ne nous coûte presque rien de le maintenir comme nous n\'y stockons aucune information. Si le domaine venait à être perdu, le logiciel sera toujours disponible publiquement sur [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vous pourrez y télécharger le ZIP et le faire tourner localement. ', + + HELP_8CX_Title: '8) Que se passe-t-il si MyEtherWallet CX disparaît ?', + HELP_8CX_Desc_1: 'D\'abord, toutes les données sont sauvegardées sur votre ordinateur et non sur nos serveurs. Cela peut paraître étonnant mais, quand vous regardez sur l\'extension Chrome, ce que vous voyez *ne se trouve pas* sur nos serveurs ; tout est stocké sur votre propre ordinateur.', + HELP_8CX_Desc_2: 'Cela dit, il est **très important** que vous sauvegardiez toutes les données de tous les portefeuilles générés par MyEtherWallet CX. De cette manière, si quoi que ce soit arrivait à MyEtherWallet CX ou à votre ordinateur, vous conserveriez toutes les informations nécessaires pour accéder à votre Ether. Voir #2a pour la sauvegarde de vos portefeuilles.', + HELP_8CX_Desc_3: 'Si, pour une raison quelconque, MyEtherWallet CX disparaissait du Chrome Store, vous pourrez en trouver le source sur Github et le charger manuellement. Voir #5 ci-dessus.', + + HELP_9_Title: '9) La page "Envoi d\'Ether" est-elle hors ligne ?', + HELP_9_Desc_1: 'Non, la page d\'envoi de transaction n\'est pas hors ligne. Elle a besoin de l\'internet pour obtenir le prix actuel du gaz, le nonce de votre compte et pour émettre la transaction (c\'est-à-dire "envoyer"). Cependant, elle n\'envoie que la transaction signée. Votre clef privée reste en sécurité chez vous. Nous fournissons maintenant aussi une page "Transaction hors ligne" pour vous permettre de conserver en permanence vos clefs privées sur une machine hors ligne.', + + HELP_10_Title: '10) Comment puis-je faire une transaction hors ligne ?', + HELP_10_Desc_1: 'Allez à la page "Transaction hors ligne" avec votre ordinateur en ligne.', + HELP_10_Desc_2: 'Entrez l\'"Adresse d\'émission". Attention, c\'est l\'adresse *d\'où* vous envoyez et non celle *vers* laquelle vous envoyez. Ceci va générer ke nonce et le prix du gaz.', + HELP_10_Desc_3: 'Allez sur votre ordinateur hors ligne. Entrez l\'"Adresse de destination" et le "Montant" que vous désirez envoyer.', + HELP_10_Desc_4: 'Entrez le "Prix du gaz" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_5: 'Entrez le "Nonce" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_6: 'La "Limite en gaz" a une valeur de 21000 par défaut. Ceci couvre les frais d\'une transaction standard. Si vous envoyez à un contrat ou si vous embarquez des données supplémentaires avec votre transaction vous devrez augmenter la limite de gaz. Tout gaz non consommé vous sera retourné.', + HELP_10_Desc_7: 'Si vous le désirez, entrez des données. Dans ce cas, vous devrez inclure plus que la limite de 21000 par défaut? Toutes les données sont au format hexadécimal.', + HELP_10_Desc_8: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_10_Desc_9: 'Cliquez sur le bouton "Générer la transaction signée".', + HELP_10_Desc_10: 'Le champ de données sous ce bouton se remplit avec votre transaction signée. Copiez-la et revenez avec elle sur votre ordinateur en ligne. ', + HELP_10_Desc_11: 'Sur votre ordinateur en ligne, collez la transaction signée dans le champ texte et cliquez sur "Envoyez l\'Ether". Ceci émettra votre transaction.', + + HELP_11_Title: '11) Comment puis-je envoyer à un contrat ?', + HELP_11_Desc_1: 'L\'envoi à un contrat vous impose souvent d\'inclure des données ou du gaz supplémentaire, ou les deux.', + HELP_11_Desc_2: 'Allez à la page "Envoi d\'Ether". ', + HELP_11_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille. ', + HELP_11_Desc_4: 'Entrez une "Adresse de destination" et un "Montant à envoyer".', + HELP_11_Desc_5: 'Cliquez sur le bouton "+Avancé : Ajouter du gaz ou des données supplémentaires" sous le champ du montant. Ceci affiche deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au dessus de la valeur par défaut de 21000 ainsi que d\'ajouter des données à votre transaction.', + + HELP_12_Title: '12) Comment puis-je importer un portefeuille créé par MyEtherWallet dans geth / Ethereum Wallet / Mist ?', + HELP_12_Desc_1: 'Avec un fichier Geth/Mist JSON de MyEtherWallet v2+....', + HELP_12_Desc_2: 'Allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_3: 'Déverrouillez votre portefeuille avec votre clef privée **chiffrée** ou votre fichier JSON. ', + HELP_12_Desc_4: 'Allez à la page "Mes portefeuilles".', + HELP_12_Desc_5: 'Sélectionnez le portefeuille que vous désirez importer dans Mist, cliquez sur l\'icône "View", entrez votre mot de passe et accédez à votre portefeuille. ', + HELP_12_Desc_6: 'Allez à la section "Téléchargez le fichier JSON file - Format Geth/Mist (chiffé)". Cliquez sur le bouton "Télécharger" en dessous. Vous avez maintenant votre fichier *keystore.* ', + HELP_12_Desc_7: 'Ouvrez l\'application Ethereum Wallet. ', + HELP_12_Desc_8: 'Dans la barre de menu, allez sur "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Ceci ouvre votre dossier de keystores. Copiez-y le fichier que vous venez de télécharger (`UTC--2016-04-14......../`) dans ce dossier.', + HELP_12_Desc_10: 'Votre compte doit apparaître immédiatement sous "Accounts."', + HELP_12_Desc_11: 'Avec votre clef privée non chiffrée...', + HELP_12_Desc_12: 'Si vous n\'avez pas déjà votre clef privée non chiffrée, allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_13: 'Sélectionnez le fichier de votre portefeuille -ou- entrez/collez votre clef privée pour déverrouiller votre portefeuille.', + HELP_12_Desc_14: 'Copiez votre clef privée (non chiffrée).', + HELP_12_Desc_15: 'Si vous êtes sur un Mac :', + HELP_12_Desc_15b: 'Si vous êtes sur un PC :', // Strange, already in French, not found in de.js + HELP_12_Desc_16: 'Ouvez Text Edit et collez cette clef privée.', + HELP_12_Desc_17: 'Dans la barre de menu, cliquez sur "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Sauvegardez ce fichier vers votre `Desktop/` en tant que `nothing_special_delete_me.txt`. Assurez-vous qu\'il précise "UTF-8" et "If no extension is provided use .txt" dans le dialogue de sauvegarde.', + HELP_12_Desc_19: 'Ouvrez un terminal et lancez la commande suivante : `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserez dans geth / Ethereum Wallet / Mist à chaque vois que vos enverrez une transaction, donc ne l\'oubliez pas. ', + HELP_12_Desc_21: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + HELP_12_Desc_23: 'Ouvrez Notepad et collez-y la clef privée', + HELP_12_Desc_24: 'Sauvegardez le fichier en tant que `nothing_special_delete_me.txt` sur `C:`', + HELP_12_Desc_25: 'Lancez la commande `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserz dans geth / Ethereum Wallet / Mist à chaque foiq que vous enverrez une transaction donc ne l\'oubliez pas.', + HELP_12_Desc_27: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + + HELP_13_Title: '13) Que signigie "Limite de gaz trop basse" ?', + HELP_13_Desc_1: 'Il est très probable que vous essayiez d\'envoyer de l\'Ether à un contrat, ce qui implique un peu plus de données et donc un peu plus de gaz. Sur la page "Envoi d\'Ether", cliquez sur le bouton "+Advancé : Ajouter du gaz ou des données supplémentaire" sous le champ du montant. Ceci fera afficher deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au-dessus de sa valeur par défaut de 21000, ou pour ajouter des données à votre transaction.', + + HELP_14_Title: '14) Certains sites randomisent (initialisent) la génération de clef privée par les mouvements de la sours. Ce n\'est pas le cas de MyEtherWallet.com. La génération de nombres aléatoires de MyEtherWallet est-elle sûre ?', + HELP_14_Desc_1: 'Bien que l\'interception des mouvement de la souris soit jugée attractive par beaucoup, et que nous en comprenions les raisons, la réalité est que window.crypto assure plus d\'entropie que les mouvements de votre souris. L\'utilisation de ces mouvements est sûre mais nous (ainsi que de nombreux projets crypto) avons de bonnes raisons de croire en window.crypto. De plus, MyEtherWallet.com peut être utilisé sur des périphériques tactiles. Voici une [conversation entre un redditor rageur et Vitalik Buterin sur les mouvements de souris et window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) et voici [les spécifications w3 de window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Pourquoi le compte que je viens de créer n\'apparaît-il pas dans l\'explorateur de blockchain ? (i.e. : etherchain, etherscan)', + HELP_15_Desc_1: 'Les comptes n\'apparaissent dans un explorateur de blockchain qu\'après une activité y ait eu lieu comme, par exemple, quand on y a transféré de l\'Ether.', + + HELP_16_Title: '16) Comment puis-je vérifier le solde de mon compte ? ', + HELP_16_Desc_1: 'Vous pouvez utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/). Collez votre adresse dans la barre de recherche et cela récupérera votre solde et l\'historique de vos transactions. Par exemple, voici ce que montre notre [compte de donations](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) sur etherscan.io', + + HELP_17_Title: '17) Pourquoi mon solde n\'apparaît-il pas quand je déverrouille mon portefeuille ? ', + HELP_17_Desc_1: ' C\'est probablement dû au fait que vous vous trouvez derrière un firewall. L\'API que nous utilisons pour obtenir le solde et converir celui-ci est souvent bloquée par des firewalls pour des raisons diverses. Vous êtes toujours capable d\'envoyer des transactions mais il vous faut employer une autre méthode pour voir le solde, comme etherscan.io', + + HELP_18_Title: '18) Où est le fichier de mon portefeuille geth ?', + + HELP_19_Title: '19) Où est le fichier de mon portefeuille Mist ? ', + HELP_19_Desc_1: 'Les fichiers Mist se trouvent généralement aux endroits ci-dessus mais il est beaucoup plus facile d\'ouvrir Mist, de sélectionner "Accounts" dans la barre du haut, puis "Backup" et "Accounts". Cela ouvre le dossier où vos fichiers sont stockés.', + + HELP_20_Title: '20) Où est le fichier de mon portefeuille de *pre-sale* (pré-vente) ?', + HELP_20_Desc_1: 'Là où vous l\'avez mis. ;) Il vous a aussi été envoyé donc allez vérifier vos mails. Cherchez le fichier appelé `"ethereum_wallet_backup.json"` et choisissez ce fichier. Il est chiffré avec un mot de passe que vous avez créé pendant l\'achat au moment de la pré-vente.', + + HELP_21_Title: '21) N\'importe qui ne peut-il pas prendre une clef privée au hasard, chercher un solde et l\'envoyer à sa propre adresse ? ', + HELP_21_Desc_1: 'Version courte : oui, mais trouver un compte avec un solde prendrait plus longtemps que la durée de l\'univers... donc... non.', + HELP_21_Desc_2: 'Version longue : Ethereum est basé sur la [cryptographie à clef publique](https://en.wikipedia.org/wiki/Public-key_cryptography), plus précisément la [cryptographie des courbes elliptiques (ECC)](https://eprint.iacr.org/2013/734.pdf) qui est très couramment employée, pas uniquement dans Ethereum. La plupart des serveurs sont protégés par les ECC. Bitcoin les emploie ainsi que SSH, TLS et bien d\'autres protocoles. Dans le cas spécifique d\'Ethereum, les clefs font 256 bits et sont plus fortes que celles en 128 et 192 bits, encore très employées et toujours considérées comme sûres par les experts.', + HELP_21_Desc_3: 'Vous avez une clef privée et une clef publique. La clef privée peut servir à dériver la clef publique mais l\'inverse est impossible. Le fait que l\'internet et le monde entier utilise ce système cryptographique signifie que, s\'il existait un moyen de dériver la clef privée de la clef publique, le risque que courrait votre Ether serait le moindre des problèmes de tout le monde.', + HELP_21_Desc_4: 'Cela dit, OUI : si quelqu\'un possède votre clef privée, il peut envoyer de l\'Ether depuis votre compte, de même que si une personne a le mot de passe de votre email, elle peut lire des mails ou en envoyer, ou si c\'est le mot de passe de votre compte en banque, elle peut faire des virements. Vous pouvez télécharger la versoin KEystore de votre clef privée qui est la clef privée chiffrée avec un mot de passe. Cela ressemble à avoir un mot de passe protégé par un autre mot de passe.', + HELP_21_Desc_5: 'Et OUI, en théorie, on peut taper une chaîne de 64 caractères hexadécimaux jusqu\'à en trouver un qui correspond. Il est d\'ailleurs possible d\'écrire un programme qui vérifie très rapidement des clefs privée aléatoires. C\'est ce que l\'on appelle utiliser la "brute force" ou miner des clefs privées. Beaucoup de monde y a pensé très fort et très longtemps. Quelques serveurs haut de gamme peuvent vérifier plus de 1 million de clefs par seconde. Pourtant, même ce chiffre ne donnerait pas accès à un compte suffisamment approvisionné pour en valoir la chandelle ; il est bien plus probable que vous, vos enfant et vos petits-enfants mourront avant d\'obtenir une correspondance.', + HELP_21_Desc_6: 'Si vous connaissez un peu Bitcoin, [ceci remettra les choses en perspective :](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Pour illustrer l\'improbabilité de tout ceci : supposons quqe chaque satoshi de chaque bitcoin qui sera jamais produit soit affecté à sa propre clef privée distincte. La probabilité que, parmi ces clefs, s\'en trouvent deux qui correspondent à la même adresse serait d\'environ 1 sur 100 quintillons. ', + HELP_21_Desc_7: '[Si vous voulez un argumentaire un peu plus technique :](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Ces nombres n\'ont rien à voir avec la technologie des systèmes ; ce sont les maximums autorisés par la thermodynamique. Et ils impliquent clairement qu\'une attaque par brute force contre des clefs de 256 bits restera impossible jusqu\'à ce que l\'on construise des ordinateurs avec autre chose que de la matière et qu\'ils occupent autre chose que l\'espace.', + HELP_21_Desc_8: 'Cela suppose bien entendu que les clefs sont générées d\'une manière totalement aléatoire avec suffisamment d\'entropie. C\'est le cas des clefs générées ici, tout comme celles de Jaxx et de Mist/geth. Les portefeuilles Ethereum sont tous assez bons de ce point de vue. Les clefs générées par des cerveaux humains ne le sont pas, car ces derniers ne sont pas capables de partir d\'un nombre parfaitement aléatoire. Il y a eu des cas d\'autres problèmes d\'entropie insuffisante ou de nombres imparfaitement aléatoires dans le monde de Bitcoin mais il s\'agit là d\'un tout autre problème qui peut attendre un peu.', + + HELP_SecCX_Title: 'Securité - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Où cette extension sauve-t-elle mes informations ?', + HELP_SecCX_Desc_2: 'Les informations stockées dans cette extension sont sauvegardée via [chrome.storage](http://chrome.storage/), c\'est à dire au même endroit que vos mots de passe dans Chrome.', + HELP_SecCX_Desc_3: 'Quelles informations sont sauvegardées ? ', + HELP_SecCX_Desc_4: 'L\'adresse, le surnom, la clef privée sont stockés dans chrome.storage. La clef privée est chiffrée par le mot de passe défini à l\'ajout du portefeuille. Le surnom et l\'adresse du portefeuille ne sont pas chiffrés.', + HELP_SecCX_Desc_5: 'Pourquoi le surnom et l\'adresse du portefeuille ne sont-ils pas chiffrés ? ', + HELP_SecCX_Desc_6: 'Si nous devions chiffrer ces informations, il vous faudrait entrer un mot de passe à chaque fois que vous voudriez voir votre solde ou les surnoms. Si cela vous ennuie, nous vous recommandons d\'utiliser MyEtherWallet.com au lieu de cette extension Chrome.', + + HELP_Sec_Title: 'Sécurité', + HELP_Sec_Desc_1: 'Si l\'une des premières questions que vous vous posez est "Pourquoi devrais-je faire confiance à ces gens ?", c\'est une bonne démarche. Nous espérons que ce qui suit va dissiper vos craintes. ', + HELP_Sec_Desc_2: 'Nous avons commencé en août 2015. Si vous recherchez ["myetherwallet" sur reddit](https://www.reddit.com/search?q=myetherwallet), vous pouvez voir qu\'un nombre considérable de personnes nous utilisent sans problème.', + HELP_Sec_Desc_3: 'Nous n\'allons pas prendre votre argent ou voler vos clefs privées. Il n\'y a pas de code malveillant sur ce site. En fait, les pages "Génération d\'un portefeuille" sont totalement côté client. Cela signifie que tout le code s\'éxécute sur **votre ordinateur** et n\'est jamais sauvé et/ou transmis où que ce soit.', + HELP_Sec_Desc_4: 'Vérifiez l\'URL -- Ce site est servi par Github et vous pouvez en voir le code source ici : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) aux domaines : [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) et [https://www.myetherwallet.com](https://www.myetherwallet.com). Vous pouvez vérifier qu\'il est hébergé chez Github en utilisant [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") ; les deux derniers enregistrements A appartiennent à Github pour leur hébergement de domaines spécifiques.', + HELP_Sec_Desc_5: 'Pour générer les portefeuilles, vous pouvez télécharger le [code source](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Voir #5 ci-dessus.', + HELP_Sec_Desc_6: 'Lancez un test et vérifiez le type d\'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis "Inspecter". Allez à l\'onglet "Network". Générez un portefeuille de test. Vous verrez qu\'il n\'y a pas d\'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n\'a été transféré.', + HELP_Sec_Desc_7: 'Maintenant, pour en être absolument sûr, allez à la page "Resources" (ou "Application"). Vous pouvez y voir tous les éléments qui constituent un site web. Si vous cliquez sur Local Storage, Cookies et Cache, vous verrez que rien n\'y est stocké. Rien n\'y est sauvegardé. Rafraîchissez la page et vous voilà revenu au départ."', + HELP_Sec_Desc_8: 'Si cet outil ne vous plaît pas, alors ne l\'utilisez surtout pas. Nous l\'avons créé pour qu\'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n\'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ', + + HELP_FAQ_Title: 'Plus de réponses utiles aux questions fréquentes', + HELP_Contact_Title: 'Moyens de nous contacter' }; module.exports = fr; diff --git a/app/scripts/translations/he.js b/app/scripts/translations/he.js index d65f799cc7..a200441f30 100644 --- a/app/scripts/translations/he.js +++ b/app/scripts/translations/he.js @@ -477,16 +477,16 @@ he.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/hi.js b/app/scripts/translations/hi.js index b2bb3f6f35..bdc4ef3ff2 100644 --- a/app/scripts/translations/hi.js +++ b/app/scripts/translations/hi.js @@ -477,16 +477,16 @@ hi.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/hu.js b/app/scripts/translations/hu.js index c7dcabb8cd..28c99d3c1c 100644 --- a/app/scripts/translations/hu.js +++ b/app/scripts/translations/hu.js @@ -477,16 +477,16 @@ hu.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/id.js b/app/scripts/translations/id.js index f79f655e94..a22512ba62 100644 --- a/app/scripts/translations/id.js +++ b/app/scripts/translations/id.js @@ -5,44 +5,44 @@ id.code = 'id'; id.data = { /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', + NAV_YourWallets: 'Dompet Anda', /*'Your Wallets'*/ + NAV_AddWallet: 'Tambahkan Dompet', /*'Add Wallet'*/ + NAV_GenerateWallet: 'Buat Dompet', /*'Generate Wallet'*/ + NAV_BulkGenerate: 'Buat Banyak Dompet Sekaligus', /*'Bulk Generate'*/ + NAV_SendEther: 'Kirim Ether', /*'Send Ether'*/ + NAV_SendTokens: 'Kirim Tokens', /*'Send Tokens'*/ + NAV_Offline: 'Kirim Offline', /*'Send Offline'*/ + NAV_WithdrawDAO: 'Ambil DAO', /*'Withdraw DAO'*/ + DAO_TitleLong: 'Ambil ETH dari Token DAO Anda Withdraw Your Dao Tokens For ETH', /*'Withdraw Your Dao Tokens For ETH'*/ + NAV_ClaimDGD: 'Klaim DGD', /*'Claim DGD'*/ + DGD_TitleLong: 'Klaim DGD Token Anda', /*'Claim Your DGD Tokens'*/ + NAV_DeployContract: 'Deploy Contract', /*'Deploy Contract'*/ + NAV_MyWallets: 'Dompet Saya', /*'My Wallets'*/ + NAV_ViewWallet: 'Lihat Info Dompet', /*'View Wallet Info'*/ + NAV_Help: 'Bantuan', /*'Help'*/ + NAV_Contact: 'Kontak', /*'Contact'*/ /* General */ - x_Address: 'Your Address', + x_Address: 'Alamat Anda', /*'Your Address'*/ x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Batal', /*'Cancel'*/ + x_CSV: 'File CSV (tidak ter-enkripsi)', /*'CSV file (unencrypted)*/ x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', + x_Json: 'File JSON File (tidak ter-enkripsi)', /*'JSON File (unencrypted)'*/ x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', x_Keystore2: 'Keystore/JSON File', x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_Print: 'Print Dompet Kertas', /*'Print Paper Wallet'*/ + x_PrintDesc: 'ProTip: klik print dan simpan sebagai PDF, meskipun Anda tidak memiliki printer!', /*'ProTip: Click print and save this as a PDF, even if you do not own a printer!'*/ x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey: 'Private Key (tidak ter-enkripsi)', /*'Private Key (unencrypted)'*/ x_PrivKey2: 'Private Key', x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', + x_Save: 'Simpan', /*'Save'*/ + x_TXT: 'File TXT file (tidak ter-enkripsi)', /*'TXT file (unencrypted)'*/ + x_Wallet: 'Dompet', /*'Wallet'*/ /* Header */ MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', @@ -273,9 +273,9 @@ id.data = { /* Tranlsation Info */ translate_version: '0.3', Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ + TranslatorName_1: 'Yos Ginting', + TranslatorAddr_1: '0x8F646C5c215be6E0163f02Bd2eB97AFC2DF70e5c', + /* Translator 1: Start translating into Indonesian. Will do it in stages */ TranslatorName_2: ' ', TranslatorAddr_2: ' ', /* Translator 2: Insert Comments Here */ @@ -477,16 +477,16 @@ id.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/ja.js b/app/scripts/translations/ja.js index 009385e876..3eaf1fa3d6 100644 --- a/app/scripts/translations/ja.js +++ b/app/scripts/translations/ja.js @@ -476,16 +476,16 @@ ja.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/ko.js b/app/scripts/translations/ko.js index 6aa823d186..abd0acc0c3 100644 --- a/app/scripts/translations/ko.js +++ b/app/scripts/translations/ko.js @@ -477,16 +477,16 @@ ko.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/nl.js b/app/scripts/translations/nl.js index 3f133e32c4..362e0229d2 100644 --- a/app/scripts/translations/nl.js +++ b/app/scripts/translations/nl.js @@ -483,8 +483,8 @@ nl.data = { HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', - HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C://`', - HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:/niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C:`', + HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:\\niets_bijzonders_verwijder_mij.txt`', HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', diff --git a/app/scripts/translations/no.js b/app/scripts/translations/no.js index 752e908925..aae8cbd087 100644 --- a/app/scripts/translations/no.js +++ b/app/scripts/translations/no.js @@ -11,7 +11,7 @@ no.data = { NAV_BulkGenerate: 'Opprett flere lommebøker', NAV_SendEther: 'Send Ether', NAV_SendTokens: 'Send Token', - NAV_Offline: 'Send Frakoblet', + NAV_Offline: 'Send Offline', NAV_WithdrawDAO: 'Ta ut DAO', DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', NAV_ClaimDGD: 'Gjør krav på DGD', @@ -39,7 +39,7 @@ no.data = { x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', x_PrintShort: 'Skriv ut', x_Print: 'Skriv ut papirlommebok', - x_PrintDesc: 'ProTips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', + x_PrintDesc: 'Profftips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', x_CSV: 'CSV-fil (ukryptert)', x_TXT: 'TXT-fil (ukryptert)', x_Wallet: 'Lommebok', @@ -55,7 +55,7 @@ no.data = { FOOTER_1b: 'Skapt av', FOOTER_2: 'Donasjoner mottas med takk:', FOOTER_3: 'Klient-side lommebok-oppretting av', - FOOTER_4: 'Ansvarsfraskrivelse', + FOOTER_4: 'Ansvarsfraskrivelse', /* Sidebar */ sidebar_AccountInfo: 'Kontoinformasjon: ', @@ -112,7 +112,7 @@ no.data = { SEND_amount_short: 'Beløp', SEND_custom: 'Tilpasning', SEND_gas: 'Gas', - SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' + SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' SEND_generate: 'Generer transaksjon', SEND_raw: 'Rå-transaksjon', SEND_signed: 'Signert transaksjon', @@ -154,7 +154,7 @@ no.data = { TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', /* Offline Transaction */ - OFFLINE_Title: 'Generer & send frakoblet (offline) transaksjon', + OFFLINE_Title: 'Generer & send offline transaksjon', OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', OFFLINE_Step1_Button: 'Generer informasjon', @@ -182,7 +182,7 @@ no.data = { DAO_TitleETC: 'Veksle inn DAO mot ETC', DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', - DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-poletter, vennligst bruk "Send Token"-siden.', + DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-token, vennligst bruk "Send Token"-siden.', DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', DAOModal_Title: 'Bare for å være sikker...', @@ -370,7 +370,7 @@ no.data = { HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', - HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send frakoblet"-siden.', + HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send offline"-siden.', HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', @@ -437,10 +437,10 @@ no.data = { HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', HELP_9_Title: '9) Er "Send ether"-siden offline?', - HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Frakoblet transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', + HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Offline transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', - HELP_10_Desc_1: 'Naviger til "Send Frakoblet"-siden via din internettilknyttede datamaskin.', + HELP_10_Desc_1: 'Naviger til "Send Offline"-siden via din internettilknyttede datamaskin.', HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', @@ -477,16 +477,16 @@ no.data = { HELP_12_Desc_15: 'Hvis du er på en Mac:', HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt/`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', - HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', + HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', - HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', + HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', - HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C://`', - HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:/ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C:`', + HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:\\ikke_noe_spesielt_slett_meg.txt`', HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', - HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', + HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', diff --git a/app/scripts/translations/pl.js b/app/scripts/translations/pl.js index 0ee72838fd..fd2b9222b1 100644 --- a/app/scripts/translations/pl.js +++ b/app/scripts/translations/pl.js @@ -477,8 +477,8 @@ pl.data = { HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt/`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', - HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt/`', + HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', + HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt`', HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', diff --git a/app/scripts/translations/pt.js b/app/scripts/translations/pt.js index 838b1f1677..93591303a9 100644 --- a/app/scripts/translations/pt.js +++ b/app/scripts/translations/pt.js @@ -477,16 +477,16 @@ pt.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/ptbr.js b/app/scripts/translations/ptbr.js index 5ba129e9cf..f9ea55066c 100644 --- a/app/scripts/translations/ptbr.js +++ b/app/scripts/translations/ptbr.js @@ -477,16 +477,16 @@ ptbr.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/ru.js b/app/scripts/translations/ru.js index e0a460e1e5..4560e5d020 100644 --- a/app/scripts/translations/ru.js +++ b/app/scripts/translations/ru.js @@ -5,15 +5,15 @@ ru.code = 'ru'; ru.data = { /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', + GETH_InvalidSender: 'Неверный адрес отправителя', + GETH_Nonce: 'Номер перевода (nonce) слишком мал', + GETH_Cheap: 'Цена газа слишком низкая', + GETH_Balance: 'Баланс недостаточен', + GETH_NonExistentAccount: 'Счёт не существует или баланс счёта слишком мал', + GETH_InsufficientFunds: 'Недостаточно средств для ГАЗ * ЦЕНА + СУММА', + GETH_IntrinsicGas: 'Недостаточно газа для выполнения транзакции', + GETH_GasLimit: 'Превышен лимит газа на блок', + GETH_NegativeValue: 'Отрицательная сумма', /* Navigation*/ NAV_YourWallets: 'Ваши кошельки', @@ -478,16 +478,16 @@ ru.data = { HELP_12_Desc_15b: 'Если вы используете ПК:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/sk.js b/app/scripts/translations/sk.js index 9e1b8261d0..96f7540b92 100644 --- a/app/scripts/translations/sk.js +++ b/app/scripts/translations/sk.js @@ -4,58 +4,80 @@ var sk = function() {} sk.code = 'sk'; sk.data = { + NAV_DeployContract: 'Deploy Contract', + x_Keystore2: 'Keystore / JSON File', + x_PrivKey2: 'Private Key', + FOOTER_4: 'Disclaimer', + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', + NAV_YourWallets: 'Vaše Peňaženky', + NAV_AddWallet: 'Pridať peňaženku', + NAV_GenerateWallet: 'Vytvoriť peňaženku', NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_SendEther: 'Poslať Ether', + NAV_SendTokens: 'Poslať Tokens', + NAV_Offline: 'Poslať Offline', + NAV_WithdrawDAO: 'Vybrať DAO', + DAO_TitleLong: 'Vymeniť Vaše Dao Tokens za ETH', NAV_ClaimDGD: 'Claim DGD', DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', + NAV_MyWallets: 'Moje peňaženky', + NAV_ViewWallet: 'Zobraziť detaily peňaženky', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', + x_Password: 'Heslo', + x_Wallet: 'Peňaženka', + x_Download: 'Stiahnuť', + x_Address: 'Vaša Adresa', + x_Save: 'Uložiť', + x_Cancel: 'Zrušiť', + x_AddessDesc: 'Možno to poznate ako vaše "Konto #" alebo váš "Verejný Kľúč". Adresa je to, čo pošlete ľudom, aby vám mohli poslať ETH. Táto ikona vám pomôže rozpoznať vašu adresu.', + x_PrivKey: 'Súkromný Kľúč (nezašifrovaný)', + x_PrivKeyDesc: 'Toto je nezašifrovaná textova verzia vašho Súkromneho Kľuča, to znamená, že heslo nie je potrebné. Ak niekto získa vaš nezašifrovaný Súkromný Kľúč, môže získať prístup do vašej peňaženky bez hesla. Práve kvôli tomuto sú šifrované verzie odporúčané.', + x_Keystore: 'Keystore/JSON Súbor (Odporúčané · Šifrované · Mist/Geth Format)', + x_KeystoreDesc: 'Tento Keystore / JSON súbor je rovnakého formatu ako Mist & Geth takže ho budete môcť jednoducho importovať. Tento subor odporúčame stiahnuť a zálohovať.', + x_Json: 'JSON Súbor (nezašifrovaný)', + x_JsonDesc: 'Toto je nezašifrovaný JSON format vášho sukromného kľúča. To znamená, že nepotrebujete heslo, ale ak niekto získa váš JSON, je schopný sprístupniť vašu peňaženku a Ether bez hesla.', + x_PrintShort: 'Vytlačiť', + x_Print: 'Vytlačiť Papierovú Peňaženku', + x_PrintDesc: 'Rada: Ak nevlastnite tlačiareň, jednoducho kliknite tlačiť a uložte to ako PDF.', + x_CSV: 'CSV súbor (nezašifrovaný)', + x_TXT: 'TXT súbor (nezašifrovaný)', /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Warning_1: 'Vždy skontrolujte URL adresu pred tým ako vytvoríte alebo sprístupnite vašu peňaženku. Davajte si pozor na Phisingové stránky!', + CX_Warning_1: 'Uistita sa, že máťe **externé zálohy** všetkych peňaženiek. Mnoho vecí može spôsobiť stratu dát tohoto Chrome rozširenia, vrátane odinštalovania a preinštalovania tohto rozšírenia. Toto rozšírenie pomáha jednoducho sprístupniť vašu peňaženku, **nie** ju zálohovať.', MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions.', + FOOTER_1b: 'Vytvorené', + FOOTER_2: 'Dotácie srdečne vítane:', FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', /* Sidebar */ sidebar_AccountInfo: 'Account Information: ', @@ -112,7 +134,6 @@ sk.data = { SEND_amount_short: 'Amount', SEND_custom: 'Custom', SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', SEND_generate: 'Generate Transaction', SEND_raw: 'Raw Transaction', SEND_signed: 'Signed Transaction', @@ -122,9 +143,10 @@ sk.data = { SENDModal_Content_1: 'You are about to send', SENDModal_Content_2: 'to address', SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ETH to your account to cover the gas cost of sending tokens. Gas is paid in ETH.', SENDModal_No: 'No, get me out of here!', SENDModal_Yes: 'Yes, I am sure! Make transaction.', + SEND_TransferTotal: 'Send Entire Balance', /* Tokens */ TOKEN_Addr: 'Address: ', @@ -160,7 +182,7 @@ sk.data = { OFFLINE_Step1_Button: 'Generate Information', OFFLINE_Step1_Label_1: 'From Address: ', OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', OFFLINE_Step2_Label_1: 'To Address: ', OFFLINE_Step2_Label_2: 'Value / Amount to Send', OFFLINE_Step2_Label_3: 'Gas Price ', @@ -176,20 +198,10 @@ sk.data = { OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again. ', DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" /* Digix */ DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', @@ -199,12 +211,6 @@ sk.data = { DGD_Generate: 'Generate Claim', DGD_Content: 'You are about to claim your DGD Tokens.', - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - /* My Wallet */ MYWAL_Nick: 'Wallet Nickname', MYWAL_Address: 'Wallet Address', @@ -227,10 +233,11 @@ sk.data = { VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - /* Chrome Extension */ + /* CX */ CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + /* Error Messages */ ERROR_1: 'Please enter valid amount.', ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', @@ -271,7 +278,7 @@ sk.data = { GETH_NegativeValue: 'Negative value', /* Tranlsation Info */ - translate_version: '0.2', + translate_version: '0.3', Translator_Desc: 'Thank you to our translators: ', TranslatorName_1: '', TranslatorAddr_1: '', @@ -289,7 +296,7 @@ sk.data = { TranslatorAddr_5: ' ', /* Translator 5: Insert Comments Here */ - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ +/* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', HELP_Remind_Title: 'Some reminders', @@ -477,16 +484,16 @@ sk.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', @@ -499,7 +506,7 @@ sk.data = { HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', @@ -512,7 +519,7 @@ sk.data = { HELP_20_Title: '20) Where is my pre-sale wallet file?', HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', diff --git a/app/scripts/translations/sl.js b/app/scripts/translations/sl.js index 17ca0b5eb6..d980c4be10 100644 --- a/app/scripts/translations/sl.js +++ b/app/scripts/translations/sl.js @@ -480,16 +480,16 @@ sl.data = { HELP_12_Desc_15: 'If you are on a Mac:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/sv.js b/app/scripts/translations/sv.js index 57fde45fd3..15996673f1 100644 --- a/app/scripts/translations/sv.js +++ b/app/scripts/translations/sv.js @@ -478,16 +478,16 @@ sv.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/tr.js b/app/scripts/translations/tr.js index d8104f1e87..097e91677e 100644 --- a/app/scripts/translations/tr.js +++ b/app/scripts/translations/tr.js @@ -199,7 +199,7 @@ tr.data = { DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', DAOModal_Title: 'Sadece emin olmak için...', - + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. DAOModal_1: 'Cekmek üzeresin', DAOModal_2: 'DAO token\'i ', @@ -480,16 +480,16 @@ tr.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/translate.js b/app/scripts/translations/translate.js index a0dd0ff4a8..711dac069c 100644 --- a/app/scripts/translations/translate.js +++ b/app/scripts/translations/translate.js @@ -1,34 +1,36 @@ -'use strict'; -var ar = require('./ar'); -var bg = require('./bg'); -var de = require('./de'); -var el = require('./el'); -var en = require('./en'); -var es = require('./es'); -var et = require('./et'); -var fr = require('./fr'); -var he = require('./he'); -var hi = require('./hi'); -var hu = require('./hu'); -var id = require('./id'); -var it = require('./it'); -var ja = require('./ja'); -var ko = require('./ko'); -var nl = require('./nl'); -var no = require('./no'); -var pl = require('./pl'); -var pt = require('./pt'); -var ptbr = require('./ptbr'); -var ru = require('./ru'); -var sk = require('./sk'); -var sl = require('./sl'); -var sv = require('./sv'); -var tr = require('./tr'); -var uk = require('./uk'); -var vi = require('./vi'); -var zh = require('./zh'); + 'use strict'; + var ar = require('./ar'); + var bg = require('./bg'); + var de = require('./de'); + var de = require('./de'); + var el = require('./el'); + var en = require('./en'); + var es = require('./es'); + var et = require('./et'); + var fi = require('./fi'); + var fr = require('./fr'); + var he = require('./he'); + var hi = require('./hi'); + var hu = require('./hu'); + var id = require('./id'); + var it = require('./it'); + var ja = require('./ja'); + var ko = require('./ko'); + var nl = require('./nl'); + var no = require('./no'); + var pl = require('./pl'); + var pt = require('./pt'); + var ptbr = require('./ptbr'); + var ru = require('./ru'); + var sk = require('./sk'); + var sl = require('./sl'); + var sv = require('./sv'); + var tr = require('./tr'); + var uk = require('./uk'); + var vi = require('./vi'); + var zh = require('./zh'); -var translate = function($translateProvider) { + var translate = function($translateProvider) { $translateProvider.translations(ar.code, translate.marked(ar.data)); $translateProvider.translations(bg.code, translate.marked(bg.data)); $translateProvider.translations(de.code, translate.marked(de.data)); @@ -36,6 +38,7 @@ var translate = function($translateProvider) { $translateProvider.translations(en.code, translate.marked(en.data)); $translateProvider.translations(es.code, translate.marked(es.data)); $translateProvider.translations(et.code, translate.marked(et.data)); + $translateProvider.translations(fi.code, translate.marked(fi.data)); $translateProvider.translations(fr.code, translate.marked(fr.data)); $translateProvider.translations(he.code, translate.marked(he.data)); $translateProvider.translations(hi.code, translate.marked(hi.data)); @@ -57,9 +60,10 @@ var translate = function($translateProvider) { $translateProvider.translations(uk.code, translate.marked(uk.data)); $translateProvider.translations(vi.code, translate.marked(vi.data)); $translateProvider.translations(zh.code, translate.marked(zh.data)); - $translateProvider.preferredLanguage('en'); - $translateProvider.useSanitizeValueStrategy(null); -} + $translateProvider.preferredLanguage('en'); + $translateProvider.useSanitizeValueStrategy(null); + } + translate.marked = function(data) { var tData = data; for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); diff --git a/app/scripts/translations/uk.js b/app/scripts/translations/uk.js index a99fa0cef5..603e358a54 100644 --- a/app/scripts/translations/uk.js +++ b/app/scripts/translations/uk.js @@ -477,16 +477,16 @@ uk.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/vi.js b/app/scripts/translations/vi.js index c7fe388139..89ad8c730b 100644 --- a/app/scripts/translations/vi.js +++ b/app/scripts/translations/vi.js @@ -476,16 +476,16 @@ vi.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/translations/zh.js b/app/scripts/translations/zh.js index b214f5765f..01ec1d7dec 100644 --- a/app/scripts/translations/zh.js +++ b/app/scripts/translations/zh.js @@ -479,16 +479,16 @@ zh.data = { HELP_12_Desc_15b: 'If you are on a PC:', HELP_12_Desc_16: 'Open Text Edit and paste this private key.', HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', diff --git a/app/scripts/validator.js b/app/scripts/validator.js index c50f89f373..f14f6ce9a8 100644 --- a/app/scripts/validator.js +++ b/app/scripts/validator.js @@ -4,7 +4,7 @@ validator.isValidAddress = function(address){ return ethFuncs.validateEtherAddress(address); } validator.isPositiveNumber = function(value){ - return globalFuncs.isNumeric(value) && parseFloat(value) > 0; + return globalFuncs.isNumeric(value) && parseFloat(value) >= 0; } validator.isValidHex = function(hex){ return ethFuncs.validateHexString(hex); @@ -16,4 +16,4 @@ validator.isPasswordLenValid = function(pass, len){ if(pass === 'undefined' || pass == null ) return false; return pass.length > len; } -module.exports = validator; \ No newline at end of file +module.exports = validator; diff --git a/chrome-extension/cx-wallet.html b/chrome-extension/cx-wallet.html index e97631637f..2f4bfe8de3 100644 --- a/chrome-extension/cx-wallet.html +++ b/chrome-extension/cx-wallet.html @@ -182,7 +182,7 @@

Your Watch-Only Accounts

{{twallet.balance | number:4 }} ETH
- {{token.getBalance() }} {{token.getSymbol()}}    + {{token.getBalance() }} {{token.getSymbol()}}   
{{twallet.btc }} BTC    $ {{twallet.usd }} USD    {{twallet.eur }} EUR @@ -1206,21 +1206,22 @@

Account Information:

Withdraw DAO for ETC

+ + +
- -
+
-
- + %
@@ -1234,6 +1235,7 @@

Withdraw DAO for ETC



If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

+
@@ -1494,10 +1496,10 @@

Gas:

- Sign Transaction + Sign Transaction
-
+

Raw Transaction

@@ -1512,7 +1514,7 @@

Signed Transaction

-
+ @@ -1532,7 +1534,7 @@

- You are about to deploy a contract to the blockchain. + You are about to deploy a contract to the blockchain.

Are you sure you want to do this?

diff --git a/chrome-extension/embedded.html b/chrome-extension/embedded.html deleted file mode 100644 index d914e87132..0000000000 --- a/chrome-extension/embedded.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - MyEtherWallet: Open Source JavaScript Client-Side Ether Wallet - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- Ether Wallet -
-
- - -
- - - -
- -
- - -

Generate Wallet

-
-
-
-

Enter a strong password (at least 9 characters)

-
- - -
-
-
-
-
-

Generate Wallet

- Generate Wallet -
-
-
- - - -
- -
- - -

Success! Your wallet has been generated.

-
**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.
- - -
-
-

1. Save your Keystore/JSON or Private Key. Don't forget your password above.

- -
-
-
-

2. Save Your Address

- -
-
-
-
-
-
- -
- -
- - -
- - - -
- - - - - - diff --git a/chrome-extension/images/fav/android-chrome-144x144.png b/chrome-extension/images/fav/android-chrome-144x144.png deleted file mode 100644 index 1ad2246482..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-144x144.png and /dev/null differ diff --git a/chrome-extension/images/fav/android-chrome-192x192.png b/chrome-extension/images/fav/android-chrome-192x192.png deleted file mode 100644 index 8a3c8fb81f..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-192x192.png and /dev/null differ diff --git a/chrome-extension/images/fav/android-chrome-36x36.png b/chrome-extension/images/fav/android-chrome-36x36.png deleted file mode 100644 index 6dea398e8f..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-36x36.png and /dev/null differ diff --git a/chrome-extension/images/fav/android-chrome-48x48.png b/chrome-extension/images/fav/android-chrome-48x48.png deleted file mode 100644 index 59f55d3c6e..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-48x48.png and /dev/null differ diff --git a/chrome-extension/images/fav/android-chrome-72x72.png b/chrome-extension/images/fav/android-chrome-72x72.png deleted file mode 100644 index 96bc32aabc..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-72x72.png and /dev/null differ diff --git a/chrome-extension/images/fav/android-chrome-96x96.png b/chrome-extension/images/fav/android-chrome-96x96.png deleted file mode 100644 index 179d23048a..0000000000 Binary files a/chrome-extension/images/fav/android-chrome-96x96.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-120x120.png b/chrome-extension/images/fav/apple-touch-icon-120x120.png deleted file mode 100644 index cf7edc5138..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-120x120.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-152x152.png b/chrome-extension/images/fav/apple-touch-icon-152x152.png deleted file mode 100644 index 8725445367..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-152x152.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-180x180.png b/chrome-extension/images/fav/apple-touch-icon-180x180.png deleted file mode 100644 index f6a7ee3681..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-180x180.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-60x60.png b/chrome-extension/images/fav/apple-touch-icon-60x60.png deleted file mode 100644 index 845e63c7d5..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-60x60.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-76x76.png b/chrome-extension/images/fav/apple-touch-icon-76x76.png deleted file mode 100644 index 53c6120f3d..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-76x76.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon-precomposed.png b/chrome-extension/images/fav/apple-touch-icon-precomposed.png deleted file mode 100644 index 887103be7f..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon-precomposed.png and /dev/null differ diff --git a/chrome-extension/images/fav/apple-touch-icon.png b/chrome-extension/images/fav/apple-touch-icon.png deleted file mode 100644 index f6a7ee3681..0000000000 Binary files a/chrome-extension/images/fav/apple-touch-icon.png and /dev/null differ diff --git a/chrome-extension/images/fav/browserconfig.xml b/chrome-extension/images/fav/browserconfig.xml deleted file mode 100644 index 25f8b48738..0000000000 --- a/chrome-extension/images/fav/browserconfig.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - #2e4868 - - - diff --git a/chrome-extension/images/fav/favicon-16x16.png b/chrome-extension/images/fav/favicon-16x16.png deleted file mode 100644 index eaf1045066..0000000000 Binary files a/chrome-extension/images/fav/favicon-16x16.png and /dev/null differ diff --git a/chrome-extension/images/fav/favicon-194x194.png b/chrome-extension/images/fav/favicon-194x194.png deleted file mode 100644 index 1d73c550c4..0000000000 Binary files a/chrome-extension/images/fav/favicon-194x194.png and /dev/null differ diff --git a/chrome-extension/images/fav/favicon-32x32.png b/chrome-extension/images/fav/favicon-32x32.png deleted file mode 100644 index fff590f642..0000000000 Binary files a/chrome-extension/images/fav/favicon-32x32.png and /dev/null differ diff --git a/chrome-extension/images/fav/favicon-96x96.png b/chrome-extension/images/fav/favicon-96x96.png deleted file mode 100644 index 379285619e..0000000000 Binary files a/chrome-extension/images/fav/favicon-96x96.png and /dev/null differ diff --git a/chrome-extension/images/fav/favicon.ico b/chrome-extension/images/fav/favicon.ico deleted file mode 100644 index ad989a4ed9..0000000000 Binary files a/chrome-extension/images/fav/favicon.ico and /dev/null differ diff --git a/chrome-extension/images/fav/manifest.json b/chrome-extension/images/fav/manifest.json deleted file mode 100644 index 9342fea308..0000000000 --- a/chrome-extension/images/fav/manifest.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "My app", - "icons": [ - { - "src": "\/fav\/android-chrome-36x36.png", - "sizes": "36x36", - "type": "image\/png", - "density": "0.75" - }, - { - "src": "\/fav\/android-chrome-48x48.png", - "sizes": "48x48", - "type": "image\/png", - "density": "1.0" - }, - { - "src": "\/fav\/android-chrome-72x72.png", - "sizes": "72x72", - "type": "image\/png", - "density": "1.5" - }, - { - "src": "\/fav\/android-chrome-96x96.png", - "sizes": "96x96", - "type": "image\/png", - "density": "2.0" - }, - { - "src": "\/fav\/android-chrome-144x144.png", - "sizes": "144x144", - "type": "image\/png", - "density": "3.0" - }, - { - "src": "\/fav\/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image\/png", - "density": "4.0" - } - ] -} diff --git a/chrome-extension/images/fav/mstile-144x144.png b/chrome-extension/images/fav/mstile-144x144.png deleted file mode 100644 index d5e227a007..0000000000 Binary files a/chrome-extension/images/fav/mstile-144x144.png and /dev/null differ diff --git a/chrome-extension/images/fav/mstile-150x150.png b/chrome-extension/images/fav/mstile-150x150.png deleted file mode 100644 index c27a1f14d7..0000000000 Binary files a/chrome-extension/images/fav/mstile-150x150.png and /dev/null differ diff --git a/chrome-extension/images/fav/mstile-310x150.png b/chrome-extension/images/fav/mstile-310x150.png deleted file mode 100644 index 8fe3477aca..0000000000 Binary files a/chrome-extension/images/fav/mstile-310x150.png and /dev/null differ diff --git a/chrome-extension/images/fav/mstile-310x310.png b/chrome-extension/images/fav/mstile-310x310.png deleted file mode 100644 index 816ace845e..0000000000 Binary files a/chrome-extension/images/fav/mstile-310x310.png and /dev/null differ diff --git a/chrome-extension/images/fav/mstile-70x70.png b/chrome-extension/images/fav/mstile-70x70.png deleted file mode 100644 index 4d45e7acb5..0000000000 Binary files a/chrome-extension/images/fav/mstile-70x70.png and /dev/null differ diff --git a/chrome-extension/index.html b/chrome-extension/index.html deleted file mode 100644 index d3d9dc5707..0000000000 --- a/chrome-extension/index.html +++ /dev/null @@ -1,2127 +0,0 @@ - - - - - MyEtherWallet: Open Source JavaScript Client-Side Ether Wallet - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!
-
-
-
- My Ether Wallet -
- Open Source JavaScript Client-Side Ether Wallet - - - - · v3.0 · - - {{curLang}} - - -
-
-
- - - -
- - - - -
- -
- -
- -
- - -

Generate Wallet

- - -

- If you want to generate multiple wallets, you can do so here: - Bulk Generate -

- - -
-
-
-

Enter a strong password (at least 9 characters)

-
- - -
-
-
-
-
-

Generate Wallet

- Generate Wallet -
-
-
- - - -
-
- - -

Success! Your wallet has been generated.

-
**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.
- - - -

1. Save your Keystore/JSON or Private Key. Don't forget your password above.

-
-
-
- - DOWNLOAD -
-
- - DOWNLOAD -
-
-
-
- - -
-
-
- - -
- - -
-
-
- - -
-
-
-
-
-
- - -
- - -

3. Print your paper wallet, or store a QR code verison. (optional) -
-
-
- - PRINT -
-
-
-
Your Address:
-
-
-
-
Private Key (unencrypted):
-
-
-
- - - -

-
- - - -
- -
-
- +- - -

View Wallet Details

- -
-
- -

- This page allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like etherscan.io. -

- - - -
-
- - - - - -
-
- -

Success! Here are your wallet details.

- -
- -
-
- - -
-
-
-
-
- -
- - -
- -
-
-

Your Address:

-
-
-
-

Private Key (unencrypted):

-
-
-
- -
- -
- -
- - Print Paper Wallet -
- -
- - DOWNLOAD -
- -
- - DOWNLOAD -
- -
- -
Account Balance:
- - -
Token Balances:
- - -
Equivalent Values:
- - -
See Transaction History:
- - -
- -
- -
- - - - -
- - - -
- -
- +- - -

Send Ether

- -
-
- -

If you want to send Tokens, please use the "Send Token" page instead.

- - - -
-
- - - -
-
- - -
- -

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
-

MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?

- DONATE -
THANK YOU!!!
-
-
- - - - -
- - -
If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.
-
- -

Send Transaction

- -
- - -
- -
-
-
- -
- - Send Entire Balance - -
- -
- -
- -
- - -
- -

+ Advanced: Add More Gas or Data

-
-
-
- - -
-
- - -
-
-
- -
- - - -
-
-
- -
- - - - -
- - - -
- -
-

A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.

-
- - - - - - - - - - -
-
-
- - - - -
- -

Generate & Send Offline Transaction

- -

Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.

- -
- - -
-

Step 1: Generate Information (Online Computer)

-
- -

Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.

- -
-
-
-
-
- -
-
- - -
-
- - -
-
-
- - - -
-
-

Step 2: Generate Transaction (Offline Computer)

-
- - -
-
-
-
-
-
- - -
- - - -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- - -
-
-
-
-
-
- - - -
-
-

Step 3: Send / Publish Transaction (Online Computer)

-

Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.

-
- - -
- -
-
- - - - - - -
- - - - -
- -
-
- +- - -

Send Tokens

- -
-
- - - - -
-
- - - - - -
-
- - -
- -

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Token Balances:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
-

MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?

- DONATE -
THANK YOU!!!
-
- -
- - - -
- -
- -

Send Tokens

- -
- - -
-
- -
-
-
- -
- - - - -
- - -
- -
-

[Check out Ethplorer.io](https://ethplorer.io/) if you need help finding symbol / decimal.

-
- - -
-
- - -
-
- - -
-
-
Save
-
-
-
- -
- - -
- -
- - - -
-
-
- -
- - - - -
- - - -
- -
- -
- - - - - - -
- -
- - - - -
- - -
-
- +- - -

Withdraw DAO

- -
-
- -

Use this tab to Withdraw your DAO Tokens for ETH & ETC. If you wish to send DAO, please use the Send Tokens Tab.


- - - -
-
- - - - -
-
- - -
-

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Equivalent Values:
- - -
Transaction History:
- -
- - - - - -
- - - - - -
- -

Withdraw DAO for ETC

- -
- - -
-
- -
-
-
- - -
- -
- - % -
- - -
- -

- -

If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

-
- - - - - -
-

Withdraw DAO for ETH

-
- - Withdraw DAO for ETH - -

Yes. Just push the big red button. It's that easy.

-
-
-
-


-

If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

-
- - -
- - - - - - - - - - - - - - -
- - -
- - - - -
- -
-
- +- - -

Claim DGD

- -
-
- -

Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.

- - - -
-
- - - -
-
- - -
-

Account Information:

-
- -
Account Address:
- - -
Account Balance:
- - -
DGD Crowdsale Information:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
- - - - - -
- - -
-

Claim Your DGD Tokens

-
-
- -
-
-
- -
-
-
- -
-
-
- -
- -
- - - -
- -
- - - - -
- - - -
- -
- - - - - -
- -
- - - - -
- -

Deploy Contract

- -
- -
- -
-

Byte Code:

- -
- - -
-

Gas:

- -
- - -
-
- - -

-
-
- - - -
- -
-

Raw Transaction

- -
- - -
-

Signed Transaction

- -
-
- - - - -
- - - - - - - - -
-
-
- - - - -
- - -
If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.
-
- -

Help

- -

Do you see something missing? Have another question? Get in touch with us, and we will not only answer your question, we will update this page to be more useful to people in the future!

- - -
-
- +- -

Some reminders

-
-
-
    -
  • **Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but we are not responsible for the lost Ether.
  • -
  • MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.
  • -
  • If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!
  • -
-
-
- - - -
-
- +- -

0. I'm new. What do I do?

-
-
-

MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.

-
    -
  1. Create a new wallet.
  2. -
  3. Back the wallet up.
  4. -
  5. Verify you have access to this new wallet and have correctly saved all necessary information.
  6. -
  7. Transfer Ether to this new wallet.
  8. -
-
-
- - - -
-
- +- -

1. How do I create a new wallet?

-
-
-
    - -
  1. Go to the "Generate Wallet" page.
  2. - - -
  3. Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.
  4. -
  5. Click "GENERATE".
  6. -
  7. Your wallet has now been generated.
  8. -
-
-
- - - -
-
- +- -

2a. How do I save/backup my wallet?

-
-
-

You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.

-
    -
  1. Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.
  2. -
  3. Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:
  4. - -
      -
    • Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format): This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.
    • -
    • JSON File (unencrypted): This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.
    • -
    • Private Key (unencrypted): This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.
    • -
    - -
  5. Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.
  6. -
  7. Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.
  8. -
  9. Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).
  10. -
-
-
- - - - -
-
- +- -

2b. How do I safely / offline / cold storage with MyEtherWallet?

-
-
-
    -
  1. Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).
  2. -
  3. Click download zip in the upper right.
  4. -
  5. Move zip to an airgapped computer.
  6. -
  7. Unzip it and double-click index.html.
  8. -
  9. Generate a wallet with a strong password.
  10. -
  11. Save the address. Save versions of the private key. Save the password if you might not remember it forever.
  12. -
  13. Store these papers / USBs in multiple physically separate locations.
  14. -
  15. Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.
  16. -
-

Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).

-
-
- - - - -
-
- +- -

3. How do I verify I have access to my new wallet?

-
-
-

**Before you send any Ether to your new wallet**, you should ensure you have access to it.

-
    - -
  1. Navigate to the "View Wallet Info" page.
  2. - - -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. If the wallet is encrypted, a text box will automatically appear. Enter the password.
  6. -
  7. Click the "Unlock Wallet" button.
  8. -
  9. Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.
  10. -
  11. If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.
  12. -
-
-
- - - - -
-
- +- -

4. How do I send Ether from one wallet to another?

-
-
-

If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.

-
    -
  1. Navigate to the "Send Ether" page.
  2. -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. If the wallet is encrypted, a text box will automatically appear. Enter the password.
  6. -
  7. Click the "Unlock Wallet" button.
  8. -
  9. Enter the address you would like to send to in the "To Address:" field.
  10. -
  11. Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.
  12. -
  13. Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.
  14. -
  15. Click "Generate Transaction".
  16. -
  17. A couple more fields will appear. This is your browser generating the transaction.
  18. -
  19. Click the blue "Send Transaction" button below that.
  20. -
  21. A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.
  22. -
  23. The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.
  24. -
-
-
- - - - - - - - - -
-
- +- -

5. How do I run MyEtherWallet.com offline/locally?

-
-
-

You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.

-
    -
  1. Go to our github: https://github.com/kvhnuke/etherwallet/tree/gh-pages.
  2. -
  3. Click download zip in the upper right.
  4. -
  5. Move zip to an airgapped computer.
  6. -
  7. Unzip it.
  8. -
  9. Double-Click index.html.
  10. -
  11. MyEtherWallet.com is now running entirely on your computer.
  12. -
-

In case you are not familiar, you need to keep the entire folder in order to run the website, not just index.html. Don't touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.

-

As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.

-
-
- - - - - - - - -
-
- +- -

6. How do I split my ETH / ETC?

-
-
-

When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.

-

You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.

-

Even more information about wallets and reply attacks can be found here

-
    -
  1. Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).
  2. -
  3. Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).
  4. -
  5. Back up these new wallets and verify you can access them. See #2a and #3 above.
  6. -
  7. Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.
  8. -
  9. Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com
  10. -
  11. Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.
  12. -
  13. Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.
  14. -
  15. Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field.
  16. -
  17. Go to classicetherwallet.com and paste that ETC TX into classicetherwallet.com's offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.
  18. -
  19. If everything receives correctly and sends correctly then you are golden.
  20. -
  21. Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".
  22. -
  23. Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks.
  24. -
-
-
- - - -
-
- +- -

7. How do I send Tokens & add custom tokens?

-
-
-

[Check out Ethplorer.io](https://ethplorer.io/) if you need help finding symbol / decimal.

-
    -
  1. Navigate to the "Send Token" page.
  2. -
  3. Unlock your wallet.
  4. -
  5. Enter the address you would like to send to in the "To Address:" field.
  6. -
  7. Enter the amount you would like to send.
  8. -
  9. Select which token you would like to send.
  10. -
  11. If you do not see the token listed:
  12. -
      -
    1. Click "Custom".
    2. -
    3. Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.
    4. -
    5. Click "Save".
    6. -
    7. You can now send that token as well as see it's balance in the sidebar.
    8. -
    -
  13. Click "Generate Transaction".
  14. -
  15. A couple more fields will appear. This is your browser generating the transaction.
  16. -
  17. Click the blue "Send Transaction" button below that.
  18. -
  19. A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.
  20. -
  21. The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.
  22. -
-
-
- - - - -
-
- +- -

8. What happens if your site goes down?

-
-
-

MyEtherWallet is not a web wallet. You don't have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.

-

If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn't have to "get" your Ether out of MyEtherWallet because it's not in MyEtherWallet. It's in whatever wallet your generated via our site.

-

You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #10 below.

-

In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren't storing any information. If we do take the domain down, it still is, and always will be, publicly available at https://github.com/kvhnuke/etherwallet. You can download the ZIP there and run it locally.

-
-
- - - - - - - - -
-
- +- -

9. Is using the send transaction offline?

-
-
-

No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.

-
-
- - - - -
-
- +- -

10. How do I make an offline transaction?

-
-
-
    -
  1. Navigate to the "Offline Transaction" page via your online computer.
  2. -
  3. Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.
  4. -
  5. Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.
  6. -
  7. Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.
  8. -
  9. Enter the "NONCE" as it was displayed to you on your online computer in step #1.
  10. -
  11. The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.
  12. -
  13. If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.
  14. -
  15. Select your wallet file -or- your private key and unlock your wallet.
  16. -
  17. Press the "GENERATE SIGNED TRANSACTION" button.
  18. -
  19. The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer.
  20. -
  21. On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.
  22. -
-
-
- - - - -
-
- +- -

11. How do I send to a contract?

-
-
-

Sending to a contract often requires you to include data or additional gas or both.

-
    -
  1. Navigate to the "Send Ether" page.
  2. -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. Enter a "To Address" and "Amount to Send"
  6. -
  7. Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.
  8. -
-
-
- - - - -
-
- +- -

12. How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?

-
-
-

Using an Geth/Mist JSON file from MyEtherWallet v2+....

-
    - -
  1. Go to the "View Wallet Info" page.
  2. -
  3. Unlock your wallet using your **encrypted** private key or JSON file.
  4. - - -
  5. Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.
  6. -
  7. Open the Ethereum Wallet application.
  8. -
  9. In the menu bar, go "Accounts" -> "Backup" -> "Accounts"
  10. -
  11. This will open your keystore folder. Copy the file you just downloaded (UTC--2016-04-14........) into that keystore folder.
  12. -
  13. Your account should show up immediately under "Accounts."
  14. -
- -

Using your unencrypted private key...

-
    -
  1. If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.
  2. -
  3. Select your wallet file -or- enter/paste your private key to unlock your wallet.
  4. -
  5. Copy Your Private Key (unencrypted).
  6. -
  7. If you are on a Mac:
  8. -
      -
    • Open Text Edit and paste this private key.
    • -
    • Go to the menu bar and click "Format" -> "Make Plain Text".
    • -
    • Save this file to your desktop as nothing_special_delete_me.txt. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.
    • -
    • Open terminal and run the following command: geth account import ~/Desktop/nothing_special_delete_me.txt
    • -
    • This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don't forget it.
    • -
    • After successful import, delete nothing_special_delete_me.txt
    • -
    • The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".
    • -
    -
  9. If you are on a PC:
  10. -
      -
    • Open Notepad & paste the private key
    • -
    • Save the file as nothing_special_delete_me.txt at C:\
    • -
    • Run the command, geth account import C:\nothing_special_delete_me.txt
    • -
    • This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don't forget it.
    • -
    • After successful import, delete nothing_special_delete_me.txt
    • -
    • The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".
    • -
    -
-
-
- - - -
-
- +- -

13. What does "Gas Limit Too Low" Mean?

-
-
-

Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.

-
-
- - - -
-
- +- -

14. Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn't do this. Is the random number generation for MyEtherWallet safe?

-
-
-

While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren't unsafe, it's just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here's a conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto and here is the the window.crypto w3 spec.

-
-
- - - -
-
- +- -

15. Why hasn't the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)

-
-
-

Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.

-
-
- - - -
-
- +- -

16. How do I check the balance of my account?

-
-
-

You can use a blockchain explorer like etherscan.io. Paste your address into the search bar and it will pull up your address and transaction history. For example, here's what our donation account looks like on etherscan.io

-
-
- - - -
-
- +- -

17. Why isn't my balance showing up when I unlock my wallet?

-
-
-

This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io

-
-
- - - -
-
- +- -

18. Where is my geth wallet file?

-
-
-
    -
  • Mac: ~/Library/Ethereum/keystore
  • -
  • Linux: ~/.ethereum/keystore
  • -
  • Windows: %APPDATA%/Ethereum/keystore
  • -
-
-
- - - -
-
- +- -

19. Where is my Mist wallet file?

-
-
-

Mist files are typically found in the file locations above, but it's much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.

-
-
- - - -
-
- +- -

20. Where is my pre-sale wallet file?

-
-
-

Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called "ethereum_wallet_backup.json" and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.

-
-
- - - -
-
- +- -

21. Couldn't everybody put in random private keys, look for a balance, and send to their own address?

-
-
-

Short version: yes, but finding an account with a balance would take longer than the universe...so...no.

-

Long ELI5 Version: So Ethereum is based on Public Key Cryptography, specifically Elliptic curve cryptography which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.

-

In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.

-

Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.

-

And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.

-

If you know anything about Bitcoin, this will put it in perspective: *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.*

-

If you want something a bit more technical: *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.*

-

Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person's brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that's a separate issue that can wait for another day.

-
-
-
- - - - - - - -
-
- +- -

Security

-
-
-

If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears.

-
    -
  • We've been up and running since August 2015. If you search for "myetherwallet" on reddit, you can see numerous people who use us with great success.
  • -
  • We aren't going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.
  • -
  • Check the URL -- This site is being served through GitHub and you can see the source code here: https://github.com/kvhnuke/etherwallet/tree/gh-pages to the domains: http://kvhnuke.github.io/etherwallet/ and https://www.myetherwallet.com. You can verify it's hosted at GitHub by using http://viewdns.info/dnsrecord/?domain=myetherwallet.com - last two A record IPs are owned by GitHub for their custom domain hosting.
  • -
  • For generating wallets, you can download the source code. See #5 above.
  • -
  • Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.
  • -
  • Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.
  • -
  • If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks!
  • -
-
-
- - - - - - - - - - -
- - - -
- -

Bulk Generate Wallets

- - -
-
-

Number of Wallets To Generate

- -
-
-

Generate Wallets

- Generate Wallets -
-
- - - -
- -
- -
-
-

Success! Your wallets have been generated.

- -
**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.
-
- -
- - - - - - - - - - - - - -
Address Identicon AddressPrivate Key (unencrypted)
-
-
- - - -
-
- -
-
- - PRINT -
-
- - DOWNLOAD -
-
- - DOWNLOAD -
-
- - DOWNLOAD -
-
- -
-
- - -
- - - - - - - -
- -
- -
-
-

- Ether Wallet -

- -

- An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions. - Created by kvhnuke & tayvano. -

- -

- Donations greatly appreciated: 0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8 -

- -

- URLs: - www.MyEtherWallet.com · - kvhnuke.github.io/etherwallet/ -

- -

- Github: - MyEtherWallet.com & MyEtherWallet CX -

- -

Contact: - Email · - Twitter · - kvhnuke on reddit · - tayvano (insom) on reddit -

- -

- Thank you to our translators: - - - - - -

- -

Disclaimer

- -

ETH Block#: {{ethBlockNumber}} · ETC Block#: {{etcBlockNumber}}

- -
- - - - - - -
- - - - diff --git a/chrome-extension/js/etherwallet-master-min.js b/chrome-extension/js/etherwallet-master-min.js index 64819fb61a..83491cbcaa 100644 --- a/chrome-extension/js/etherwallet-master-min.js +++ b/chrome-extension/js/etherwallet-master-min.js @@ -1,18319 +1,18846 @@ (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 0) ajaxReq.queuePost(); - }); -} -ajaxReq.post = function(data, callback) { - this.pendingPosts.push({ - data: data, - callback: callback - }); - if (this.pendingPosts.length == 1) this.queuePost(); -} -ajaxReq.getETHvalue = function(callback) { - var prefix = "eth"; - this.http.get(this.COINMARKETCAPAPI + prefix).then(function(data) { - data = data['data']['price']; - var priceObj = { - usd: data['usd'].toFixed(6), - eur: data['eur'].toFixed(6), - btc: data['btc'].toFixed(6) - }; - callback(priceObj); - }); -} +'use strict'; +var http; +var ajaxReq = function() {} +ajaxReq.http = null; +ajaxReq.postSerializer = null; +ajaxReq.SERVERURL = "https://rpc.myetherwallet.com:8443/api.mew"; +ajaxReq.COINMARKETCAPAPI = "https://coinmarketcap-nexuist.rhcloud.com/api/"; +ajaxReq.pendingPosts = []; +ajaxReq.config = { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' + } +}; +ajaxReq.getCurrentBlock = function(callback) { + this.post({ + currentBlock: '', + isClassic: false + }, callback); +} +ajaxReq.getCurrentClassicBlock = function(callback) { + this.post({ + currentBlock: '', + isClassic: true + }, callback); +} +ajaxReq.getBalance = function(addr, callback) { + this.post({ + balance: addr, + isClassic: false + }, callback); +} +ajaxReq.getClassicBalance = function(addr, callback) { + this.post({ + balance: addr, + isClassic: true + }, callback); +} +ajaxReq.getTransactionData = function(addr, callback) { + this.post({ + txdata: addr, + isClassic: false + }, callback); +} +ajaxReq.getClassicTransactionData = function(addr, callback) { + this.post({ + txdata: addr, + isClassic: true + }, callback); +} +ajaxReq.sendRawTx = function(rawTx, callback) { + this.post({ + rawtx: rawTx, + isClassic: false + }, callback); +} +ajaxReq.sendClassicRawTx = function(rawTx, callback) { + this.post({ + rawtx: rawTx, + isClassic: true + }, callback); +} +ajaxReq.getEstimatedGas = function(txobj, callback) { + this.post({ + estimatedGas: txobj, + isClassic: false + }, callback); +} +ajaxReq.getClassicEstimatedGas = function(txobj, callback) { + this.post({ + estimatedGas: txobj, + isClassic: true + }, callback); +} +ajaxReq.getEthCall = function(txobj, callback) { + this.post({ + ethCall: txobj, + isClassic: false + }, callback); +} +ajaxReq.getClassicEthCall = function(txobj, callback) { + this.post({ + ethCall: txobj, + isClassic: true + }, callback); +} +ajaxReq.queuePost = function() { + var data = this.pendingPosts[0].data; + var callback = this.pendingPosts[0].callback; + this.http.post(this.SERVERURL, this.postSerializer(data), this.config).then(function(data) { + callback(data.data); + ajaxReq.pendingPosts.splice(0, 1); + if (ajaxReq.pendingPosts.length > 0) ajaxReq.queuePost(); + }); +} +ajaxReq.post = function(data, callback) { + this.pendingPosts.push({ + data: data, + callback: callback + }); + if (this.pendingPosts.length == 1) this.queuePost(); +} +ajaxReq.getETHvalue = function(callback) { + var prefix = "eth"; + this.http.get(this.COINMARKETCAPAPI + prefix).then(function(data) { + data = data['data']['price']; + var priceObj = { + usd: data['usd'].toFixed(6), + eur: data['eur'].toFixed(6), + btc: data['btc'].toFixed(6) + }; + callback(priceObj); + }); +} module.exports = ajaxReq; },{}],2:[function(require,module,exports){ -'use strict'; -var addWalletCtrl = function($scope, $sce) { - $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showBtnAddWallet = $scope.showAddWallet = $scope.requireFPass = $scope.requirePPass = $scope.showPassTxt = false; - $scope.nickNames = []; - $scope.filePassword = $scope.fileContent = ""; - $scope.wallet = null; - $scope.addAccount = { - address: "", - nickName: "", - encStr: "", - password: "" - }; - $scope.onPrivKeyChange = function() { - $scope.addWalletStats = ""; - $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; - $scope.showBtnUnlock = $scope.manualprivkey.length == 64; - }; - $scope.onPrivKeyPassChange = function() { - $scope.showBtnUnlock = $scope.privPassword.length > 6; - }; - $scope.showContent = function($fileContent) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); - try { - $scope.requireFPass = Wallet.walletRequirePass($fileContent); - $scope.showBtnUnlock = !$scope.requireFPass; - $scope.fileContent = $fileContent; - } catch (e) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - }; - $scope.openFileDialog = function($fileContent) { - $scope.addWalletStats = ""; - document.getElementById('fselector').click(); - }; - $scope.onFilePassChange = function() { - $scope.showBtnUnlock = $scope.filePassword.length > 6; - }; - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.addWalletStats = ""; - try { - if ($scope.walletType == "pasteprivkey" && $scope.requirePPass) { - $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); - $scope.addAccount.password = $scope.privPassword; - } else if ($scope.walletType == "pasteprivkey" && !$scope.requirePPass) { - $scope.wallet = new Wallet($scope.manualprivkey); - $scope.addAccount.password = ''; - } else if ($scope.walletType == "fileupload") { - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); - $scope.addAccount.password = $scope.filePassword; - } - $scope.addAccount.address = $scope.wallet.getAddressString(); - } catch (e) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + e)); - } - if ($scope.wallet != null) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - $scope.showAddWallet = true; - $scope.showPassTxt = $scope.addAccount.password == ''; - $scope.setBalance(); - } - }; - $scope.setNickNames = function() { - cxFuncs.getAllNickNames(function(nicks) { - $scope.nickNames = nicks; - }); - }; - $scope.setNickNames(); - $scope.newWalletChange = function(varStatus, shwbtn) { - if ($scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && $scope.addAccount.password.length > 8) $scope[shwbtn] = true; - else $scope[shwbtn] = false; - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope[varStatus] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - else $scope[varStatus] = ""; - } - $scope.watchOnlyChange = function() { - if ($scope.addAccount.address != "" && $scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.showBtnAdd = true; - else $scope.showBtnAdd = false; - if ($scope.addAccount.address != "" && !ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - else if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - else $scope.watchOnlyStatus = ""; - } - $scope.addWatchOnly = function() { - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } - cxFuncs.addWatchOnlyAddress($scope.addAccount.address, $scope.addAccount.nickName, function() { - if (chrome.runtime.lastError) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - } else { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); - $scope.setNickNames(); - } - $scope.$apply(); - }); - } - $scope.isStrongPass = function(pass) { - return pass.length > 3; - } - $scope.$watch('walletType', function() { - $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showAddWallet = false; - $scope.addNewNick = $scope.addNewPass = ""; - $scope.addWalletStats = ""; - }); - $scope.addWalletToStorage = function(status) { - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } else if($scope.nickNames.indexOf(ethUtil.toChecksumAddress($scope.addAccount.address)) !== -1){ - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[16])); - return; - } - cxFuncs.addWalletToStorage($scope.addAccount.address, $scope.addAccount.encStr, $scope.addAccount.nickName, function() { - if (chrome.runtime.lastError) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); - $scope.setNickNames(); - } - $scope.$apply(); - }); - } - $scope.importWalletToStorage = function() { - var wStr = $scope.wallet.toV3($scope.addAccount.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - }); - $scope.addAccount.encStr = JSON.stringify(wStr); - $scope.addWalletToStorage('addStatus'); - } - $scope.generateWallet = function() { - var wallet = Wallet.generate(false); - var wStr = wallet.toV3($scope.addAccount.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - }); - $scope.addAccount.encStr = JSON.stringify(wStr); - $scope.addAccount.address = wallet.getAddressString(); - $scope.addWalletToStorage('addWalletStats'); - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - } -}; -module.exports = addWalletCtrl; +'use strict'; +var addWalletCtrl = function($scope, $sce) { + $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showBtnAddWallet = $scope.showAddWallet = $scope.requireFPass = $scope.requirePPass = $scope.showPassTxt = false; + $scope.nickNames = []; + $scope.filePassword = $scope.fileContent = ""; + $scope.wallet = null; + $scope.addAccount = { + address: "", + nickName: "", + encStr: "", + password: "" + }; + $scope.onPrivKeyChange = function() { + $scope.addWalletStats = ""; + $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; + $scope.showBtnUnlock = $scope.manualprivkey.length == 64; + }; + $scope.onPrivKeyPassChange = function() { + $scope.showBtnUnlock = $scope.privPassword.length > 6; + }; + $scope.showContent = function($fileContent) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); + try { + $scope.requireFPass = Wallet.walletRequirePass($fileContent); + $scope.showBtnUnlock = !$scope.requireFPass; + $scope.fileContent = $fileContent; + } catch (e) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + }; + $scope.openFileDialog = function($fileContent) { + $scope.addWalletStats = ""; + document.getElementById('fselector').click(); + }; + $scope.onFilePassChange = function() { + $scope.showBtnUnlock = $scope.filePassword.length > 6; + }; + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.addWalletStats = ""; + try { + if ($scope.walletType == "pasteprivkey" && $scope.requirePPass) { + $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); + $scope.addAccount.password = $scope.privPassword; + } else if ($scope.walletType == "pasteprivkey" && !$scope.requirePPass) { + $scope.wallet = new Wallet($scope.manualprivkey); + $scope.addAccount.password = ''; + } else if ($scope.walletType == "fileupload") { + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); + $scope.addAccount.password = $scope.filePassword; + } + $scope.addAccount.address = $scope.wallet.getAddressString(); + } catch (e) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + e)); + } + if ($scope.wallet != null) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + $scope.showAddWallet = true; + $scope.showPassTxt = $scope.addAccount.password == ''; + $scope.setBalance(); + } + }; + $scope.setNickNames = function() { + cxFuncs.getAllNickNames(function(nicks) { + $scope.nickNames = nicks; + }); + }; + $scope.setNickNames(); + $scope.newWalletChange = function(varStatus, shwbtn) { + if ($scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && $scope.addAccount.password.length > 8) $scope[shwbtn] = true; + else $scope[shwbtn] = false; + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope[varStatus] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + else $scope[varStatus] = ""; + } + $scope.watchOnlyChange = function() { + if ($scope.addAccount.address != "" && $scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.showBtnAdd = true; + else $scope.showBtnAdd = false; + if ($scope.addAccount.address != "" && !ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + else if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + else $scope.watchOnlyStatus = ""; + } + $scope.addWatchOnly = function() { + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } + cxFuncs.addWatchOnlyAddress($scope.addAccount.address, $scope.addAccount.nickName, function() { + if (chrome.runtime.lastError) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + } else { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); + $scope.setNickNames(); + } + $scope.$apply(); + }); + } + $scope.isStrongPass = function(pass) { + return pass.length > 3; + } + $scope.$watch('walletType', function() { + $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showAddWallet = false; + $scope.addNewNick = $scope.addNewPass = ""; + $scope.addWalletStats = ""; + }); + $scope.addWalletToStorage = function(status) { + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } else if($scope.nickNames.indexOf(ethUtil.toChecksumAddress($scope.addAccount.address)) !== -1){ + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[16])); + return; + } + cxFuncs.addWalletToStorage($scope.addAccount.address, $scope.addAccount.encStr, $scope.addAccount.nickName, function() { + if (chrome.runtime.lastError) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); + $scope.setNickNames(); + } + $scope.$apply(); + }); + } + $scope.importWalletToStorage = function() { + var wStr = $scope.wallet.toV3($scope.addAccount.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + }); + $scope.addAccount.encStr = JSON.stringify(wStr); + $scope.addWalletToStorage('addStatus'); + } + $scope.generateWallet = function() { + var wallet = Wallet.generate(false); + var wStr = wallet.toV3($scope.addAccount.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + }); + $scope.addAccount.encStr = JSON.stringify(wStr); + $scope.addAccount.address = wallet.getAddressString(); + $scope.addWalletToStorage('addWalletStats'); + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + } +}; +module.exports = addWalletCtrl; },{}],3:[function(require,module,exports){ -'use strict'; -var cxDecryptWalletCtrl = function($scope, $sce, walletService) { - $scope.allWallets = []; - $scope.selectedWallet = $scope.password = ""; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance(); - $scope.$apply(); - }); - }; - $scope.updateBalance = function() { - for (var i = 0; i < $scope.allWallets.length; i++) { - $scope.setBalance($scope.allWallets[i].addr,i); - } - }; - $scope.setBalance = function(address,id) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope.allWallets[id].balance = data.msg; - } else { - $scope.allWallets[id].balance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - }; - $scope.setAllWallets(); - $scope.getPrivFromAdd = function(){ - if ($scope.selectedWallet=="") throw globalFuncs.errorMsgs[5]; - for (var i = 0; i < $scope.allWallets.length; i++) { - if( $scope.allWallets[i].addr==$scope.selectedWallet) - return $scope.allWallets[i].priv; - } - throw globalFuncs.errorMsgs[14]; - } - $scope.decryptWallet = function() { - $scope.wallet=null; - $scope.decryptStatus=""; - try { - var priv = $scope.getPrivFromAdd(); - if (priv.length==132) - $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); - else - $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); - walletService.password = $scope.password; - walletService.wallet = $scope.wallet; - } catch (e) { - $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); - } - if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - }; -}; +'use strict'; +var cxDecryptWalletCtrl = function($scope, $sce, walletService) { + $scope.allWallets = []; + $scope.selectedWallet = $scope.password = ""; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance(); + $scope.$apply(); + }); + }; + $scope.updateBalance = function() { + for (var i = 0; i < $scope.allWallets.length; i++) { + $scope.setBalance($scope.allWallets[i].addr,i); + } + }; + $scope.setBalance = function(address,id) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope.allWallets[id].balance = data.msg; + } else { + $scope.allWallets[id].balance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + }; + $scope.setAllWallets(); + $scope.getPrivFromAdd = function(){ + if ($scope.selectedWallet=="") throw globalFuncs.errorMsgs[5]; + for (var i = 0; i < $scope.allWallets.length; i++) { + if( $scope.allWallets[i].addr==$scope.selectedWallet) + return $scope.allWallets[i].priv; + } + throw globalFuncs.errorMsgs[14]; + } + $scope.decryptWallet = function() { + $scope.wallet=null; + $scope.decryptStatus=""; + try { + var priv = $scope.getPrivFromAdd(); + if (priv.length==132) + $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); + else + $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); + walletService.password = $scope.password; + walletService.wallet = $scope.wallet; + } catch (e) { + $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); + } + if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + }; +}; module.exports = cxDecryptWalletCtrl; },{}],4:[function(require,module,exports){ -'use strict'; -var mainPopCtrl = function($scope, $sce) { - $scope.allWallets = []; - $scope.allWatchOnly = []; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - }); - cxFuncs.getWatchOnlyArr(function(wlts) { - $scope.allWatchOnly = wlts; - $scope.updateBalance('allWatchOnly'); - $scope.$apply(); - }); - }; - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - } - }); - }; - $scope.setAllWallets(); -}; -module.exports = mainPopCtrl; +'use strict'; +var mainPopCtrl = function($scope, $sce) { + $scope.allWallets = []; + $scope.allWatchOnly = []; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + }); + cxFuncs.getWatchOnlyArr(function(wlts) { + $scope.allWatchOnly = wlts; + $scope.updateBalance('allWatchOnly'); + $scope.$apply(); + }); + }; + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + } + }); + }; + $scope.setAllWallets(); +}; +module.exports = mainPopCtrl; },{}],5:[function(require,module,exports){ -'use strict'; -var myWalletsCtrl = function($scope, $sce) { - $scope.editModal = new Modal(document.getElementById('editWallet')); - $scope.viewModal = new Modal(document.getElementById('viewWalletDetails')); - $scope.removeModal = new Modal(document.getElementById('removeWallet')); - $scope.allWallets = []; - $scope.allWatchOnly = []; - $scope.nickNames = []; - $scope.fiatVal = { - usd: 0, - eur: 0, - btc: 0 - }; - $scope.viewWallet = {}; - $scope.setNickNames = function() { - cxFuncs.getAllNickNames(function(nicks) { - $scope.nickNames = nicks; - }); - }; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - $scope.setTokens('allWallets'); - }); - cxFuncs.getWatchOnlyArr(function(wlts) { - $scope.allWatchOnly = wlts; - $scope.updateBalance('allWatchOnly'); - $scope.setTokens('allWatchOnly'); - }); - }; - $scope.setTokens = function(varWal) { - for(var j=0;j<$scope[varWal].length; j++){ - $scope.tokens = Token.popTokens; - $scope[varWal][j].tokens = []; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope[varWal][j].tokens.push(new Token($scope.tokens[i].address, $scope[varWal][j].addr, $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope[varWal][j].tokens.push(new Token(storedTokens[i].contractAddress, $scope[varWal][j].addr, globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - } - } - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - $scope[varWal][id].usd = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.usd); - $scope[varWal][id].eur = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.eur); - $scope[varWal][id].btc = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.btc); - } - }); - }; - $scope.setViewWalletObj = function(val, type) { - var vtype = 'allWallets'; - if (type == 'watchOnly') vtype = 'allWatchOnly' - $scope.viewWallet = { - nick: $scope[vtype][val].nick, - addr: $scope[vtype][val].addr, - id: val, - type: type - } - } - $scope.editMWallet = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.editModal.open(); - } - $scope.editSave = function() { - if ($scope.nickNames.indexOf($scope.viewWallet.nick) !== -1) { - $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } else { - cxFuncs.editNickName($scope.viewWallet.addr, $scope.viewWallet.nick, function() { - if (chrome.runtime.lastError) $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - else { - $scope.setAllWallets(); - $scope.setNickNames(); - $scope.editModal.close(); - } - }); - } - } - $scope.viewMWallet = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.viewModal.open(); - } - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.viewStatus = ""; - try { - var priv = $scope.allWallets[$scope.viewWallet.id].priv; - if (priv.length==132) - $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); - else - $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); - $scope.viewModal.close(); - $scope.setWalletInfo(); - $scope.password = ""; - } catch (e) { - $scope.viewStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); - } - }; - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } - $scope.resetWallet = function() { - $scope.wallet = null; - $scope.blob = $scope.blobEnc = $scope.password = ""; - } - $scope.setWalletInfo = function() { - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - if ($scope.password != '') { - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - } - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - } - $scope.deleteWalletMsg = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.removeModal.open(); - } - $scope.deleteWallet = function() { - cxFuncs.deleteAccount($scope.viewWallet.addr, function() { - $scope.setAllWallets(); - $scope.setNickNames(); - $scope.removeModal.close(); - }); - } - ajaxReq.getETHvalue(function(data) { - $scope.fiatVal.usd = data.usd; - $scope.fiatVal.eur = data.eur; - $scope.fiatVal.btc = data.btc; - $scope.setAllWallets(); - }); - $scope.setNickNames(); -}; -module.exports = myWalletsCtrl; +'use strict'; +var myWalletsCtrl = function($scope, $sce) { + $scope.editModal = new Modal(document.getElementById('editWallet')); + $scope.viewModal = new Modal(document.getElementById('viewWalletDetails')); + $scope.removeModal = new Modal(document.getElementById('removeWallet')); + $scope.allWallets = []; + $scope.allWatchOnly = []; + $scope.nickNames = []; + $scope.fiatVal = { + usd: 0, + eur: 0, + btc: 0 + }; + $scope.viewWallet = {}; + $scope.setNickNames = function() { + cxFuncs.getAllNickNames(function(nicks) { + $scope.nickNames = nicks; + }); + }; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + $scope.setTokens('allWallets'); + }); + cxFuncs.getWatchOnlyArr(function(wlts) { + $scope.allWatchOnly = wlts; + $scope.updateBalance('allWatchOnly'); + $scope.setTokens('allWatchOnly'); + }); + }; + $scope.setTokens = function(varWal) { + for(var j=0;j<$scope[varWal].length; j++){ + $scope.tokens = Token.popTokens; + $scope[varWal][j].tokens = []; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope[varWal][j].tokens.push(new Token($scope.tokens[i].address, $scope[varWal][j].addr, $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope[varWal][j].tokens.push(new Token(storedTokens[i].contractAddress, $scope[varWal][j].addr, globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + } + } + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + $scope[varWal][id].usd = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.usd); + $scope[varWal][id].eur = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.eur); + $scope[varWal][id].btc = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.btc); + } + }); + }; + $scope.setViewWalletObj = function(val, type) { + var vtype = 'allWallets'; + if (type == 'watchOnly') vtype = 'allWatchOnly' + $scope.viewWallet = { + nick: $scope[vtype][val].nick, + addr: $scope[vtype][val].addr, + id: val, + type: type + } + } + $scope.editMWallet = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.editModal.open(); + } + $scope.editSave = function() { + if ($scope.nickNames.indexOf($scope.viewWallet.nick) !== -1) { + $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } else { + cxFuncs.editNickName($scope.viewWallet.addr, $scope.viewWallet.nick, function() { + if (chrome.runtime.lastError) $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + else { + $scope.setAllWallets(); + $scope.setNickNames(); + $scope.editModal.close(); + } + }); + } + } + $scope.viewMWallet = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.viewModal.open(); + } + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.viewStatus = ""; + try { + var priv = $scope.allWallets[$scope.viewWallet.id].priv; + if (priv.length==132) + $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); + else + $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); + $scope.viewModal.close(); + $scope.setWalletInfo(); + $scope.password = ""; + } catch (e) { + $scope.viewStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); + } + }; + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } + $scope.resetWallet = function() { + $scope.wallet = null; + $scope.blob = $scope.blobEnc = $scope.password = ""; + } + $scope.setWalletInfo = function() { + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + if ($scope.password != '') { + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + } + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + } + $scope.deleteWalletMsg = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.removeModal.open(); + } + $scope.deleteWallet = function() { + cxFuncs.deleteAccount($scope.viewWallet.addr, function() { + $scope.setAllWallets(); + $scope.setNickNames(); + $scope.removeModal.close(); + }); + } + ajaxReq.getETHvalue(function(data) { + $scope.fiatVal.usd = data.usd; + $scope.fiatVal.eur = data.eur; + $scope.fiatVal.btc = data.btc; + $scope.setAllWallets(); + }); + $scope.setNickNames(); +}; +module.exports = myWalletsCtrl; },{}],6:[function(require,module,exports){ -'use strict'; -var quickSendCtrl = function($scope, $sce) { - $scope.allWallets = []; - $scope.selectedWallet = ""; - $scope.showConfirm = false; - $scope.tx = { - gasLimit: globalFuncs.defaultTxGasLimit, - data: "", - to: "", - unit: "ether", - value: "", - nonce: null, - gasPrice: null, - donate: false - } - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - }); - }; - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - } - }); - }; - $scope.validateAddress = function() { - if (ethFuncs.validateEtherAddress($scope.tx.to)) { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.transferAllBalance = function() { - $scope.wallet = {}; - $scope.wallet.getAddressString = function() { - return $scope.allWallets[$scope.selectedWallet].addr; - } - uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { - if (!resp.isError) { - $scope.tx.unit = resp.unit; - $scope.tx.value = resp.value; - } else { - $scope.validateTxStatus = $sce.trustAsHtml(resp.error); - } - }); - } - $scope.prepTX = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; - $scope.showConfirm = true; - } catch (e) { - $scope.prepTXStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.unlockAndSend = function() { - try { - $scope.decryptWallet(); - var txData = uiFuncs.getTxData($scope); - uiFuncs.generateTx(txData, function(rawTx) { - if (!rawTx.isError) { - uiFuncs.sendTx(rawTx.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io ")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } catch (e) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.validateTxStatus = ""; - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.allWallets[$scope.selectedWallet].priv, $scope.password); - }; - $scope.setAllWallets(); -}; +'use strict'; +var quickSendCtrl = function($scope, $sce) { + $scope.allWallets = []; + $scope.selectedWallet = ""; + $scope.showConfirm = false; + $scope.tx = { + gasLimit: globalFuncs.defaultTxGasLimit, + data: "", + to: "", + unit: "ether", + value: "", + nonce: null, + gasPrice: null, + donate: false + } + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + }); + }; + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + } + }); + }; + $scope.validateAddress = function() { + if (ethFuncs.validateEtherAddress($scope.tx.to)) { + $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.transferAllBalance = function() { + $scope.wallet = {}; + $scope.wallet.getAddressString = function() { + return $scope.allWallets[$scope.selectedWallet].addr; + } + uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { + if (!resp.isError) { + $scope.tx.unit = resp.unit; + $scope.tx.value = resp.value; + } else { + $scope.validateTxStatus = $sce.trustAsHtml(resp.error); + } + }); + } + $scope.prepTX = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; + $scope.showConfirm = true; + } catch (e) { + $scope.prepTXStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.unlockAndSend = function() { + try { + $scope.decryptWallet(); + var txData = uiFuncs.getTxData($scope); + uiFuncs.generateTx(txData, function(rawTx) { + if (!rawTx.isError) { + uiFuncs.sendTx(rawTx.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io ")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } catch (e) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.validateTxStatus = ""; + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.allWallets[$scope.selectedWallet].priv, $scope.password); + }; + $scope.setAllWallets(); +}; module.exports = quickSendCtrl; },{}],7:[function(require,module,exports){ -'use strict'; -var bulkGenCtrl = function($scope) { - $scope.showWallets = false; - $scope.genWallets = function(){ - if($scope.amount==''||$scope.amount != parseInt($scope.amount, 10)) alert(globalFuncs.errorMsgs[0]); - else { - $scope.wallets = []; - var csv = ''; var txt = ''; - $scope.jsonWallets = []; - for(var i=0;i<$scope.amount;i++){ - var tWallet = Wallet.generate(false); - csv += tWallet.getChecksumAddressString() + ',' + tWallet.getPrivateKeyString() + '\n'; - txt += tWallet.getChecksumAddressString() + '\t' + tWallet.getPrivateKeyString() + '\n'; - $scope.jsonWallets.push({ - address: tWallet.getChecksumAddressString(), - private: tWallet.getPrivateKeyString() - }); - $scope.wallets.push(tWallet); - } - $scope.showWallets = true; - $scope.bJSON = globalFuncs.getBlob("text/json;charset=UTF-8",JSON.stringify($scope.jsonWallets)); - $scope.bTXT = globalFuncs.getBlob("text/plain;charset=UTF-8",txt); - $scope.bCSV = globalFuncs.getBlob("text/csv;charset=UTF-8",csv); - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify($scope.jsonWallets)); - } -}; +'use strict'; +var bulkGenCtrl = function($scope) { + $scope.showWallets = false; + $scope.genWallets = function(){ + if($scope.amount==''||$scope.amount != parseInt($scope.amount, 10)) alert(globalFuncs.errorMsgs[0]); + else { + $scope.wallets = []; + var csv = ''; var txt = ''; + $scope.jsonWallets = []; + for(var i=0;i<$scope.amount;i++){ + var tWallet = Wallet.generate(false); + csv += tWallet.getChecksumAddressString() + ',' + tWallet.getPrivateKeyString() + '\n'; + txt += tWallet.getChecksumAddressString() + '\t' + tWallet.getPrivateKeyString() + '\n'; + $scope.jsonWallets.push({ + address: tWallet.getChecksumAddressString(), + private: tWallet.getPrivateKeyString() + }); + $scope.wallets.push(tWallet); + } + $scope.showWallets = true; + $scope.bJSON = globalFuncs.getBlob("text/json;charset=UTF-8",JSON.stringify($scope.jsonWallets)); + $scope.bTXT = globalFuncs.getBlob("text/plain;charset=UTF-8",txt); + $scope.bCSV = globalFuncs.getBlob("text/csv;charset=UTF-8",csv); + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify($scope.jsonWallets)); + } +}; module.exports = bulkGenCtrl; },{}],8:[function(require,module,exports){ -'use strict'; -var decryptWalletCtrl = function($scope, $sce, walletService) { - $scope.walletType = ""; - $scope.requireFPass = $scope.requirePPass = $scope.showFDecrypt = $scope.showPDecrypt = false; - $scope.filePassword = ""; - $scope.fileContent = ""; - $scope.Validator = Validator; - $scope.showContent = function($fileContent) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); - try { - $scope.requireFPass = Wallet.walletRequirePass($fileContent); - $scope.showFDecrypt = !$scope.requireFPass; - $scope.fileContent = $fileContent; - } catch (e) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - }; - $scope.openFileDialog = function($fileContent) { - document.getElementById('fselector').click(); - }; - $scope.onFilePassChange = function() { - $scope.showFDecrypt = $scope.filePassword.length > 3; - }; - $scope.onPrivKeyChange = function() { - $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; - $scope.showPDecrypt = $scope.manualprivkey.length == 64; - }; - $scope.onPrivKeyPassChange = function() { - $scope.showPDecrypt = $scope.privPassword.length > 6; - }; - $scope.decryptWallet = function() { - $scope.wallet=null; - $scope.decryptStatus=""; - try { - if ($scope.showPDecrypt && $scope.requirePPass) { - $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); - walletService.password = $scope.privPassword; - } else if ($scope.showPDecrypt && !$scope.requirePPass) { - $scope.wallet = new Wallet($scope.manualprivkey); - walletService.password = ''; - } else if ($scope.showFDecrypt) { - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); - walletService.password = $scope.filePassword; - } - walletService.wallet = $scope.wallet; - } catch (e) { - $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6]+e)); - } - if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - - }; -}; -module.exports = decryptWalletCtrl; +'use strict'; +var decryptWalletCtrl = function($scope, $sce, walletService) { + $scope.walletType = ""; + $scope.requireFPass = $scope.requirePPass = $scope.showFDecrypt = $scope.showPDecrypt = false; + $scope.filePassword = ""; + $scope.fileContent = ""; + $scope.Validator = Validator; + $scope.showContent = function($fileContent) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); + try { + $scope.requireFPass = Wallet.walletRequirePass($fileContent); + $scope.showFDecrypt = !$scope.requireFPass; + $scope.fileContent = $fileContent; + } catch (e) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + }; + $scope.openFileDialog = function($fileContent) { + document.getElementById('fselector').click(); + }; + $scope.onFilePassChange = function() { + $scope.showFDecrypt = $scope.filePassword.length > 3; + }; + $scope.onPrivKeyChange = function() { + $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; + $scope.showPDecrypt = $scope.manualprivkey.length == 64; + }; + $scope.onPrivKeyPassChange = function() { + $scope.showPDecrypt = $scope.privPassword.length > 6; + }; + $scope.decryptWallet = function() { + $scope.wallet=null; + $scope.decryptStatus=""; + try { + if ($scope.showPDecrypt && $scope.requirePPass) { + $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); + walletService.password = $scope.privPassword; + } else if ($scope.showPDecrypt && !$scope.requirePPass) { + $scope.wallet = new Wallet($scope.manualprivkey); + walletService.password = ''; + } else if ($scope.showFDecrypt) { + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); + walletService.password = $scope.filePassword; + } + walletService.wallet = $scope.wallet; + } catch (e) { + $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6]+e)); + } + if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + + }; +}; +module.exports = decryptWalletCtrl; },{}],9:[function(require,module,exports){ -'use strict'; -var deployContractCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - $scope.tx = { - gasLimit: '', - data: '', - to: '', - unit: "ether", - value: 0, - nonce: null, - gasPrice: null - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - }); - $scope.generateTx = function() { - try { - if ($scope.wallet == null) throw globalFuncs.errorMsgs[3]; - else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; - else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - $scope.tx.data = ethFuncs.sanitizeHex($scope.tx.data); - ajaxReq.getTransactionData($scope.wallet.getAddressString(), function(data) { - if (data.error) throw data.msg; - data = data.data; - $scope.tx.to = '0xCONTRACT'; - $scope.tx.contractAddr = ethFuncs.getDeteministicContractAddress($scope.wallet.getAddressString(), data.nonce); - var txData = uiFuncs.getTxData($scope); - uiFuncs.generateTx(txData, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - }); - } catch (e) { - $scope.deployContractStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & Contract Address "+$scope.tx.contractAddr+"")); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } -} +'use strict'; +var deployContractCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + $scope.tx = { + gasLimit: '', + data: '', + to: '', + unit: "ether", + value: 0, + nonce: null, + gasPrice: null + } + $scope.showRaw = false; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + }); + $scope.$watch('tx', function(newValue, oldValue) { + $scope.showRaw = false; + }, true); + $scope.generateTx = function() { + try { + if ($scope.wallet == null) throw globalFuncs.errorMsgs[3]; + else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; + else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + $scope.tx.data = ethFuncs.sanitizeHex($scope.tx.data); + ajaxReq.getTransactionData($scope.wallet.getAddressString(), function(data) { + if (data.error) throw data.msg; + data = data.data; + $scope.tx.to = '0xCONTRACT'; + $scope.tx.contractAddr = ethFuncs.getDeteministicContractAddress($scope.wallet.getAddressString(), data.nonce); + var txData = uiFuncs.getTxData($scope); + uiFuncs.generateTx(txData, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + $scope.showRaw = true; + } else { + $scope.showRaw = false; + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + }); + } catch (e) { + $scope.deployContractStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & Contract Address "+$scope.tx.contractAddr+"")); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } +} module.exports = deployContractCtrl; },{}],10:[function(require,module,exports){ -'use strict'; -var digixCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - walletService.wallet = null; - walletService.password = ''; - $scope.showSend = true; - $scope.showRaw = false; - $scope.digixContract = "0xf0160428a8552ac9bb7e050d90eeade4ddd52843"; - $scope.digixUserInfo = "0x1959a002"; - $scope.digixClaim = "0x4e71d92d"; - $scope.tx = { - gasLimit: globalFuncs.digixClaimTxGasLimit, - data: $scope.digixClaim, - to: $scope.digixContract, - unit: "ether", - value: 0, - nonce: null, - gasPrice: null, - donate: false - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - }); - $scope.validateAddress = function(address, status) { - if (ethFuncs.validateEtherAddress(address)) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - var userInfo = ethFuncs.getDataObj($scope.digixContract, $scope.digixUserInfo, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getEthCall(userInfo, function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - var digixObj = $scope.processDigixInfo(data.data); - $scope.centsTotal = digixObj.centstotal; - $scope.weiTotal = digixObj.weitotal; - $scope.shareTotal = digixObj.share; - $scope.badgesTotal = digixObj.badges; - $scope.claimedTotal = digixObj.claimed.toString(); - } - }); - } - $scope.processDigixInfo = function(data) { - data = data.replace('0x', ''); - var values = data.match(/.{1,64}/g); - var digixObj = { - centstotal: new BigNumber('0x' + values[0]).div(100).toString(), - weitotal: new BigNumber('0x' + values[1]).div(etherUnits.getValueOfUnit('ether')).toString(), - share: new BigNumber('0x' + values[2]).div(etherUnits.getValueOfUnit('gwei')).toString(), - badges: new BigNumber('0x' + values[3]).toString(), - claimed: new BigNumber('0x' + values[4]).toString() == '1' - }; - return digixObj; - } - $scope.generateTx = function(){ - uiFuncs.generateTx(uiFuncs.getTxData($scope), function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx =rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp){ - if(!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.onDonateClick = function() { - $scope.tokenTx.to = globalFuncs.donateAddress; - $scope.tokenTx.value = "0.5"; - $scope.tx.donate = true; - $scope.validateAddress(); - } -}; -module.exports = digixCtrl; +'use strict'; +var digixCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + walletService.wallet = null; + walletService.password = ''; + $scope.showSend = true; + $scope.showRaw = false; + $scope.digixContract = "0xf0160428a8552ac9bb7e050d90eeade4ddd52843"; + $scope.digixUserInfo = "0x1959a002"; + $scope.digixClaim = "0x4e71d92d"; + $scope.tx = { + gasLimit: globalFuncs.digixClaimTxGasLimit, + data: $scope.digixClaim, + to: $scope.digixContract, + unit: "ether", + value: 0, + nonce: null, + gasPrice: null, + donate: false + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + }); + $scope.validateAddress = function(address, status) { + if (ethFuncs.validateEtherAddress(address)) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + var userInfo = ethFuncs.getDataObj($scope.digixContract, $scope.digixUserInfo, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getEthCall(userInfo, function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + var digixObj = $scope.processDigixInfo(data.data); + $scope.centsTotal = digixObj.centstotal; + $scope.weiTotal = digixObj.weitotal; + $scope.shareTotal = digixObj.share; + $scope.badgesTotal = digixObj.badges; + $scope.claimedTotal = digixObj.claimed.toString(); + } + }); + } + $scope.processDigixInfo = function(data) { + data = data.replace('0x', ''); + var values = data.match(/.{1,64}/g); + var digixObj = { + centstotal: new BigNumber('0x' + values[0]).div(100).toString(), + weitotal: new BigNumber('0x' + values[1]).div(etherUnits.getValueOfUnit('ether')).toString(), + share: new BigNumber('0x' + values[2]).div(etherUnits.getValueOfUnit('gwei')).toString(), + badges: new BigNumber('0x' + values[3]).toString(), + claimed: new BigNumber('0x' + values[4]).toString() == '1' + }; + return digixObj; + } + $scope.generateTx = function(){ + uiFuncs.generateTx(uiFuncs.getTxData($scope), function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx =rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp){ + if(!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.onDonateClick = function() { + $scope.tokenTx.to = globalFuncs.donateAddress; + $scope.tokenTx.value = "0.5"; + $scope.tx.donate = true; + $scope.validateAddress(); + } +}; +module.exports = digixCtrl; },{}],11:[function(require,module,exports){ -'use strict'; -var footerCtrl = function($scope) { - $scope.footerModal = new Modal(document.getElementById('disclaimerModal')); - $scope.ethBlockNumber = "loading"; - $scope.etcBlockNumber = "loading"; - $scope.showBlocks = window.location.protocol=="https:"; - $scope.setBlockNumbers = function(){ - if(!$scope.showBlocks) return; - ajaxReq.getCurrentBlock(function(data){$scope.ethBlockNumber = data.data;}); - ajaxReq.getCurrentClassicBlock(function(data){$scope.etcBlockNumber = data.data;}); - } - $scope.setBlockNumbers(); - setInterval($scope.setBlockNumbers,3000); -}; -module.exports = footerCtrl; +'use strict'; +var footerCtrl = function($scope) { + $scope.footerModal = new Modal(document.getElementById('disclaimerModal')); + $scope.ethBlockNumber = "loading"; + $scope.etcBlockNumber = "loading"; + $scope.showBlocks = window.location.protocol=="https:"; + $scope.setBlockNumbers = function(){ + if(!$scope.showBlocks) return; + ajaxReq.getCurrentBlock(function(data){$scope.ethBlockNumber = data.data;}); + ajaxReq.getCurrentClassicBlock(function(data){$scope.etcBlockNumber = data.data;}); + } + $scope.setBlockNumbers(); + setInterval($scope.setBlockNumbers,3000); +}; +module.exports = footerCtrl; },{}],12:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var sendOfflineTxCtrl = function($scope, $sce, walletService) { - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.showWalletInfo = false; - $scope.gasPriceDec = 0; - $scope.nonceDec = 0; - $scope.tx = { - gasLimit: globalFuncs.defaultTxGasLimit, - from: "", - data: "", - to: "", - unit: "ether", - value: '', - nonce: null, - gasPrice: null, - donate: false - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - }); - $scope.getWalletInfo = function() { - if (ethFuncs.validateEtherAddress($scope.tx.from)) { - ajaxReq.getTransactionData($scope.tx.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - $scope.gasPriceDec = ethFuncs.hexToDecimal(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))); - $scope.nonceDec = ethFuncs.hexToDecimal(data.nonce); - $scope.showWalletInfo = true; - }); - } - } - $scope.$watch('tx', function() { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - }, true); - $scope.validateAddress = function(address, status) { - if (ethFuncs.validateEtherAddress(address)) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.generateTx = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric($scope.gasPriceDec) || parseFloat($scope.gasPriceDec) <= 0) throw globalFuncs.errorMsgs[10]; - else if (!globalFuncs.isNumeric($scope.nonceDec) || parseFloat($scope.nonceDec) < 0) throw globalFuncs.errorMsgs[11]; - else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; - var rawTx = { - nonce: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.nonceDec)), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.gasPriceDec)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.tx.gasLimit)), - to: ethFuncs.sanitizeHex($scope.tx.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei($scope.tx.value, $scope.tx.unit))), - data: ethFuncs.sanitizeHex($scope.tx.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer($scope.wallet.getPrivateKeyString(), 'hex')); - $scope.rawTx = JSON.stringify(rawTx); - $scope.signedTx = '0x' + eTx.serialize().toString('hex'); - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } catch (e) { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.confirmSendTx = function(){ - try { - if($scope.signedTx=="" || !ethFuncs.validateHexString($scope.signedTx)) throw globalFuncs.errorMsgs[12]; - var eTx = new ethUtil.Tx($scope.signedTx); - $scope.tx.to = '0x'+eTx.to.toString('hex'); - $scope.tx.value = eTx.value.toString('hex')!='' ? etherUnits.toEther('0x'+eTx.value.toString('hex'),'wei') : 0; - $scope.tx.unit = 'ether'; - new Modal(document.getElementById('sendTransactionOffline')).open(); - } catch (e){ - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.sendTx = function() { - new Modal(document.getElementById('sendTransactionOffline')).close(); - ajaxReq.sendRawTx($scope.signedTx, function(data) { - if (data.error) { - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.msg)); - } else { - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " " + data.data)); - } - }); - } -}; +'use strict'; +var sendOfflineTxCtrl = function($scope, $sce, walletService) { + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.showWalletInfo = false; + $scope.gasPriceDec = 0; + $scope.nonceDec = 0; + $scope.tx = { + gasLimit: globalFuncs.defaultTxGasLimit, + from: "", + data: "", + to: "", + unit: "ether", + value: '', + nonce: null, + gasPrice: null, + donate: false + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + }); + $scope.getWalletInfo = function() { + if (ethFuncs.validateEtherAddress($scope.tx.from)) { + ajaxReq.getTransactionData($scope.tx.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + $scope.gasPriceDec = ethFuncs.hexToDecimal(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))); + $scope.nonceDec = ethFuncs.hexToDecimal(data.nonce); + $scope.showWalletInfo = true; + }); + } + } + $scope.$watch('tx', function() { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + }, true); + $scope.validateAddress = function(address, status) { + if (ethFuncs.validateEtherAddress(address)) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.generateTx = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric($scope.gasPriceDec) || parseFloat($scope.gasPriceDec) <= 0) throw globalFuncs.errorMsgs[10]; + else if (!globalFuncs.isNumeric($scope.nonceDec) || parseFloat($scope.nonceDec) < 0) throw globalFuncs.errorMsgs[11]; + else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; + var rawTx = { + nonce: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.nonceDec)), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.gasPriceDec)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.tx.gasLimit)), + to: ethFuncs.sanitizeHex($scope.tx.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei($scope.tx.value, $scope.tx.unit))), + data: ethFuncs.sanitizeHex($scope.tx.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer($scope.wallet.getPrivateKeyString(), 'hex')); + $scope.rawTx = JSON.stringify(rawTx); + $scope.signedTx = '0x' + eTx.serialize().toString('hex'); + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } catch (e) { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.confirmSendTx = function(){ + try { + if($scope.signedTx=="" || !ethFuncs.validateHexString($scope.signedTx)) throw globalFuncs.errorMsgs[12]; + var eTx = new ethUtil.Tx($scope.signedTx); + $scope.tx.to = '0x'+eTx.to.toString('hex'); + $scope.tx.value = eTx.value.toString('hex')!='' ? etherUnits.toEther('0x'+eTx.value.toString('hex'),'wei') : 0; + $scope.tx.unit = 'ether'; + new Modal(document.getElementById('sendTransactionOffline')).open(); + } catch (e){ + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.sendTx = function() { + new Modal(document.getElementById('sendTransactionOffline')).close(); + ajaxReq.sendRawTx($scope.signedTx, function(data) { + if (data.error) { + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.msg)); + } else { + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " " + data.data)); + } + }); + } +}; module.exports = sendOfflineTxCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":121}],13:[function(require,module,exports){ -'use strict'; -var sendTxCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - $scope.txInfoModal = new Modal(document.getElementById('txInfoModal')); - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.replayContract = "0xaa1a6e3e6ef20068f7f8d8c835d2d22fd5116444"; - $scope.splitHex = "0x0f2c9329"; - $scope.Validator = Validator; - $scope.tx = { - gasLimit: globalFuncs.urlGet('gaslimit') == null ? globalFuncs.defaultTxGasLimit : globalFuncs.urlGet('gaslimit'), - data: globalFuncs.urlGet('data') == null ? "" : globalFuncs.urlGet('data'), - to: globalFuncs.urlGet('to') == null ? "" : globalFuncs.urlGet('to'), - unit: "ether", - value: globalFuncs.urlGet('value') == null ? "" : globalFuncs.urlGet('value'), - nonce: null, - gasPrice: null, - donate: false, - sendMode: globalFuncs.urlGet('sendMode') == null ? 0 : globalFuncs.urlGet('value') - } - globalFuncs.urlGet('gaslimit') == null ? '' : $scope.showAdvance = true - globalFuncs.urlGet('data') == null ? '' : $scope.showAdvance = true - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - }); - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.$watch('tx', function(newValue, oldValue) { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - if (oldValue.sendMode!=newValue.sendMode && newValue.sendMode == 0) { - $scope.tx.data = ""; - $scope.tx.gasLimit = globalFuncs.defaultTxGasLimit; - } - }, true); - $scope.validateAddress = function() { - return ethFuncs.validateEtherAddress($scope.tx.to) - } - $scope.toggleShowAdvance = function() { - $scope.showAdvance = !$scope.showAdvance; - } - $scope.onDonateClick = function() { - $scope.tx.to = globalFuncs.donateAddress; - $scope.tx.value = "0.5"; - $scope.tx.donate = true; - } - $scope.generateTx = function() { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - return; - } - var txData = uiFuncs.getTxData($scope); - var genFunc = $scope.tx.sendMode == 2 ? 'generateClassicTx' : 'generateTx'; - if ($scope.tx.sendMode != 0) { - txData.to = $scope.replayContract; - txData.gasLimit = 300000; - if ($scope.tx.sendMode == 1) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64); - else if ($scope.tx.sendMode == 2) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64); - } - uiFuncs[genFunc](txData, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - var sendFunc = $scope.tx.sendMode == 2 ? 'sendClassicTx' : 'sendTx'; - uiFuncs[sendFunc]($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & ETC TX via GasTracker.io")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.transferAllBalance = function() { - uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { - if (!resp.isError) { - $scope.tx.unit = resp.unit; - $scope.tx.value = resp.value; - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(resp.error); - } - }); - } -}; -module.exports = sendTxCtrl; +},{"buffer":122}],13:[function(require,module,exports){ +'use strict'; +var sendTxCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + $scope.txInfoModal = new Modal(document.getElementById('txInfoModal')); + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.replayContract = "0xaa1a6e3e6ef20068f7f8d8c835d2d22fd5116444"; + $scope.splitHex = "0x0f2c9329"; + $scope.Validator = Validator; + $scope.tx = { + gasLimit: globalFuncs.urlGet('gaslimit') == null ? globalFuncs.defaultTxGasLimit : globalFuncs.urlGet('gaslimit'), + data: globalFuncs.urlGet('data') == null ? "" : globalFuncs.urlGet('data'), + to: globalFuncs.urlGet('to') == null ? "" : globalFuncs.urlGet('to'), + unit: "ether", + value: globalFuncs.urlGet('value') == null ? "" : globalFuncs.urlGet('value'), + nonce: null, + gasPrice: null, + donate: false, + sendMode: globalFuncs.urlGet('sendMode') == null ? 0 : globalFuncs.urlGet('value') + } + globalFuncs.urlGet('gaslimit') == null ? '' : $scope.showAdvance = true + globalFuncs.urlGet('data') == null ? '' : $scope.showAdvance = true + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + }); + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.$watch('tx', function(newValue, oldValue) { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + if (oldValue.sendMode!=newValue.sendMode && newValue.sendMode == 0) { + $scope.tx.data = ""; + $scope.tx.gasLimit = globalFuncs.defaultTxGasLimit; + } + }, true); + $scope.validateAddress = function() { + return ethFuncs.validateEtherAddress($scope.tx.to) + } + $scope.toggleShowAdvance = function() { + $scope.showAdvance = !$scope.showAdvance; + } + $scope.onDonateClick = function() { + $scope.tx.to = globalFuncs.donateAddress; + $scope.tx.value = "0.5"; + $scope.tx.donate = true; + } + $scope.generateTx = function() { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + return; + } + var txData = uiFuncs.getTxData($scope); + var genFunc = $scope.tx.sendMode == 2 ? 'generateClassicTx' : 'generateTx'; + if ($scope.tx.sendMode != 0) { + txData.to = $scope.replayContract; + txData.gasLimit = 300000; + if ($scope.tx.sendMode == 1) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64); + else if ($scope.tx.sendMode == 2) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64); + } + uiFuncs[genFunc](txData, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + var sendFunc = $scope.tx.sendMode == 2 ? 'sendClassicTx' : 'sendTx'; + uiFuncs[sendFunc]($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & ETC TX via GasTracker.io")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.transferAllBalance = function() { + uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { + if (!resp.isError) { + $scope.tx.unit = resp.unit; + $scope.tx.value = resp.value; + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(resp.error); + } + }); + } +}; +module.exports = sendTxCtrl; },{}],14:[function(require,module,exports){ -'use strict'; -var tabsCtrl = function($scope, globalService, $translate) { - $scope.tabNames = globalService.tabs; - $scope.curLang = "English"; - var hval = window.location.hash; - $scope.setArrowVisibility = function() { - setTimeout(function() { - $scope.showLeftArrow = false; - $scope.showRightArrow = !(document.querySelectorAll(".nav-inner")[0].clientWidth <= document.querySelectorAll(".nav-scroll")[0].clientWidth); - $scope.$apply(); - }, 200); - } - $scope.setArrowVisibility(); - $scope.setTab = function(hval) { - if (hval != "") { - hval = hval.replace("#", ''); - for (var key in $scope.tabNames) { - if ($scope.tabNames[key].url == hval) { - $scope.activeTab = globalService.currentTab = $scope.tabNames[key].id; - break; - } - $scope.activeTab = globalService.currentTab; - } - } else { - $scope.activeTab = globalService.currentTab; - } - } - $scope.setTab(hval); - $scope.tabClick = function(id) { - $scope.activeTab = globalService.currentTab = id; - for (var key in $scope.tabNames) { - if ($scope.tabNames[key].id == id) location.hash = $scope.tabNames[key].url; - } - } - $scope.setLanguageVal = function (id, varName, pos) { - $translate(id).then(function(paragraph) { - globalFuncs[varName][pos] = paragraph; - }, function(translationId) { - globalFuncs[varName][pos] = translationId; - }); - } - $scope.setErrorMsgLanguage = function() { - for (var i = 0; i < globalFuncs.errorMsgs.length; i++) $scope.setLanguageVal('ERROR_' + (i + 1), 'errorMsgs', i); - for (var i = 0; i < globalFuncs.successMsgs.length; i++) $scope.setLanguageVal('SUCCESS_' + (i + 1), 'successMsgs', i); - } - $scope.setGethErrMsgLanguage = function() { - globalFuncs.gethErrorMsgs = {}; - for (var s in globalFuncs.gethErrors) { - var key = globalFuncs.gethErrors[s]; - if (key.indexOf("GETH_") === 0) { - $scope.setLanguageVal(key,'gethErrorMsgs',key); - } - } - } - $scope.changeLanguage = function(key, value) { - $translate.use(key); - $scope.setErrorMsgLanguage(); - $scope.setGethErrMsgLanguage(); - $scope.curLang = value; - $scope.setArrowVisibility(); - $scope.dropdown = false; - localStorage.setItem("language", JSON.stringify({ - key: key, - value: value - })); - }; - $scope.setLanguageFromStorage = function() { - var lang = localStorage.getItem('language'); - if (lang == null) return; - lang = JSON.parse(lang); - var key = globalFuncs.stripTags(lang.key); - var value = globalFuncs.stripTags(lang.value); - $scope.changeLanguage(key, value); - } - $scope.setLanguageFromStorage(); - $scope.setHash = function(hash) { - location.hash = hash; - $scope.setTab(hash); - $scope.$apply(); - } - $scope.scrollHoverIn = function(isLeft, val) { - clearInterval($scope.sHoverTimer); - $scope.sHoverTimer = setInterval(function() { - if (isLeft) $scope.scrollLeft(val); - else $scope.scrollRight(val); - }, 20); - } - $scope.scrollHoverOut = function() { - clearInterval($scope.sHoverTimer); - } - $scope.setOnScrollArrows = function(){ - var ele = document.querySelectorAll(".nav-scroll")[0]; - $scope.showLeftArrow = ele.scrollLeft > 0; - $scope.showRightArrow = document.querySelectorAll(".nav-inner")[0].clientWidth > (ele.clientWidth + ele.scrollLeft); - $scope.$apply(); - } - $scope.scrollLeft = function(val) { - var ele = document.querySelectorAll(".nav-scroll")[0]; - ele.scrollLeft -= val; - } - $scope.scrollRight = function(val) { - var ele = document.querySelectorAll(".nav-scroll")[0]; - ele.scrollLeft += val; - } - angular.element(document.querySelectorAll(".nav-scroll")[0]).bind('scroll',$scope.setOnScrollArrows); - globalFuncs.changeHash = $scope.setHash; -}; -module.exports = tabsCtrl; +'use strict'; +var tabsCtrl = function($scope, globalService, $translate) { + $scope.tabNames = globalService.tabs; + $scope.curLang = "English"; + var hval = window.location.hash; + $scope.setArrowVisibility = function() { + setTimeout(function() { + $scope.showLeftArrow = false; + $scope.showRightArrow = !(document.querySelectorAll(".nav-inner")[0].clientWidth <= document.querySelectorAll(".nav-scroll")[0].clientWidth); + $scope.$apply(); + }, 200); + } + $scope.setArrowVisibility(); + $scope.setTab = function(hval) { + if (hval != "") { + hval = hval.replace("#", ''); + for (var key in $scope.tabNames) { + if ($scope.tabNames[key].url == hval) { + $scope.activeTab = globalService.currentTab = $scope.tabNames[key].id; + break; + } + $scope.activeTab = globalService.currentTab; + } + } else { + $scope.activeTab = globalService.currentTab; + } + } + $scope.setTab(hval); + $scope.tabClick = function(id) { + $scope.activeTab = globalService.currentTab = id; + for (var key in $scope.tabNames) { + if ($scope.tabNames[key].id == id) location.hash = $scope.tabNames[key].url; + } + } + $scope.setLanguageVal = function (id, varName, pos) { + $translate(id).then(function(paragraph) { + globalFuncs[varName][pos] = paragraph; + }, function(translationId) { + globalFuncs[varName][pos] = translationId; + }); + } + $scope.setErrorMsgLanguage = function() { + for (var i = 0; i < globalFuncs.errorMsgs.length; i++) $scope.setLanguageVal('ERROR_' + (i + 1), 'errorMsgs', i); + for (var i = 0; i < globalFuncs.successMsgs.length; i++) $scope.setLanguageVal('SUCCESS_' + (i + 1), 'successMsgs', i); + } + $scope.setGethErrMsgLanguage = function() { + globalFuncs.gethErrorMsgs = {}; + for (var s in globalFuncs.gethErrors) { + var key = globalFuncs.gethErrors[s]; + if (key.indexOf("GETH_") === 0) { + $scope.setLanguageVal(key,'gethErrorMsgs',key); + } + } + } + $scope.changeLanguage = function(key, value) { + $translate.use(key); + $scope.setErrorMsgLanguage(); + $scope.setGethErrMsgLanguage(); + $scope.curLang = value; + $scope.setArrowVisibility(); + $scope.dropdown = false; + localStorage.setItem("language", JSON.stringify({ + key: key, + value: value + })); + }; + $scope.setLanguageFromStorage = function() { + var lang = localStorage.getItem('language'); + if (lang == null) return; + lang = JSON.parse(lang); + var key = globalFuncs.stripTags(lang.key); + var value = globalFuncs.stripTags(lang.value); + $scope.changeLanguage(key, value); + } + $scope.setLanguageFromStorage(); + $scope.setHash = function(hash) { + location.hash = hash; + $scope.setTab(hash); + $scope.$apply(); + } + $scope.scrollHoverIn = function(isLeft, val) { + clearInterval($scope.sHoverTimer); + $scope.sHoverTimer = setInterval(function() { + if (isLeft) $scope.scrollLeft(val); + else $scope.scrollRight(val); + }, 20); + } + $scope.scrollHoverOut = function() { + clearInterval($scope.sHoverTimer); + } + $scope.setOnScrollArrows = function(){ + var ele = document.querySelectorAll(".nav-scroll")[0]; + $scope.showLeftArrow = ele.scrollLeft > 0; + $scope.showRightArrow = document.querySelectorAll(".nav-inner")[0].clientWidth > (ele.clientWidth + ele.scrollLeft); + $scope.$apply(); + } + $scope.scrollLeft = function(val) { + var ele = document.querySelectorAll(".nav-scroll")[0]; + ele.scrollLeft -= val; + } + $scope.scrollRight = function(val) { + var ele = document.querySelectorAll(".nav-scroll")[0]; + ele.scrollLeft += val; + } + angular.element(document.querySelectorAll(".nav-scroll")[0]).bind('scroll',$scope.setOnScrollArrows); + globalFuncs.changeHash = $scope.setHash; +}; +module.exports = tabsCtrl; },{}],15:[function(require,module,exports){ -'use strict'; -var theDaoCtrl = function($scope, $sce, walletService) { - $scope.curTab = "withdrawETC"; - $scope.withdrawModal = new Modal(document.getElementById('withdrawTransaction')); - $scope.withdrawModalETC = new Modal(document.getElementById('withdrawTransactionETC')); - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.slockitContract = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa - $scope.withdrawContract = "0xbf4ed7b27f1d666546e30d74d50d173d20bca754"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa - $scope.daoCContract = "0x180826b05452ce96e157f0708c43381fee64a6b8"; - $scope.daoWithdrawContract = "0x5cead42dc4adb64f128a11382bf8e11f567a743d"; - $scope.slockitTransfer = "0xa9059cbb"; - $scope.balanceOf = "0x70a08231"; - $scope.daoWithdraw = "0x3ccfd60b"; - $scope.approveWithdraw = "0x095ea7b3"; - $scope.withdrawDAOC = "0xf3fef3a3"; - $scope.numETChex = "0x02ef6c86"; - $scope.tx = { - gasLimit: 100000, - data: '', - to: $scope.slockitContract, - unit: "ether", - value: 0, - nonce: null, - gasPrice: null, - donate: false - } - $scope.daoC = { - to: '', - donation: null - } - $scope.token = { - balance: 0, - DCbalance: 0, - balanceEth: 0, - DCbalanceEth: 0, - balanceBN: 0, - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.daoC.to = $scope.wallet.getChecksumAddressString(); - $scope.setBalance(); - }); - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - var userInfo = ethFuncs.getDataObj($scope.slockitContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.balance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - $scope.token.balanceEth = new BigNumber($scope.token.balance).div(100).toString(); - $scope.token.balanceBN = new BigNumber(data.data).toString(); - } - }); - var userInfo = ethFuncs.getDataObj($scope.daoCContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getClassicEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.DCbalance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - } - }); - var userInfo = ethFuncs.getDataObj($scope.daoWithdrawContract, $scope.numETChex, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getClassicEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.DCbalanceEth = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.$watch('curTab', function() { - $scope.tx.data = ''; - $scope.showRaw = $scope.showProposal = false; - }); - $scope.$watch('[tx,curTab]', function() { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - }, true); - $scope.generateAndSendWithdrawTx = function() { - $scope.tx.to = $scope.slockitContract; - $scope.tx.data = $scope.approveWithdraw + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.withdrawContract), 64) + ethFuncs.padLeft(new BigNumber($scope.token.balanceBN).toString(16), 64); - $scope.tx.value = 0; - uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendTx(rawTx.signedTx, function(resp){ - if(resp.isError){ - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } else { - $scope.sendTxStatus = $sce.trustAsHtml("Please Wait"); - var approveTx = resp.data; - setTimeout(function(){ - $scope.tx.to = $scope.withdrawContract; - $scope.tx.data = $scope.daoWithdraw; - uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendTx(rawTx.signedTx, function(resp){ - if(resp.isError) { - $scope.withdrawTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.error)); - } else { - $scope.sendTxStatus = $sce.trustAsHtml("Approval Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + approveTx + "")); - $scope.withdrawTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - } - }); - }); - },3000) - } - }); - }); - $scope.withdrawModal.close(); - } - $scope.generateAndWithdrawDAOC = function() { - $scope.tx.to = $scope.daoWithdrawContract; - $scope.tx.data = $scope.withdrawDAOC + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.daoC.to), 64) + ethFuncs.padLeft(new BigNumber($scope.daoC.donation).toString(16), 64); - $scope.tx.value = 0; - uiFuncs.generateClassicTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendClassicTx(rawTx.signedTx, function(resp){ - if(resp.isError){ - $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } else { - $scope.withdrawETCTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " ETC TX via GasTracker.io")); - $scope.setBalance(); - } - }); - }); - $scope.withdrawModalETC.close(); - } - $scope.validateAddress = function(addr) { - if (ethFuncs.validateEtherAddress(addr)) { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } -}; -module.exports = theDaoCtrl; +'use strict'; +var theDaoCtrl = function($scope, $sce, walletService) { + $scope.curTab = "withdrawETC"; + $scope.withdrawModal = new Modal(document.getElementById('withdrawTransaction')); + $scope.withdrawModalETC = new Modal(document.getElementById('withdrawTransactionETC')); + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.slockitContract = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa + $scope.withdrawContract = "0xbf4ed7b27f1d666546e30d74d50d173d20bca754"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa + $scope.daoCContract = "0x180826b05452ce96e157f0708c43381fee64a6b8"; + // change this to go live + $scope.daoWithdrawContract = "0x9f5304da62a5408416ea58a17a92611019bd5ce3"; + $scope.slockitTransfer = "0xa9059cbb"; + $scope.balanceOf = "0x70a08231"; + $scope.daoWithdraw = "0x3ccfd60b"; + $scope.approveWithdraw = "0x095ea7b3"; + $scope.withdrawDAOC = "0xf3fef3a3"; + $scope.numETChex = "0x02ef6c86"; + $scope.Validator = Validator; + $scope.tx = { + gasLimit: 100000, + data: '', + to: $scope.slockitContract, + unit: "ether", + value: 0, + nonce: null, + gasPrice: null, + donate: false + } + $scope.daoC = { + to: '', + donation: null + } + $scope.token = { + balance: 0, + DCbalance: 0, + balanceEth: 0, + DCbalanceEth: 0, + balanceBN: 0, + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.daoC.to = $scope.wallet.getChecksumAddressString(); + $scope.setBalance(); + }); + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + var userInfo = ethFuncs.getDataObj($scope.slockitContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.balance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + $scope.token.balanceEth = new BigNumber($scope.token.balance).div(100).toString(); + $scope.token.balanceBN = new BigNumber(data.data).toString(); + } + }); + var userInfo = ethFuncs.getDataObj($scope.daoCContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getClassicEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.DCbalance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + } + }); + var userInfo = ethFuncs.getDataObj($scope.daoWithdrawContract, $scope.numETChex, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getClassicEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.DCbalanceEth = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.$watch('curTab', function() { + $scope.tx.data = ''; + $scope.showRaw = $scope.showProposal = false; + }); + $scope.$watch('[tx,curTab]', function() { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + }, true); + $scope.generateAndSendWithdrawTx = function() { + $scope.tx.to = $scope.slockitContract; + $scope.tx.data = $scope.approveWithdraw + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.withdrawContract), 64) + ethFuncs.padLeft(new BigNumber($scope.token.balanceBN).toString(16), 64); + $scope.tx.value = 0; + uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendTx(rawTx.signedTx, function(resp){ + if(resp.isError){ + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } else { + $scope.sendTxStatus = $sce.trustAsHtml("Please Wait"); + var approveTx = resp.data; + setTimeout(function(){ + $scope.tx.to = $scope.withdrawContract; + $scope.tx.data = $scope.daoWithdraw; + uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendTx(rawTx.signedTx, function(resp){ + if(resp.isError) { + $scope.withdrawTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.error)); + } else { + $scope.sendTxStatus = $sce.trustAsHtml("Approval Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + approveTx + "")); + $scope.withdrawTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + } + }); + }); + },3000) + } + }); + }); + $scope.withdrawModal.close(); + } + $scope.generateAndWithdrawDAOC = function() { + if(!Validator.isPositiveNumber($scope.daoC.donation)){ + $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[0])); + return; + } + $scope.tx.to = $scope.daoWithdrawContract; + $scope.tx.data = $scope.withdrawDAOC + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.daoC.to), 64) + ethFuncs.padLeft(new BigNumber($scope.daoC.donation).toString(16), 64); + $scope.tx.value = 0; + uiFuncs.generateClassicTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendClassicTx(rawTx.signedTx, function(resp){ + if(resp.isError){ + $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } else { + $scope.withdrawETCTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " ETC TX via GasTracker.io")); + $scope.setBalance(); + } + }); + }); + $scope.withdrawModalETC.close(); + } +}; +module.exports = theDaoCtrl; },{}],16:[function(require,module,exports){ -'use strict'; -var tokenCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - walletService.wallet = null; - walletService.password = ''; - $scope.tokens = Token.popTokens; - $scope.Validator = Validator; - $scope.tokenTx = { - to: '', - value: 0, - id: 0, - gasLimit: 150000 - }; - $scope.localToken = { - contractAdd: "", - symbol: "", - decimals: "" - }; - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - $scope.setTokens(); - }); - $scope.setTokens = function() { - $scope.tokenObjs = []; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - $scope.tokenTx.id = 0; - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.onDonateClick = function() { - $scope.tokenTx.to = globalFuncs.donateAddress; - $scope.tokenTx.value = "50"; - } - $scope.generateTokenTx = function() { - var tokenData = $scope.tokenObjs[$scope.tokenTx.id].getData($scope.tokenTx.to, $scope.tokenTx.value); - if (tokenData.isError) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(tokenData.error)); - return; - } - tokenData = tokenData.data; - uiFuncs.generateTx({ - to: $scope.tokenObjs[$scope.tokenTx.id].getContractAddress(), - value: 0, - unit: 'ether', - gasLimit: $scope.tokenTx.gasLimit, - data: tokenData, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - $scope.tokenObjs[$scope.tokenTx.id].setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.saveTokenToLocal = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.localToken.contractAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.localToken.decimals) || parseFloat($scope.localToken.decimals) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isAlphaNumeric($scope.localToken.symbol) || $scope.localToken.symbol == "") throw globalFuncs.errorMsgs[19]; - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - storedTokens.push({ - contractAddress: $scope.localToken.contractAdd, - symbol: $scope.localToken.symbol, - decimal: parseInt($scope.localToken.decimals) - }); - $scope.localToken = { - contractAdd: "", - symbol: "", - decimals: "" - }; - localStorage.setItem("localTokens",JSON.stringify(storedTokens)); - $scope.setTokens(); - $scope.validateLocalToken = $sce.trustAsHtml(''); - } catch (e) { - $scope.validateLocalToken = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } -}; +'use strict'; +var tokenCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + walletService.wallet = null; + walletService.password = ''; + $scope.tokens = Token.popTokens; + $scope.Validator = Validator; + $scope.tokenTx = { + to: '', + value: 0, + id: 0, + gasLimit: 150000 + }; + $scope.localToken = { + contractAdd: "", + symbol: "", + decimals: "" + }; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + $scope.setTokens(); + }); + $scope.setTokens = function() { + $scope.tokenObjs = []; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + $scope.tokenTx.id = 0; + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.onDonateClick = function() { + $scope.tokenTx.to = globalFuncs.donateAddress; + $scope.tokenTx.value = "50"; + } + $scope.generateTokenTx = function() { + var tokenData = $scope.tokenObjs[$scope.tokenTx.id].getData($scope.tokenTx.to, $scope.tokenTx.value); + if (tokenData.isError) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(tokenData.error)); + return; + } + tokenData = tokenData.data; + uiFuncs.generateTx({ + to: $scope.tokenObjs[$scope.tokenTx.id].getContractAddress(), + value: 0, + unit: 'ether', + gasLimit: $scope.tokenTx.gasLimit, + data: tokenData, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + $scope.tokenObjs[$scope.tokenTx.id].setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.saveTokenToLocal = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.localToken.contractAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.localToken.decimals) || parseFloat($scope.localToken.decimals) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isAlphaNumeric($scope.localToken.symbol) || $scope.localToken.symbol == "") throw globalFuncs.errorMsgs[19]; + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + storedTokens.push({ + contractAddress: $scope.localToken.contractAdd, + symbol: $scope.localToken.symbol, + decimal: parseInt($scope.localToken.decimals) + }); + $scope.localToken = { + contractAdd: "", + symbol: "", + decimals: "" + }; + localStorage.setItem("localTokens",JSON.stringify(storedTokens)); + $scope.setTokens(); + $scope.validateLocalToken = $sce.trustAsHtml(''); + } catch (e) { + $scope.validateLocalToken = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } +}; module.exports = tokenCtrl; },{}],17:[function(require,module,exports){ -'use strict'; -var viewCtrl = function($scope, globalService) { - $scope.globalService = globalService; -}; +'use strict'; +var viewCtrl = function($scope, globalService) { + $scope.globalService = globalService; +}; module.exports = viewCtrl; },{}],18:[function(require,module,exports){ -'use strict'; -var viewWalletCtrl = function($scope, walletService) { - walletService.wallet = null; - walletService.password = ''; - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.showEnc = walletService.password != ''; - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - if (walletService.password != '') { - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3(walletService.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - } - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data){ - if(data.error){ - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance,'wei'); - ajaxReq.getETHvalue(function(data){ - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.btc); - }); - } - }); - $scope.setTokens(); - }); - $scope.setTokens = function() { - $scope.tokenObjs = []; - $scope.tokens = Token.popTokens; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } -}; +'use strict'; +var viewWalletCtrl = function($scope, walletService) { + walletService.wallet = null; + walletService.password = ''; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.showEnc = walletService.password != ''; + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + if (walletService.password != '') { + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3(walletService.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + } + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data){ + if(data.error){ + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance,'wei'); + ajaxReq.getETHvalue(function(data){ + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.btc); + }); + } + }); + $scope.setTokens(); + }); + $scope.setTokens = function() { + $scope.tokenObjs = []; + $scope.tokens = Token.popTokens; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } +}; module.exports = viewWalletCtrl; },{}],19:[function(require,module,exports){ -'use strict'; -var walletGenCtrl = function($scope) { - $scope.password = ""; - $scope.wallet = null; - $scope.showWallet = false; - $scope.blob = $scope.blobEnc = ""; - $scope.isDone = true; - $scope.showPass = true; - $scope.genNewWallet = function() { - if (!$scope.isStrongPass()) { - alert(globalFuncs.errorMsgs[1]); - } else if($scope.isDone){ - $scope.isDone = false; - $scope.wallet = Wallet.generate(false); - $scope.showWallet = true; - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - if(parent!=null) - parent.postMessage(JSON.stringify({address:$scope.wallet.getAddressString(), checksumAddress: $scope.wallet.getChecksumAddressString()}),"*"); - $scope.isDone = true; - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } - $scope.isStrongPass = function(){ - return globalFuncs.isStrongPass($scope.password); - } -}; +'use strict'; +var walletGenCtrl = function($scope) { + $scope.password = ""; + $scope.wallet = null; + $scope.showWallet = false; + $scope.blob = $scope.blobEnc = ""; + $scope.isDone = true; + $scope.showPass = true; + $scope.genNewWallet = function() { + if (!$scope.isStrongPass()) { + alert(globalFuncs.errorMsgs[1]); + } else if($scope.isDone){ + $scope.isDone = false; + $scope.wallet = Wallet.generate(false); + $scope.showWallet = true; + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + if(parent!=null) + parent.postMessage(JSON.stringify({address:$scope.wallet.getAddressString(), checksumAddress: $scope.wallet.getChecksumAddressString()}),"*"); + $scope.isDone = true; + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } + $scope.isStrongPass = function(){ + return globalFuncs.isStrongPass($scope.password); + } +}; module.exports = walletGenCtrl; },{}],20:[function(require,module,exports){ -'use strict'; -var marked = require('marked'); -var myRenderer = new marked.Renderer(); -myRenderer.paragraph = function(text) { - return text + '\n'; -}; -myRenderer.link = function(href, title, text) { - if (this.options.sanitize) { - try { - var prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g, '').toLowerCase(); - } catch (e) { - return ''; - } - if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) { - return ''; - } - } - var out = ''; - return out; -}; -marked.setOptions({ - renderer: myRenderer -}); +'use strict'; +var marked = require('marked'); +var myRenderer = new marked.Renderer(); +myRenderer.paragraph = function(text) { + return text + '\n'; +}; +myRenderer.link = function(href, title, text) { + if (this.options.sanitize) { + try { + var prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g, '').toLowerCase(); + } catch (e) { + return ''; + } + if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) { + return ''; + } + } + var out = ''; + return out; +}; +marked.setOptions({ + renderer: myRenderer +}); module.exports = marked; -},{"marked":470}],21:[function(require,module,exports){ -'use strict'; -var cxFuncs = function() {} -cxFuncs.storage = chrome.storage.sync; -cxFuncs.getAllNickNames = function(callback) { - var nickNames = []; - this.storage.get(null, function(items) { - for (var key in items) { - if (items.hasOwnProperty(key)) { - var tobj = JSON.parse(items[key]); - if (tobj.type == 'wallet' || tobj.type == 'watchOnly') { - nickNames.push(tobj.nick); - nickNames.push(key); - } - } - } - callback(nickNames); - }); -} -cxFuncs.addWalletToStorage = function(address, encStr, nickname, callback) { - nickname = nickname.replace(/(<([^>]+)>)/ig, ""); - var value = { - nick: nickname, - priv: encStr, - type: 'wallet' - }; - var keyname = ethUtil.toChecksumAddress(address); - var obj = {}; - obj[keyname] = JSON.stringify(value); - this.storage.set(obj, callback); -} -cxFuncs.addWatchOnlyAddress = function(address, nickname, callback) { - nickname = nickname.replace(/(<([^>]+)>)/ig, ""); - var value = { - nick: nickname, - type: 'watchOnly' - }; - var keyname = ethUtil.toChecksumAddress(address);; - var obj = {}; - obj[keyname] = JSON.stringify(value); - this.storage.set(obj, callback); -} -cxFuncs.getStorageArr = function(filter, callback) { - var wallets = []; - this.storage.get(null, function(items) { - for (var key in items) { - if (items.hasOwnProperty(key)) { - var tobj = JSON.parse(items[key]); - if (tobj.type == filter) { - tobj['addr'] = key; - wallets.push(tobj); - } - } - } - wallets.sort(function(a, b) { - if (a.nick < b.nick) return -1; - if (a.nick > b.nick) return 1; - return 0; - }); - callback(wallets); - }); -} -cxFuncs.getWalletsArr = function(callback) { - this.getStorageArr('wallet', callback); -} -cxFuncs.getWatchOnlyArr = function(callback) { - this.getStorageArr('watchOnly', callback); -} -cxFuncs.deleteAccount = function(address,callback){ - this.storage.remove(address,function(){ - callback(address); - }); -} -cxFuncs.editNickName = function(address,newNick, callback){ - newNick = newNick.replace(/(<([^>]+)>)/ig,""); - this.storage.get(address, function(account) { - var accountInfo = account[address]; - accountInfo = JSON.parse(accountInfo); - accountInfo['nick'] = newNick; - account[address] = JSON.stringify(accountInfo); - cxFuncs.storage.set(account,function(){ - callback(newNick); - }); - }); -} +},{"marked":472}],21:[function(require,module,exports){ +'use strict'; +var cxFuncs = function() {} +cxFuncs.storage = chrome.storage.sync; +cxFuncs.getAllNickNames = function(callback) { + var nickNames = []; + this.storage.get(null, function(items) { + for (var key in items) { + if (items.hasOwnProperty(key)) { + var tobj = JSON.parse(items[key]); + if (tobj.type == 'wallet' || tobj.type == 'watchOnly') { + nickNames.push(tobj.nick); + nickNames.push(key); + } + } + } + callback(nickNames); + }); +} +cxFuncs.addWalletToStorage = function(address, encStr, nickname, callback) { + nickname = nickname.replace(/(<([^>]+)>)/ig, ""); + var value = { + nick: nickname, + priv: encStr, + type: 'wallet' + }; + var keyname = ethUtil.toChecksumAddress(address); + var obj = {}; + obj[keyname] = JSON.stringify(value); + this.storage.set(obj, callback); +} +cxFuncs.addWatchOnlyAddress = function(address, nickname, callback) { + nickname = nickname.replace(/(<([^>]+)>)/ig, ""); + var value = { + nick: nickname, + type: 'watchOnly' + }; + var keyname = ethUtil.toChecksumAddress(address);; + var obj = {}; + obj[keyname] = JSON.stringify(value); + this.storage.set(obj, callback); +} +cxFuncs.getStorageArr = function(filter, callback) { + var wallets = []; + this.storage.get(null, function(items) { + for (var key in items) { + if (items.hasOwnProperty(key)) { + var tobj = JSON.parse(items[key]); + if (tobj.type == filter) { + tobj['addr'] = key; + wallets.push(tobj); + } + } + } + wallets.sort(function(a, b) { + if (a.nick < b.nick) return -1; + if (a.nick > b.nick) return 1; + return 0; + }); + callback(wallets); + }); +} +cxFuncs.getWalletsArr = function(callback) { + this.getStorageArr('wallet', callback); +} +cxFuncs.getWatchOnlyArr = function(callback) { + this.getStorageArr('watchOnly', callback); +} +cxFuncs.deleteAccount = function(address,callback){ + this.storage.remove(address,function(){ + callback(address); + }); +} +cxFuncs.editNickName = function(address,newNick, callback){ + newNick = newNick.replace(/(<([^>]+)>)/ig,""); + this.storage.get(address, function(account) { + var accountInfo = account[address]; + accountInfo = JSON.parse(accountInfo); + accountInfo['nick'] = newNick; + account[address] = JSON.stringify(accountInfo); + cxFuncs.storage.set(account,function(){ + callback(newNick); + }); + }); +} module.exports = cxFuncs; },{}],22:[function(require,module,exports){ -'use strict'; -var QRCodeDrtv = function() { - return function(scope, element, attrs) { - var watchVar = attrs.watchVar; - scope.$watch(watchVar, function() { - var value = attrs.qrCode; - element.empty(); - var delay = 0; - if (element[0].clientWidth == 0) delay = 200; - setTimeout(function() { - new QRCode(element[0], { - text: value, - width: element[0].clientWidth, - height: element[0].clientWidth, - colorDark: "#000000", - colorLight: "#ffffff", - correctLevel: QRCode.CorrectLevel.H - }); - }, delay); - }); - }; -}; +'use strict'; +var QRCodeDrtv = function() { + return function(scope, element, attrs) { + var watchVar = attrs.watchVar; + scope.$watch(watchVar, function() { + var value = attrs.qrCode; + element.empty(); + var delay = 0; + if (element[0].clientWidth == 0) delay = 200; + setTimeout(function() { + new QRCode(element[0], { + text: value, + width: element[0].clientWidth, + height: element[0].clientWidth, + colorDark: "#000000", + colorLight: "#ffffff", + correctLevel: QRCode.CorrectLevel.H + }); + }, delay); + }); + }; +}; module.exports = QRCodeDrtv; },{}],23:[function(require,module,exports){ -'use strict'; -var blockiesDrtv = function() { - return function(scope, element, attrs){ - var watchVar = attrs.watchVar; - scope.$watch(watchVar, function() { - var address = attrs.blockieAddress; - var content = ethFuncs.validateEtherAddress(address) ? globalFuncs.getBlockie(address):''; - element.css({ - 'background-image': 'url(' + content +')' - }); - }); - }; -}; +'use strict'; +var blockiesDrtv = function() { + return function(scope, element, attrs){ + var watchVar = attrs.watchVar; + scope.$watch(watchVar, function() { + var address = attrs.blockieAddress; + var content = ethFuncs.validateEtherAddress(address) ? globalFuncs.getBlockie(address):''; + element.css({ + 'background-image': 'url(' + content +')' + }); + }); + }; +}; module.exports = blockiesDrtv; },{}],24:[function(require,module,exports){ -'use strict'; -var cxWalletDecryptDrtv = function() { - return { - restrict : "E", - template : '' - }; -}; -module.exports = cxWalletDecryptDrtv; +'use strict'; +var cxWalletDecryptDrtv = function() { + return { + restrict : "E", + template : '
\n \ +
\n \ +

Select a Wallet:

\n \ +
\n \ + \n \ +
\n \ +
\n \ +
\n \ +

Your wallet is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ +

Unlock Your Wallet:

\n \ + \n \ +
\n \ +
\n \ +
' + }; +}; +module.exports = cxWalletDecryptDrtv; },{}],25:[function(require,module,exports){ -'use strict'; -var fileReaderDrtv = function($parse) { - return { - restrict: 'A', - scope: false, - link: function(scope, element, attrs) { - var fn = $parse(attrs.onReadFile); - element.on('change', function(onChangeEvent) { - var reader = new FileReader(); - reader.onload = function(onLoadEvent) { - scope.$apply(function() { - fn(scope, { - $fileContent: onLoadEvent.target.result - }); - }); - }; - reader.readAsText((onChangeEvent.srcElement || onChangeEvent.target).files[0]); - }); - } - }; -}; +'use strict'; +var fileReaderDrtv = function($parse) { + return { + restrict: 'A', + scope: false, + link: function(scope, element, attrs) { + var fn = $parse(attrs.onReadFile); + element.on('change', function(onChangeEvent) { + var reader = new FileReader(); + reader.onload = function(onLoadEvent) { + scope.$apply(function() { + fn(scope, { + $fileContent: onLoadEvent.target.result + }); + }); + }; + reader.readAsText((onChangeEvent.srcElement || onChangeEvent.target).files[0]); + }); + } + }; +}; module.exports = fileReaderDrtv; },{}],26:[function(require,module,exports){ -'use strict'; -var walletDecryptDrtv = function() { - return { - restrict : "E", - template : '
\n \ -
\n \ -

Select the format of your private key:

\n \ -
\n \ - \n \ -
\n \ -
\n \ - \n \ -
\n \ -
\n \ -
\n \ - \n \ -
\n \ -

Select your wallet file:

\n \ -
\n \ - \n \ - SELECT WALLET FILE... \n \ -
\n \ -
\n \ -
\n \ -

Your file is encrypted. Please enter the password:

\n \ - \n \ -
\n \ -
\n \ - \n \ - \n \ -
\n \ -

Paste / type your private key:

\n \ -
\n \ - \n \ -
\n \ -
\n \ -

Your file is encrypted. Please enter the password:

\n \ - \n \ -
\n \ -
\n \ - \n \ -
\n \ -
\n \ -

Access Your Wallet:

\n \ -

Access Your Wallet:

\n \ - \n \ -
\n \ -
\n \ -
' - }; -}; -module.exports = walletDecryptDrtv; +'use strict'; +var walletDecryptDrtv = function() { + return { + restrict : "E", + template : '
\n \ +
\n \ +

Select the format of your private key:

\n \ +
\n \ + \n \ +
\n \ +
\n \ + \n \ +
\n \ +
\n \ +
\n \ + \n \ +
\n \ +

Select your wallet file:

\n \ +
\n \ + \n \ + SELECT WALLET FILE... \n \ +
\n \ +
\n \ +
\n \ +

Your file is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ + \n \ + \n \ +
\n \ +

Paste / type your private key:

\n \ +
\n \ + \n \ +
\n \ +
\n \ +

Your file is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ + \n \ +
\n \ +
\n \ +

Access Your Wallet:

\n \ +

Access Your Wallet:

\n \ + \n \ +
\n \ +
\n \ +
' + }; +}; +module.exports = walletDecryptDrtv; },{}],27:[function(require,module,exports){ -'use strict'; -var ethFuncs = function() {} -ethFuncs.validateEtherAddress = function(address) { - if (address.substring(0, 2) != "0x") return false; - else if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) return false; - else if (/^(0x)?[0-9a-f]{40}$/.test(address) || /^(0x)?[0-9A-F]{40}$/.test(address)) return true; - else - return this.isChecksumAddress(address); -} -ethFuncs.isChecksumAddress = function(address) { - return address == ethUtil.toChecksumAddress(address); -} -ethFuncs.validateHexString = function(str) { - if (str == "") return true; - str = str.substring(0, 2) == '0x' ? str.substring(2).toUpperCase() : str.toUpperCase(); - var re = /^[0-9A-F]+$/g; - return re.test(str); -} -ethFuncs.sanitizeHex = function(hex) { - hex = hex.substring(0, 2) == '0x' ? hex.substring(2) : hex; - if (hex == "") return ""; - return '0x' + this.padLeftEven(hex); -} -ethFuncs.padLeftEven = function(hex) { - hex = hex.length % 2 != 0 ? '0' + hex : hex; - return hex; -} -ethFuncs.addTinyMoreToGas = function(hex) { - hex = this.sanitizeHex(hex); - return new BigNumber(hex).plus(etherUnits.getValueOfUnit('gwei')).toDigits(2).toString(16); -} -ethFuncs.decimalToHex = function(dec) { - return new BigNumber(dec).toString(16); -} -ethFuncs.hexToDecimal = function(hex) { - return new BigNumber(this.sanitizeHex(hex)).toString(); -} -ethFuncs.contractOutToArray = function(hex) { - hex = hex.replace('0x', '').match(/.{64}/g); - for(var i=0;i= width ? n : new Array(width - n.length + 1).join(z) + n; -} -ethFuncs.getDataObj = function(to, func, arrVals) { - var val=""; - for(var i=0;i= width ? n : new Array(width - n.length + 1).join(z) + n; +} +ethFuncs.getDataObj = function(to, func, arrVals) { + var val=""; + for(var i=0;i"); -} -globalFuncs.getBlob = function(mime, str) { - var str = (typeof str === 'object') ? JSON.stringify(str) : str; - if (str == null) return ''; - var blob = new Blob([str], { - type: mime - }); - return window.URL.createObjectURL(blob); -} -globalFuncs.getSuccessText = function(str) { - return '

' + str + '

' -} -globalFuncs.getDangerText = function(str) { - return '

' + str + '

' -} -globalFuncs.errorMsgs = [ - "Please enter valid amount.", - "Your password must be at least 9 characters. Please ensure it is a strong password. ", - "Sorry! We don\'t recognize this type of wallet file. ", - "This is not a valid wallet file. ", - "This unit doesn\'t exists, please use the one of the following units ", - "Invalid address. ", - "Invalid password. ", - "Invalid amount. ", - "Invalid gas limit. ", - "Invalid data value. ", - "Invalid gas amount. ", - "Invalid nonce. ", - "Invalid signed transaction. ", - "A wallet with this nickname already exists. ", - "Wallet not found. ", - "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", - "A wallet with this address already exists in storage. Please check your wallets page. ", - "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", - "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", - "Invalid symbol"]; -globalFuncs.successMsgs = [ - "Valid address", - "Wallet successfully decrypted", - "Transaction submitted. TX ID: ", - "Your wallet was successfully added: ", - "You have successfully voted. Thank you for being an active participant in The DAO.", - "File Selected: "]; -globalFuncs.gethErrors = { - "Invalid sender": "GETH_InvalidSender", - "Nonce too low": "GETH_Nonce", - "Gas price too low for acceptance": "GETH_Cheap", - "Insufficient balance": "GETH_Balance", - "Account does not exist or account balance too low": "GETH_NonExistentAccount", - "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", - "Intrinsic gas too low": "GETH_IntrinsicGas", - "Exceeds block gas limit": "GETH_GasLimit", - "Negative value": "GETH_NegativeValue"}; -globalFuncs.gethErrorMsgs = {}; -globalFuncs.getGethMsg = function(str) { - if (str in this.gethErrors) { - var key = this.gethErrors[str]; - if (key in this.gethErrorMsgs) { - return this.gethErrorMsgs[key]; - } - } - return str; -} -globalFuncs.scrypt = { - n: 1024 -}; -globalFuncs.postDelay = 300; -globalFuncs.kdf = "scrypt"; -globalFuncs.defaultTxGasLimit = 21000; -globalFuncs.digixClaimTxGasLimit = 150000; -globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; -globalFuncs.isNumeric = function(n) { - return !isNaN(parseFloat(n)) && isFinite(n); -} -globalFuncs.urlGet = function(name) { - if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); -} -globalFuncs.stripTags = function(str) { - var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; - while (SCRIPT_REGEX.test(str)) { - str = str.replace(SCRIPT_REGEX, ""); - } - return str; -} -globalFuncs.checkAndRedirectHTTPS = function() { - var host = "myetherwallet.com"; - var githost = "kvhnuke.github.io"; - var githostw = "www.kvhnuke.github.io"; - var hostw = "www.myetherwallet.com"; - if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; -} -globalFuncs.isStrongPass = function(password) { - return password.length > 8; -} -globalFuncs.hexToAscii = function(hex) { - return hex.match(/.{1,2}/g).map(function(v) { - return String.fromCharCode(parseInt(v, 16)); - }).join(''); -} -globalFuncs.isAlphaNumeric = function(value){ - return !/[^a-zA-Z0-9]/.test(value); -} -module.exports = globalFuncs; +'use strict'; +var globalFuncs = function() {} +globalFuncs.getBlockie = function(address) { + return blockies.create({ + seed: address.toLowerCase(), + size: 8, + scale: 16 + }).toDataURL(); +} +globalFuncs.printPaperWallets = function(strJson) { + var win = window.open("about:blank", "_blank"); + var data = ""); +} +globalFuncs.getBlob = function(mime, str) { + var str = (typeof str === 'object') ? JSON.stringify(str) : str; + if (str == null) return ''; + var blob = new Blob([str], { + type: mime + }); + return window.URL.createObjectURL(blob); +} +globalFuncs.getSuccessText = function(str) { + return '

' + str + '

' +} +globalFuncs.getDangerText = function(str) { + return '

' + str + '

' +} +globalFuncs.errorMsgs = [ + "Please enter valid amount.", + "Your password must be at least 9 characters. Please ensure it is a strong password. ", + "Sorry! We don\'t recognize this type of wallet file. ", + "This is not a valid wallet file. ", + "This unit doesn\'t exists, please use the one of the following units ", + "Invalid address. ", + "Invalid password. ", + "Invalid amount. ", + "Invalid gas limit. ", + "Invalid data value. ", + "Invalid gas amount. ", + "Invalid nonce. ", + "Invalid signed transaction. ", + "A wallet with this nickname already exists. ", + "Wallet not found. ", + "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", + "A wallet with this address already exists in storage. Please check your wallets page. ", + "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", + "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", + "Invalid symbol"]; +globalFuncs.successMsgs = [ + "Valid address", + "Wallet successfully decrypted", + "Transaction submitted. TX ID: ", + "Your wallet was successfully added: ", + "You have successfully voted. Thank you for being an active participant in The DAO.", + "File Selected: "]; +globalFuncs.gethErrors = { + "Invalid sender": "GETH_InvalidSender", + "Nonce too low": "GETH_Nonce", + "Gas price too low for acceptance": "GETH_Cheap", + "Insufficient balance": "GETH_Balance", + "Account does not exist or account balance too low": "GETH_NonExistentAccount", + "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", + "Intrinsic gas too low": "GETH_IntrinsicGas", + "Exceeds block gas limit": "GETH_GasLimit", + "Negative value": "GETH_NegativeValue"}; +globalFuncs.gethErrorMsgs = {}; +globalFuncs.getGethMsg = function(str) { + if (str in this.gethErrors) { + var key = this.gethErrors[str]; + if (key in this.gethErrorMsgs) { + return this.gethErrorMsgs[key]; + } + } + return str; +} +globalFuncs.scrypt = { + n: 1024 +}; +globalFuncs.postDelay = 300; +globalFuncs.kdf = "scrypt"; +globalFuncs.defaultTxGasLimit = 21000; +globalFuncs.digixClaimTxGasLimit = 150000; +globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; +globalFuncs.isNumeric = function(n) { + return !isNaN(parseFloat(n)) && isFinite(n); +} +globalFuncs.urlGet = function(name) { + if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); +} +globalFuncs.stripTags = function(str) { + var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; + while (SCRIPT_REGEX.test(str)) { + str = str.replace(SCRIPT_REGEX, ""); + } + return str; +} +globalFuncs.checkAndRedirectHTTPS = function() { + var host = "myetherwallet.com"; + var githost = "kvhnuke.github.io"; + var githostw = "www.kvhnuke.github.io"; + var hostw = "www.myetherwallet.com"; + if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; +} +globalFuncs.isStrongPass = function(password) { + return password.length > 8; +} +globalFuncs.hexToAscii = function(hex) { + return hex.match(/.{1,2}/g).map(function(v) { + return String.fromCharCode(parseInt(v, 16)); + }).join(''); +} +globalFuncs.isAlphaNumeric = function(value){ + return !/[^a-zA-Z0-9]/.test(value); +} +module.exports = globalFuncs; },{}],30:[function(require,module,exports){ -'use strict'; -var IS_CX = false; -if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; -require("babel-polyfill"); -var angular = require('angular'); -var angularTranslate = require('angular-translate'); -var angularTranslateErrorLog = require('angular-translate-handler-log'); -var angularSanitize = require('angular-sanitize'); -var BigNumber = require('bignumber.js'); -window.BigNumber = BigNumber; -var marked = require('./customMarked'); -window.marked = marked; -var ethUtil = require('ethereumjs-util'); -ethUtil.crypto = require('crypto'); -ethUtil.Tx = require('ethereumjs-tx'); -ethUtil.scrypt = require('scryptsy'); -ethUtil.uuid = require('uuid'); -window.ethUtil = ethUtil; -var Wallet = require('./myetherwallet'); -window.Wallet = Wallet; -var Token = require('./tokens'); -window.Token = Token; -var globalFuncs = require('./globalFuncs'); -window.globalFuncs = globalFuncs; -var uiFuncs = require('./uiFuncs'); -window.uiFuncs = uiFuncs; -var etherUnits = require('./etherUnits'); -window.etherUnits = etherUnits; -var ajaxReq = require('./ajaxReq'); -window.ajaxReq = ajaxReq; -var ethFuncs = require('./ethFuncs'); -window.ethFuncs = ethFuncs; -var Validator = require('./validator'); -window.Validator = Validator; -var translate = require('./translations/translate.js'); -if (IS_CX) { - var cxFuncs = require('./cxFuncs'); - window.cxFuncs = cxFuncs; -} -var tabsCtrl = require('./controllers/tabsCtrl'); -var viewCtrl = require('./controllers/viewCtrl'); -var walletGenCtrl = require('./controllers/walletGenCtrl'); -var bulkGenCtrl = require('./controllers/bulkGenCtrl'); -var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); -var viewWalletCtrl = require('./controllers/viewWalletCtrl'); -var sendTxCtrl = require('./controllers/sendTxCtrl'); -var deployContractCtrl = require('./controllers/deployContractCtrl'); -var digixCtrl = require('./controllers/digixCtrl'); -var theDaoCtrl = require('./controllers/theDaoCtrl'); -var tokenCtrl = require('./controllers/tokenCtrl'); -var footerCtrl = require('./controllers/footerCtrl'); -var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); -var globalService = require('./services/globalService'); -var walletService = require('./services/walletService'); -var blockiesDrtv = require('./directives/blockiesDrtv'); -var QRCodeDrtv = require('./directives/QRCodeDrtv'); -var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); -var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); -var fileReaderDrtv = require('./directives/fileReaderDrtv'); -if (IS_CX) { - var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); - var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); - var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); - var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); - var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); -} -var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); -app.config(['$compileProvider', function($compileProvider) { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); -}]); -app.config(['$translateProvider', function($translateProvider) { - $translateProvider.useMissingTranslationHandlerLog(); - new translate($translateProvider); -}]); -app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); -app.factory('walletService', walletService); -app.directive('blockieAddress', blockiesDrtv); -app.directive('qrCode', QRCodeDrtv); -app.directive('onReadFile', fileReaderDrtv); -app.directive('walletDecryptDrtv', walletDecryptDrtv); -app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); -app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); -app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); -app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); -app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); -app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); -app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); -app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); -app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); -app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); -app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); -app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); -app.controller('footerCtrl', ['$scope', footerCtrl]); -app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); -if (IS_CX) { - app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); - app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); - app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); - app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); - app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); -} - -},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":60,"./uiFuncs":64,"./validator":65,"angular":71,"angular-sanitize":67,"angular-translate":69,"angular-translate-handler-log":68,"babel-polyfill":87,"bignumber.js":89,"crypto":423,"ethereumjs-tx":453,"ethereumjs-util":454,"scryptsy":500,"uuid":520}],31:[function(require,module,exports){ +'use strict'; +var IS_CX = false; +if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; +require("babel-polyfill"); +var angular = require('angular'); +var angularTranslate = require('angular-translate'); +var angularTranslateErrorLog = require('angular-translate-handler-log'); +var angularSanitize = require('angular-sanitize'); +var BigNumber = require('bignumber.js'); +window.BigNumber = BigNumber; +var marked = require('./customMarked'); +window.marked = marked; +var ethUtil = require('ethereumjs-util'); +ethUtil.crypto = require('crypto'); +ethUtil.Tx = require('ethereumjs-tx'); +ethUtil.scrypt = require('scryptsy'); +ethUtil.uuid = require('uuid'); +window.ethUtil = ethUtil; +var Wallet = require('./myetherwallet'); +window.Wallet = Wallet; +var Token = require('./tokens'); +window.Token = Token; +var globalFuncs = require('./globalFuncs'); +window.globalFuncs = globalFuncs; +var uiFuncs = require('./uiFuncs'); +window.uiFuncs = uiFuncs; +var etherUnits = require('./etherUnits'); +window.etherUnits = etherUnits; +var ajaxReq = require('./ajaxReq'); +window.ajaxReq = ajaxReq; +var ethFuncs = require('./ethFuncs'); +window.ethFuncs = ethFuncs; +var Validator = require('./validator'); +window.Validator = Validator; +var translate = require('./translations/translate.js'); +if (IS_CX) { + var cxFuncs = require('./cxFuncs'); + window.cxFuncs = cxFuncs; +} +var tabsCtrl = require('./controllers/tabsCtrl'); +var viewCtrl = require('./controllers/viewCtrl'); +var walletGenCtrl = require('./controllers/walletGenCtrl'); +var bulkGenCtrl = require('./controllers/bulkGenCtrl'); +var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); +var viewWalletCtrl = require('./controllers/viewWalletCtrl'); +var sendTxCtrl = require('./controllers/sendTxCtrl'); +var deployContractCtrl = require('./controllers/deployContractCtrl'); +var digixCtrl = require('./controllers/digixCtrl'); +var theDaoCtrl = require('./controllers/theDaoCtrl'); +var tokenCtrl = require('./controllers/tokenCtrl'); +var footerCtrl = require('./controllers/footerCtrl'); +var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); +var globalService = require('./services/globalService'); +var walletService = require('./services/walletService'); +var blockiesDrtv = require('./directives/blockiesDrtv'); +var QRCodeDrtv = require('./directives/QRCodeDrtv'); +var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); +var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); +var fileReaderDrtv = require('./directives/fileReaderDrtv'); +if (IS_CX) { + var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); + var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); + var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); + var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); + var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); +} +var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); +app.config(['$compileProvider', function($compileProvider) { + $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); +}]); +app.config(['$translateProvider', function($translateProvider) { + $translateProvider.useMissingTranslationHandlerLog(); + new translate($translateProvider); +}]); +app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); +app.factory('walletService', walletService); +app.directive('blockieAddress', blockiesDrtv); +app.directive('qrCode', QRCodeDrtv); +app.directive('onReadFile', fileReaderDrtv); +app.directive('walletDecryptDrtv', walletDecryptDrtv); +app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); +app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); +app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); +app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); +app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); +app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); +app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); +app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); +app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); +app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); +app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); +app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); +app.controller('footerCtrl', ['$scope', footerCtrl]); +app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); +if (IS_CX) { + app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); + app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); + app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); + app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); + app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); +} + +},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":61,"./uiFuncs":65,"./validator":66,"angular":72,"angular-sanitize":68,"angular-translate":70,"angular-translate-handler-log":69,"babel-polyfill":88,"bignumber.js":90,"crypto":425,"ethereumjs-tx":455,"ethereumjs-util":456,"scryptsy":502,"uuid":522}],31:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var Wallet = function(priv) { - this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') -} -Wallet.generate = function(icapDirect) { - if (icapDirect) { - while (true) { - var privKey = ethUtil.crypto.randomBytes(32) - if (ethUtil.privateToAddress(privKey)[0] === 0) { - return new Wallet(privKey) - } - } - } else { - return new Wallet(ethUtil.crypto.randomBytes(32)) - } -} -Wallet.prototype.getPrivateKey = function() { - return this.privKey -} -Wallet.prototype.getPrivateKeyString = function() { - return this.getPrivateKey().toString('hex') -} -Wallet.prototype.getPublicKey = function() { - return ethUtil.privateToPublic(this.privKey) -} -Wallet.prototype.getPublicKeyString = function() { - return '0x' + this.getPublicKey().toString('hex') -} -Wallet.prototype.getAddress = function() { - return ethUtil.privateToAddress(this.privKey) -} -Wallet.prototype.getAddressString = function() { - return '0x' + this.getAddress().toString('hex') -} -Wallet.prototype.getChecksumAddressString = function() { - return ethUtil.toChecksumAddress(this.getAddressString()) -} -Wallet.fromPrivateKey = function(priv) { - return new Wallet(priv) -} -Wallet.prototype.toV3 = function(password, opts) { - opts = opts || {} - var salt = opts.salt || ethUtil.crypto.randomBytes(32) - var iv = opts.iv || ethUtil.crypto.randomBytes(16) - var derivedKey - var kdf = opts.kdf || 'scrypt' - var kdfparams = { - dklen: opts.dklen || 32, - salt: salt.toString('hex') - } - if (kdf === 'pbkdf2') { - kdfparams.c = opts.c || 262144 - kdfparams.prf = 'hmac-sha256' - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') - } else if (kdf === 'scrypt') { - // FIXME: support progress reporting callback - kdfparams.n = opts.n || 262144 - kdfparams.r = opts.r || 8 - kdfparams.p = opts.p || 1 - derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else { - throw new Error('Unsupported kdf') - } - var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) - if (!cipher) { - throw new Error('Unsupported cipher') - } - var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) - return { - version: 3, - id: ethUtil.uuid.v4({ - random: opts.uuid || ethUtil.crypto.randomBytes(16) - }), - address: this.getAddress().toString('hex'), - Crypto: { - ciphertext: ciphertext.toString('hex'), - cipherparams: { - iv: iv.toString('hex') - }, - cipher: opts.cipher || 'aes-128-ctr', - kdf: kdf, - kdfparams: kdfparams, - mac: mac.toString('hex') - } - } -} -Wallet.prototype.toJSON = function() { - return { - address: this.getAddressString(), - checksumAddress: this.getChecksumAddressString(), - privKey: this.getPrivateKeyString(), - pubKey: this.getPublicKeyString(), - publisher:"MyEtherWallet", - encrypted:false, - version:2 - } -} -Wallet.fromMyEtherWallet = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var privKey - if (!json.locked) { - if (json.private.length !== 64) { - throw new Error('Invalid private key length') - } - privKey = new Buffer(json.private, 'hex') - } else { - if (typeof password !== 'string') { - throw new Error('Password required') - } - if (password.length < 7) { - throw new Error('Password must be at least 7 characters') - } - var cipher = json.encrypted ? json.private.slice(0, 128) : json.private - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - } - var wallet = new Wallet(privKey) - if (wallet.getAddressString() !== json.address) { - throw new Error('Invalid private key or address') - } - return wallet -} -Wallet.fromMyEtherWalletV2 = function (input){ - var json = (typeof input === 'object') ? input : JSON.parse(input); - if (json.privKey.length !== 64) { - throw new Error('Invalid private key length'); - }; - var privKey = new Buffer(json.privKey, 'hex'); - return new Wallet(privKey); -} -Wallet.fromEthSale = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var encseed = new Buffer(json.encseed, 'hex') - var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) - var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) - var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) - var wallet = new Wallet(ethUtil.sha3(seed)) - if (wallet.getAddress().toString('hex') !== json.ethaddr) { - throw new Error('Decoded key mismatch - possibly wrong passphrase') - } - return wallet -} -Wallet.fromMyEtherWalletKey = function(input, password) { - var cipher = input.slice(0, 128) - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - return new Wallet(privKey) -} -Wallet.fromV3 = function(input, password, nonStrict) { - var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) - if (json.version !== 3) { - throw new Error('Not a V3 wallet') - } - var derivedKey - var kdfparams - if (json.crypto.kdf === 'scrypt') { - kdfparams = json.crypto.kdfparams - derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else if (json.crypto.kdf === 'pbkdf2') { - kdfparams = json.crypto.kdfparams - if (kdfparams.prf !== 'hmac-sha256') { - throw new Error('Unsupported parameters to PBKDF2') - } - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') - } else { - throw new Error('Unsupported key derivation scheme') - } - var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) - if (mac.toString('hex') !== json.crypto.mac) { - throw new Error('Key derivation failed - possibly wrong passphrase') - } - var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) - var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') - return new Wallet(seed) -} -Wallet.prototype.toV3String = function(password, opts) { - return JSON.stringify(this.toV3(password, opts)) -} -Wallet.prototype.getV3Filename = function (timestamp) { - var ts = timestamp ? new Date(timestamp) : new Date() - return [ - 'UTC--', - ts.toJSON().replace(/:/g, '-'), - '--', - this.getAddress().toString('hex') - ].join('') -} -Wallet.decipherBuffer = function(decipher, data) { - return Buffer.concat([decipher.update(data), decipher.final()]) -} -Wallet.decodeCryptojsSalt = function(input) { - var ciphertext = new Buffer(input, 'base64') - if (ciphertext.slice(0, 8).toString() === 'Salted__') { - return { - salt: ciphertext.slice(8, 16), - ciphertext: ciphertext.slice(16) - } - } else { - return { - ciphertext: ciphertext - } - } -} -Wallet.evp_kdf = function(data, salt, opts) { - // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` - - function iter(block) { - var hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - hash.update(data) - hash.update(salt) - block = hash.digest() - for (var i = 1; i < (opts.count || 1); i++) { - hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - block = hash.digest() - } - return block - } - var keysize = opts.keysize || 16 - var ivsize = opts.ivsize || 16 - var ret = [] - var i = 0 - while (Buffer.concat(ret).length < (keysize + ivsize)) { - ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) - i++ - } - var tmp = Buffer.concat(ret) - return { - key: tmp.slice(0, keysize), - iv: tmp.slice(keysize, keysize + ivsize) - } -} -Wallet.walletRequirePass = function(ethjson) { - var jsonArr; - try { - jsonArr = JSON.parse(ethjson); - } catch (err) { - throw globalFuncs.errorMsgs[3]; - } - if (jsonArr.encseed != null) return true; - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true - else if (jsonArr.hash != null && jsonArr.locked) return true; - else if (jsonArr.hash != null && !jsonArr.locked) return false; - else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; - else - throw globalFuncs.errorMsgs[2]; -} -Wallet.getWalletFromPrivKeyFile = function(strjson, password) { - var jsonArr = JSON.parse(strjson); - if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); - else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); - else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); - else - throw globalFuncs.errorMsgs[2]; -} +'use strict'; +var Wallet = function(priv) { + this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') +} +Wallet.generate = function(icapDirect) { + if (icapDirect) { + while (true) { + var privKey = ethUtil.crypto.randomBytes(32) + if (ethUtil.privateToAddress(privKey)[0] === 0) { + return new Wallet(privKey) + } + } + } else { + return new Wallet(ethUtil.crypto.randomBytes(32)) + } +} +Wallet.prototype.getPrivateKey = function() { + return this.privKey +} +Wallet.prototype.getPrivateKeyString = function() { + return this.getPrivateKey().toString('hex') +} +Wallet.prototype.getPublicKey = function() { + return ethUtil.privateToPublic(this.privKey) +} +Wallet.prototype.getPublicKeyString = function() { + return '0x' + this.getPublicKey().toString('hex') +} +Wallet.prototype.getAddress = function() { + return ethUtil.privateToAddress(this.privKey) +} +Wallet.prototype.getAddressString = function() { + return '0x' + this.getAddress().toString('hex') +} +Wallet.prototype.getChecksumAddressString = function() { + return ethUtil.toChecksumAddress(this.getAddressString()) +} +Wallet.fromPrivateKey = function(priv) { + return new Wallet(priv) +} +Wallet.prototype.toV3 = function(password, opts) { + opts = opts || {} + var salt = opts.salt || ethUtil.crypto.randomBytes(32) + var iv = opts.iv || ethUtil.crypto.randomBytes(16) + var derivedKey + var kdf = opts.kdf || 'scrypt' + var kdfparams = { + dklen: opts.dklen || 32, + salt: salt.toString('hex') + } + if (kdf === 'pbkdf2') { + kdfparams.c = opts.c || 262144 + kdfparams.prf = 'hmac-sha256' + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') + } else if (kdf === 'scrypt') { + // FIXME: support progress reporting callback + kdfparams.n = opts.n || 262144 + kdfparams.r = opts.r || 8 + kdfparams.p = opts.p || 1 + derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else { + throw new Error('Unsupported kdf') + } + var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) + if (!cipher) { + throw new Error('Unsupported cipher') + } + var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) + return { + version: 3, + id: ethUtil.uuid.v4({ + random: opts.uuid || ethUtil.crypto.randomBytes(16) + }), + address: this.getAddress().toString('hex'), + Crypto: { + ciphertext: ciphertext.toString('hex'), + cipherparams: { + iv: iv.toString('hex') + }, + cipher: opts.cipher || 'aes-128-ctr', + kdf: kdf, + kdfparams: kdfparams, + mac: mac.toString('hex') + } + } +} +Wallet.prototype.toJSON = function() { + return { + address: this.getAddressString(), + checksumAddress: this.getChecksumAddressString(), + privKey: this.getPrivateKeyString(), + pubKey: this.getPublicKeyString(), + publisher:"MyEtherWallet", + encrypted:false, + version:2 + } +} +Wallet.fromMyEtherWallet = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var privKey + if (!json.locked) { + if (json.private.length !== 64) { + throw new Error('Invalid private key length') + } + privKey = new Buffer(json.private, 'hex') + } else { + if (typeof password !== 'string') { + throw new Error('Password required') + } + if (password.length < 7) { + throw new Error('Password must be at least 7 characters') + } + var cipher = json.encrypted ? json.private.slice(0, 128) : json.private + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + } + var wallet = new Wallet(privKey) + if (wallet.getAddressString() !== json.address) { + throw new Error('Invalid private key or address') + } + return wallet +} +Wallet.fromMyEtherWalletV2 = function (input){ + var json = (typeof input === 'object') ? input : JSON.parse(input); + if (json.privKey.length !== 64) { + throw new Error('Invalid private key length'); + }; + var privKey = new Buffer(json.privKey, 'hex'); + return new Wallet(privKey); +} +Wallet.fromEthSale = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var encseed = new Buffer(json.encseed, 'hex') + var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) + var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) + var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) + var wallet = new Wallet(ethUtil.sha3(seed)) + if (wallet.getAddress().toString('hex') !== json.ethaddr) { + throw new Error('Decoded key mismatch - possibly wrong passphrase') + } + return wallet +} +Wallet.fromMyEtherWalletKey = function(input, password) { + var cipher = input.slice(0, 128) + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + return new Wallet(privKey) +} +Wallet.fromV3 = function(input, password, nonStrict) { + var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) + if (json.version !== 3) { + throw new Error('Not a V3 wallet') + } + var derivedKey + var kdfparams + if (json.crypto.kdf === 'scrypt') { + kdfparams = json.crypto.kdfparams + derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else if (json.crypto.kdf === 'pbkdf2') { + kdfparams = json.crypto.kdfparams + if (kdfparams.prf !== 'hmac-sha256') { + throw new Error('Unsupported parameters to PBKDF2') + } + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') + } else { + throw new Error('Unsupported key derivation scheme') + } + var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) + if (mac.toString('hex') !== json.crypto.mac) { + throw new Error('Key derivation failed - possibly wrong passphrase') + } + var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) + var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') + return new Wallet(seed) +} +Wallet.prototype.toV3String = function(password, opts) { + return JSON.stringify(this.toV3(password, opts)) +} +Wallet.prototype.getV3Filename = function (timestamp) { + var ts = timestamp ? new Date(timestamp) : new Date() + return [ + 'UTC--', + ts.toJSON().replace(/:/g, '-'), + '--', + this.getAddress().toString('hex') + ].join('') +} +Wallet.decipherBuffer = function(decipher, data) { + return Buffer.concat([decipher.update(data), decipher.final()]) +} +Wallet.decodeCryptojsSalt = function(input) { + var ciphertext = new Buffer(input, 'base64') + if (ciphertext.slice(0, 8).toString() === 'Salted__') { + return { + salt: ciphertext.slice(8, 16), + ciphertext: ciphertext.slice(16) + } + } else { + return { + ciphertext: ciphertext + } + } +} +Wallet.evp_kdf = function(data, salt, opts) { + // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` + + function iter(block) { + var hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + hash.update(data) + hash.update(salt) + block = hash.digest() + for (var i = 1; i < (opts.count || 1); i++) { + hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + block = hash.digest() + } + return block + } + var keysize = opts.keysize || 16 + var ivsize = opts.ivsize || 16 + var ret = [] + var i = 0 + while (Buffer.concat(ret).length < (keysize + ivsize)) { + ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) + i++ + } + var tmp = Buffer.concat(ret) + return { + key: tmp.slice(0, keysize), + iv: tmp.slice(keysize, keysize + ivsize) + } +} +Wallet.walletRequirePass = function(ethjson) { + var jsonArr; + try { + jsonArr = JSON.parse(ethjson); + } catch (err) { + throw globalFuncs.errorMsgs[3]; + } + if (jsonArr.encseed != null) return true; + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true + else if (jsonArr.hash != null && jsonArr.locked) return true; + else if (jsonArr.hash != null && !jsonArr.locked) return false; + else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; + else + throw globalFuncs.errorMsgs[2]; +} +Wallet.getWalletFromPrivKeyFile = function(strjson, password) { + var jsonArr = JSON.parse(strjson); + if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); + else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); + else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); + else + throw globalFuncs.errorMsgs[2]; +} module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":121}],32:[function(require,module,exports){ -'use strict'; -var globalService = function($http, $httpParamSerializerJQLike) { - globalFuncs.checkAndRedirectHTTPS(); - ajaxReq.http = $http; - ajaxReq.postSerializer = $httpParamSerializerJQLike; - - var tabs = { - generateWallet: { - id: 0, - name: "NAV_GenerateWallet", - url: "generate-wallet", - mew: true, - cx: false, - }, - bulkGenerate: { - id: 1, - name: "NAV_BulkGenerate", - url: "bulk-generate", - mew: false, - cx: false - }, - myWallet: { - id: 2, - name: "NAV_MyWallets", - url: "my-wallet", - mew: false, - cx: true - }, - addWallet: { - id: 3, - name: "NAV_AddWallet", - url: "add-wallet", - mew: false, - cx: true - }, - sendTransaction: { - id: 4, - name: "NAV_SendEther", - url: "send-transaction", - mew: true, - cx: true - }, - tokens: { - id: 5, - name: "NAV_SendTokens", - url: "send-tokens", - mew: true, - cx: true - }, - offlineTransaction: { - id: 6, - name: "NAV_Offline", - url:"offline-transaction", - mew: true, - cx: false - }, - dao: { - id: 7, - name: "NAV_WithdrawDAO", - url: "the-dao", - mew: true, - cx: true - }, - digix: { - id: 8, - name: "NAV_ClaimDGD", - url: "digix", - mew: true, - cx: true - }, - deployContract: { - id: 9, - name: "NAV_DeployContract", - url: "deploy-contract", - mew: true, - cx: true - }, - viewWalletInfo: { - id: 10, - name: "NAV_ViewWallet", - url: "view-wallet-info", - mew: true, - cx: false - }, - help: { - id: 11, - name: "NAV_Help", - url: "help", - mew: true, - cx: true - } - }; - var currentTab = 0; - if(typeof chrome != 'undefined') - currentTab = chrome.windows === undefined ? 0 : 3; - return { - tabs: tabs, - currentTab: currentTab - }; -}; -module.exports = globalService; - - +},{"buffer":122}],32:[function(require,module,exports){ +'use strict'; +var globalService = function($http, $httpParamSerializerJQLike) { + globalFuncs.checkAndRedirectHTTPS(); + ajaxReq.http = $http; + ajaxReq.postSerializer = $httpParamSerializerJQLike; + + var tabs = { + generateWallet: { + id: 0, + name: "NAV_GenerateWallet", + url: "generate-wallet", + mew: true, + cx: false, + }, + bulkGenerate: { + id: 1, + name: "NAV_BulkGenerate", + url: "bulk-generate", + mew: false, + cx: false + }, + myWallet: { + id: 2, + name: "NAV_MyWallets", + url: "my-wallet", + mew: false, + cx: true + }, + addWallet: { + id: 3, + name: "NAV_AddWallet", + url: "add-wallet", + mew: false, + cx: true + }, + sendTransaction: { + id: 4, + name: "NAV_SendEther", + url: "send-transaction", + mew: true, + cx: true + }, + tokens: { + id: 5, + name: "NAV_SendTokens", + url: "send-tokens", + mew: true, + cx: true + }, + offlineTransaction: { + id: 6, + name: "NAV_Offline", + url:"offline-transaction", + mew: true, + cx: false + }, + dao: { + id: 7, + name: "NAV_WithdrawDAO", + url: "the-dao", + mew: true, + cx: true + }, + digix: { + id: 8, + name: "NAV_ClaimDGD", + url: "digix", + mew: true, + cx: true + }, + deployContract: { + id: 9, + name: "NAV_DeployContract", + url: "deploy-contract", + mew: true, + cx: true + }, + viewWalletInfo: { + id: 10, + name: "NAV_ViewWallet", + url: "view-wallet-info", + mew: true, + cx: false + }, + help: { + id: 11, + name: "NAV_Help", + url: "help", + mew: true, + cx: true + } + }; + var currentTab = 0; + if(typeof chrome != 'undefined') + currentTab = chrome.windows === undefined ? 0 : 3; + return { + tabs: tabs, + currentTab: currentTab + }; +}; +module.exports = globalService; + + },{}],33:[function(require,module,exports){ -'use strict'; -var walletService = function() { - return { - wallet: null, - password:'' - } -}; +'use strict'; +var walletService = function() { + return { + wallet: null, + password:'' + } +}; module.exports = walletService; },{}],34:[function(require,module,exports){ -'use strict'; -var Token = function(contractAddress, userAddress, symbol, decimal) { - this.contractAddress = contractAddress; - this.userAddress = userAddress - this.symbol = symbol;; - this.decimal = decimal; - this.setBalance(); - this.balance = "loading"; -} -Token.balanceHex = "0x70a08231"; -Token.transferHex = "0xa9059cbb"; -Token.popTokens = [{ - "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", - "symbol": "DAO", - "decimal": 16 -}, -{ - "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", - "symbol": "DGD", - "decimal": 9 -}, -{ - "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", - "symbol": "DGDb", - "decimal": 0 -}, -{ - "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "symbol": "MKR", - "decimal": 18 -}, -{ - "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", - "symbol": "XAUR", - "decimal": 8 -}, -{ - "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", - "symbol": "🦄 Unicorn", - "decimal": 0 -}, -{ - "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", - "symbol": "🍺 BeerCoin", - "decimal": 0 -} -]; -Token.prototype.getContractAddress = function() { - return this.contractAddress; -} -Token.prototype.getUserAddress = function() { - return this.userAddress; -} -Token.prototype.getSymbol = function() { - return this.symbol; -} -Token.prototype.getDecimal = function() { - return this.decimal; -} -Token.prototype.getBalance = function() { - return this.balance; -} -Token.prototype.getBalanceBN = function() { - return this.balanceBN; -} -Token.prototype.setBalance = function() { - var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); - var parentObj = this; - ajaxReq.getEthCall(balanceCall, function(data) { - if (!data.error) { - parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); - parentObj.balanceBN = new BigNumber(data.data).toString(); - } - }); -} -Token.prototype.getData = function(toAdd, value) { - try { - if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; - var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); - var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); - var data = Token.transferHex + toAdd + value; - return { - isError: false, - data: data - }; - } catch (e) { - return { - isError: true, - error: e - }; - } -} -module.exports = Token; +'use strict'; +var Token = function(contractAddress, userAddress, symbol, decimal) { + this.contractAddress = contractAddress; + this.userAddress = userAddress + this.symbol = symbol;; + this.decimal = decimal; + this.setBalance(); + this.balance = "loading"; +} +Token.balanceHex = "0x70a08231"; +Token.transferHex = "0xa9059cbb"; +Token.popTokens = [{ + "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "symbol": "DAO", + "decimal": 16 +}, +{ + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "symbol": "DGD", + "decimal": 9 +}, +{ + "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", + "symbol": "DGDb", + "decimal": 0 +}, +{ + "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", + "symbol": "MKR", + "decimal": 18 +}, +{ + "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "symbol": "XAUR", + "decimal": 8 +}, +{ + "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", + "symbol": "🦄 Unicorn", + "decimal": 0 +}, +{ + "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", + "symbol": "🍺 BeerCoin", + "decimal": 0 +} +]; +Token.prototype.getContractAddress = function() { + return this.contractAddress; +} +Token.prototype.getUserAddress = function() { + return this.userAddress; +} +Token.prototype.getSymbol = function() { + return this.symbol; +} +Token.prototype.getDecimal = function() { + return this.decimal; +} +Token.prototype.getBalance = function() { + return this.balance; +} +Token.prototype.getBalanceBN = function() { + return this.balanceBN; +} +Token.prototype.setBalance = function() { + var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); + var parentObj = this; + ajaxReq.getEthCall(balanceCall, function(data) { + if (!data.error) { + parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); + parentObj.balanceBN = new BigNumber(data.data).toString(); + } + }); +} +Token.prototype.getData = function(toAdd, value) { + try { + if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; + var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); + var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); + var data = Token.transferHex + toAdd + value; + return { + isError: false, + data: data + }; + } catch (e) { + return { + isError: true, + error: e + }; + } +} +module.exports = Token; },{}],35:[function(require,module,exports){ -// Arabic -'use strict'; -var ar = function() {} -ar.code = 'ar'; -ar.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ar; +// Arabic +'use strict'; +var ar = function() {} +ar.code = 'ar'; +ar.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ar; },{}],36:[function(require,module,exports){ -// Bulgarian -'use strict'; -var bg = function() {} -bg.code = 'bg'; -bg.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = bg; +// Bulgarian +'use strict'; +var bg = function() {} +bg.code = 'bg'; +bg.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = bg; },{}],37:[function(require,module,exports){ -// German -'use strict'; -var de = function() {} -de.code = 'de'; -de.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Deine Wallets', - NAV_AddWallet: 'Wallet hinzufügen', - NAV_GenerateWallet: 'Wallet erstellen', - NAV_BulkGenerate: 'Mehrere Wallets erstellen', - NAV_SendEther: 'Sende Ether', - NAV_SendTokens: 'Sende Tokens', - NAV_Offline: 'Sende offline', - NAV_WithdrawDAO: 'DAO Token entnehmen', - DAO_TitleLong: 'DAO Token in ETH umwandeln', - NAV_ClaimDGD: 'DGD geltend machen', - DGD_TitleLong: 'DGD Token geltend machen', - NAV_DeployContract: 'Vertrag aufstellen', - NAV_MyWallets: 'Meine Wallets', - NAV_ViewWallet: 'Wallet Infos anzeigen', - NAV_Help: 'Hilfe', - NAV_Contact: 'Kontakt', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Passwort', - x_Download: 'Herunterladen', - x_Address: 'Deine Adresse', - x_Save: 'Sichern', - x_Cancel: 'Abbrechen', - x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', - x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', - x_PrivKey2: 'Privater Schlüssel', - x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', - x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', - x_Json: 'JSON-Datei (unverschlüsselt)', - x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', - x_PrintShort: 'Drucken', - x_Print: 'Papier-Version des Wallets drucken', - x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', - x_CSV: 'CSV-Datei (unverschlüsselt)', - x_TXT: 'TXT-Datei (unverschlüsselt)', - - /* Header */ - MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', - CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', - FOOTER_1b: 'Erstellt von', - FOOTER_2: 'Spenden sind herzlich willkommen:', - FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Kontostand: ', - sidebar_TokenBal: 'Token Kontostand: ', - sidebar_Equiv: 'Währungs-Gegenwerte: ', - sidebar_TransHistory: 'Transaktions-Historie: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', - sidebar_donate: 'Spenden', - sidebar_thanks: 'Dankeschön!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', - decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', - decrypt_Select: 'Wallet auswählen:', - - /* Add Wallet */ - ADD_Label_1: 'Was möchtest du tun?', - ADD_Radio_1: 'Neues Wallet erstellen', - ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', - ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', - ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', - ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', - ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Label_2: 'Wähle ein Kürzel:', - ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', - ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', - ADD_Label_5: 'Kontoadresse eingeben: ', - ADD_Label_6: 'Wallet entsperren', - ADD_Label_6_short: 'Entsperren', - ADD_Label_7: 'Kontoadresse hinzufügen', - - /* Generate Wallets */ - GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', - GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', - GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', - GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', - GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', - GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', - GEN_Label_3: 'Sichere deine Kontoadresse.', - GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Anzahl zu generierender Wallets', - BULK_Label_2: 'Wallets erstellen', - BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', - - /* Sending Ether and Tokens */ - SEND_addr: 'An Adresse: ', - SEND_amount: 'Zu sendender Betrag: ', - SEND_amount_short: 'Betrag', - SEND_custom: 'Benutzerdefiniert', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', - SEND_generate: 'Erzeuge Transaktion', - SEND_raw: 'Transaktion (Binärformat)', - SEND_signed: 'Signierte Transaktion', - SEND_trans: 'Sende Transaktion', - SENDModal_Title: 'Achtung! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du bist dabei, ', - SENDModal_Content_2: ' an die Adresse ', - SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', - SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', - SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', - SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-Symbol: ', - TOKEN_Dec: 'Dezimalstellen: ', - - /* Send Transaction */ - TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', - TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', - TRANS_standard: 'ETH (Standard Transaktion)', - TRANS_eth: 'Nur ETH', - TRANS_etc: 'Nur ETC', - TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', - TRANS_data: 'Daten: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', - TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', - TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', - TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', - TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', - TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', - TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', - - /* Offline Transaction */ - OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', - OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', - OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', - OFFLINE_Step1_Button: 'Informationen sammeln', - OFFLINE_Step1_Label_1: 'Von Adresse: ', - OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', - OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', - OFFLINE_Step2_Label_1: 'An Adresse: ', - OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', - OFFLINE_Step2_Label_3: 'Gaspreis ', - OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_6: 'Daten', - OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', - OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', - OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', - OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', - - /* DAO */ - DAO_bal1: 'Bei Block 1,919,999', - DAO_bal2: 'momentan', // momentaner? - DAO_TitleETH: 'DAO Token in ETH umwandeln', - DAO_TitleETC: 'DAO Token in ETC umwandeln', - DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', - DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', - DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', - DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', - DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', - DAOModal_Title: 'Nur zur Sicherheit...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Du bist dabei', - DAOModal_2: 'DAO Token an', - DAOModal_3: 'zu senden im Austausch für', // "in return for" - - /* Digix */ - DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', - DGD_Label_1: 'Erwartete Gebühren:', - DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ - DGD_Label_3: 'Gaspreis:', - DGD_Generate: 'Anspruch geltend machen', - DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode generieren', - DEP_generated: 'Generierter Bytecode', - DEP_signtx: 'Transaktion signieren', - DEP_interface: 'Generiertes Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Spitzname', - MYWAL_Address: 'Wallet Addresse', - MYWAL_Bal: 'Guthaben', - MYWAL_Edit: 'Bearbeiten', - MYWAL_View: 'Ansehen', - MYWAL_Remove: 'Löschen', - MYWAL_RemoveWal: 'Wallet löschen:', - MYWAL_WatchOnly: 'Deine Watch-Only Konten', - MYWAL_Viewing: 'Du siehst Wallet: ', - MYWAL_Hide: 'Wallet Info verstecken', - MYWAL_Edit_2: 'Wallet bearbeiten: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', - MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', - MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', - VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', - VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', - - /* Chrome Extension */ - CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', - CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Bitte gültigen Betrag eingeben', - ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', - ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', - ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', - ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', - ERROR_6: 'Ungültige Addresse. ', - ERROR_7: 'Ungültiges Passwort. ', - ERROR_8: 'Ungültiger Betrag. ', - ERROR_9: 'Ungültiges Gaslimit. ', - ERROR_10: 'Ungültiger Datenwert. ', - ERROR_11: 'Ungültiger Gasbetrag. ', - ERROR_12: 'Ungültige Nonce. ', - ERROR_13: 'Ungültige unterzeichnete Transaktion. ', - ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', - ERROR_15: 'Wallet nicht gefunden. ', - ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', - ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', - ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', - ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', - ERROR_20: 'Ungültiges Symbol', - SUCCESS_1: 'Gültige Addresse', - SUCCESS_2: 'Wallet erfolgreich entschlüsselt', - SUCCESS_3: 'Transaktion übermittelt. TX ID: ', - SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', - SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', - SUCCESS_6: 'Ausgewählte Datei: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', - TranslatorName_1: 'christoph2806 · K ·', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', - TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'huhn_solo · ', - TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', - TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: 'danielsun174 · ffidan61', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', - HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', - HELP_Remind_Title: 'Ein paar Reminder', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', - HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', - - HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', - HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', - HELP_0_Desc_2: 'Erstelle ein neues Wallet.', - HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', - HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', - HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', - - HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', - HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', - HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', - HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', - HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', - HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', - - HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', - HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', - HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', - HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', - HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', - HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', - HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Entpacke es.', - HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Wenn du an einem PC bist:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = de; +// German +'use strict'; +var de = function() {} +de.code = 'de'; +de.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Deine Wallets', + NAV_AddWallet: 'Wallet hinzufügen', + NAV_GenerateWallet: 'Wallet erstellen', + NAV_BulkGenerate: 'Mehrere Wallets erstellen', + NAV_SendEther: 'Sende Ether', + NAV_SendTokens: 'Sende Tokens', + NAV_Offline: 'Sende offline', + NAV_WithdrawDAO: 'DAO Token entnehmen', + DAO_TitleLong: 'DAO Token in ETH umwandeln', + NAV_ClaimDGD: 'DGD geltend machen', + DGD_TitleLong: 'DGD Token geltend machen', + NAV_DeployContract: 'Vertrag aufstellen', + NAV_MyWallets: 'Meine Wallets', + NAV_ViewWallet: 'Wallet Infos anzeigen', + NAV_Help: 'Hilfe', + NAV_Contact: 'Kontakt', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Passwort', + x_Download: 'Herunterladen', + x_Address: 'Deine Adresse', + x_Save: 'Sichern', + x_Cancel: 'Abbrechen', + x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', + x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', + x_PrivKey2: 'Privater Schlüssel', + x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', + x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', + x_Json: 'JSON-Datei (unverschlüsselt)', + x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', + x_PrintShort: 'Drucken', + x_Print: 'Papier-Version des Wallets drucken', + x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', + x_CSV: 'CSV-Datei (unverschlüsselt)', + x_TXT: 'TXT-Datei (unverschlüsselt)', + + /* Header */ + MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', + CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', + FOOTER_1b: 'Erstellt von', + FOOTER_2: 'Spenden sind herzlich willkommen:', + FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Kontostand: ', + sidebar_TokenBal: 'Token Kontostand: ', + sidebar_Equiv: 'Währungs-Gegenwerte: ', + sidebar_TransHistory: 'Transaktions-Historie: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', + sidebar_donate: 'Spenden', + sidebar_thanks: 'Dankeschön!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', + decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', + decrypt_Select: 'Wallet auswählen:', + + /* Add Wallet */ + ADD_Label_1: 'Was möchtest du tun?', + ADD_Radio_1: 'Neues Wallet erstellen', + ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', + ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', + ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', + ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', + ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Label_2: 'Wähle ein Kürzel:', + ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', + ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', + ADD_Label_5: 'Kontoadresse eingeben: ', + ADD_Label_6: 'Wallet entsperren', + ADD_Label_6_short: 'Entsperren', + ADD_Label_7: 'Kontoadresse hinzufügen', + + /* Generate Wallets */ + GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', + GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', + GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', + GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', + GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', + GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', + GEN_Label_3: 'Sichere deine Kontoadresse.', + GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Anzahl zu generierender Wallets', + BULK_Label_2: 'Wallets erstellen', + BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', + + /* Sending Ether and Tokens */ + SEND_addr: 'An Adresse: ', + SEND_amount: 'Zu sendender Betrag: ', + SEND_amount_short: 'Betrag', + SEND_custom: 'Benutzerdefiniert', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', + SEND_generate: 'Erzeuge Transaktion', + SEND_raw: 'Transaktion (Binärformat)', + SEND_signed: 'Signierte Transaktion', + SEND_trans: 'Sende Transaktion', + SENDModal_Title: 'Achtung! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du bist dabei, ', + SENDModal_Content_2: ' an die Adresse ', + SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', + SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', + SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', + SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-Symbol: ', + TOKEN_Dec: 'Dezimalstellen: ', + + /* Send Transaction */ + TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', + TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', + TRANS_standard: 'ETH (Standard Transaktion)', + TRANS_eth: 'Nur ETH', + TRANS_etc: 'Nur ETC', + TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', + TRANS_data: 'Daten: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', + TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', + TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', + TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', + TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', + TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', + TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', + + /* Offline Transaction */ + OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', + OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', + OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', + OFFLINE_Step1_Button: 'Informationen sammeln', + OFFLINE_Step1_Label_1: 'Von Adresse: ', + OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', + OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', + OFFLINE_Step2_Label_1: 'An Adresse: ', + OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', + OFFLINE_Step2_Label_3: 'Gaspreis ', + OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_6: 'Daten', + OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', + OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', + OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', + OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', + + /* DAO */ + DAO_bal1: 'Bei Block 1,919,999', + DAO_bal2: 'momentan', // momentaner? + DAO_TitleETH: 'DAO Token in ETH umwandeln', + DAO_TitleETC: 'DAO Token in ETC umwandeln', + DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', + DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', + DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', + DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', + DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', + DAOModal_Title: 'Nur zur Sicherheit...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Du bist dabei', + DAOModal_2: 'DAO Token an', + DAOModal_3: 'zu senden im Austausch für', // "in return for" + + /* Digix */ + DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', + DGD_Label_1: 'Erwartete Gebühren:', + DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ + DGD_Label_3: 'Gaspreis:', + DGD_Generate: 'Anspruch geltend machen', + DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode generieren', + DEP_generated: 'Generierter Bytecode', + DEP_signtx: 'Transaktion signieren', + DEP_interface: 'Generiertes Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Spitzname', + MYWAL_Address: 'Wallet Addresse', + MYWAL_Bal: 'Guthaben', + MYWAL_Edit: 'Bearbeiten', + MYWAL_View: 'Ansehen', + MYWAL_Remove: 'Löschen', + MYWAL_RemoveWal: 'Wallet löschen:', + MYWAL_WatchOnly: 'Deine Watch-Only Konten', + MYWAL_Viewing: 'Du siehst Wallet: ', + MYWAL_Hide: 'Wallet Info verstecken', + MYWAL_Edit_2: 'Wallet bearbeiten: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', + MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', + MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', + VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', + VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', + + /* Chrome Extension */ + CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', + CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Bitte gültigen Betrag eingeben', + ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', + ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', + ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', + ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', + ERROR_6: 'Ungültige Addresse. ', + ERROR_7: 'Ungültiges Passwort. ', + ERROR_8: 'Ungültiger Betrag. ', + ERROR_9: 'Ungültiges Gaslimit. ', + ERROR_10: 'Ungültiger Datenwert. ', + ERROR_11: 'Ungültiger Gasbetrag. ', + ERROR_12: 'Ungültige Nonce. ', + ERROR_13: 'Ungültige unterzeichnete Transaktion. ', + ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', + ERROR_15: 'Wallet nicht gefunden. ', + ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', + ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', + ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', + ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', + ERROR_20: 'Ungültiges Symbol', + SUCCESS_1: 'Gültige Addresse', + SUCCESS_2: 'Wallet erfolgreich entschlüsselt', + SUCCESS_3: 'Transaktion übermittelt. TX ID: ', + SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', + SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', + SUCCESS_6: 'Ausgewählte Datei: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', + TranslatorName_1: 'christoph2806 · K ·', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', + TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'huhn_solo · ', + TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', + TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: 'danielsun174 · ffidan61', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', + HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', + HELP_Remind_Title: 'Ein paar Reminder', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', + HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', + + HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', + HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', + HELP_0_Desc_2: 'Erstelle ein neues Wallet.', + HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', + HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', + HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', + + HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', + HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', + HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', + HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', + HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', + HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', + + HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', + HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', + HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', + HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', + HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', + HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', + HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Entpacke es.', + HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Wenn du an einem PC bist:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = de; },{}],38:[function(require,module,exports){ -// Greek -'use strict'; -var el = function() {} -el.code = 'el'; -el.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - SUCCESS_6: 'File Selected: ', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* Navigation*/ - NAV_YourWallets: 'Τα Πορτοφόλια σας', - NAV_AddWallet: 'Προσθήκη Πορτοφολιού', - NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', - NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', - NAV_SendEther: 'Αποστολή Ether', - NAV_SendTokens: 'Αποστολή Tokens', - NAV_Offline: 'Αποστολή εκτός Σύνδεσης', - NAV_WithdrawDAO: 'Ανάληψη DAO', - DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', - NAV_ClaimDGD: 'Διεκδίκηση DGD', - DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', - NAV_MyWallets: 'Τα Πορτοφόλια μου', - NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', - NAV_Help: 'Βοήθεια', - NAV_Contact: 'Επικοινωνία', - - /* General */ - x_Wallet: 'Πορτοφόλι', - x_Password: 'Κωδικός', - x_Download: 'Λήψη', - x_Address: 'Η Διεύθυνσή σας', - x_Save: 'Αποθήκευση', - x_Cancel: 'Ακύρωση', - x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', - x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', - x_PrivKey2: 'Ιδιωτικό Κλειδί', - x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', - x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', - x_Keystore2: 'Αρχείο Keystore/JSON', - x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', - x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', - x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', - x_PrintShort: 'Εκτύπωση', - x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', - x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', - x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', - x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', - - /* Header */ - MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', - CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', - MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - - /* Footer */ - FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', - FOOTER_1b: 'Δημιουργήθηκε από', - FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', - FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', - - /* Sidebar */ - sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', - sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', - sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', - sidebar_TokenBal: 'Υπόλοιπο Token: ', - sidebar_Equiv: 'Ισότιμες Αξίες: ', - sidebar_TransHistory: 'Ιστορικό Συναλλαγών', - sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', - sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', - sidebar_donate: 'Δωρεά', - sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', - decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', - decrypt_Select: 'Επιλέξτε Πορτοφόλι:', - - /* Add Wallet */ - ADD_Label_1: 'Τι θα θέλατε να κάνετε;', - ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', - ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', - ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', - ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', - ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', - ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', - ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', - ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', - ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', - ADD_Label_6_short: 'Ξεκλείδωμα', - ADD_Label_7: 'Προσθήκη Λογαριασμού', - - /* Generate Wallets */ - GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', - GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', - GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', - GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', - GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', - GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', - GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', - GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', - BULK_Label_2: 'Δημιουργία Πορτοφολιών', - BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Προς Διεύθυνση: ', - SEND_amount: 'Ποσό για αποστολή: ', - SEND_amount_short: 'Ποσό', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', - SEND_raw: 'Ακατέργαστη Συναλλαγή', - SEND_signed: 'Υπογεγραμμένη Συναλλαγή', - SEND_trans: 'Αποστολή Συναλλαγής', - SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', - SENDModal_Title: 'Προσοχή! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Πρόκειται να στείλετε', - SENDModal_Content_2: 'στη διεύθυνση', - SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', - SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', - SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', - SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', - SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', - - /* Tokens */ - TOKEN_Addr: 'Διεύθυνση: ', - TOKEN_Symbol: 'Σύμβολο Token: ', - TOKEN_Dec: 'Δεκαδικά: ', - - /* Send Transaction */ - TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', - TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', - TRANS_standard: 'ETH (Standard Συναλλαγή)', - TRANS_eth: 'Μόνο ETH', - TRANS_etc: 'Μόνο ETC', - TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', - TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', - TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', - TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', - TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', - - /* Offline Transaction */ - OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', - OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', - OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', - OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', - OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', - OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', - OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', - OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', - OFFLINE_Step2_Label_3: 'Τιμή Gas ', - OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_4: 'Όριο Gas ', - OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', - OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', - OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', - - /* DAO */ - DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', - DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', - DAOModal_Title: 'Απλά για σιγουριά...', - - /* Digix */ - DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', - DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', - DGD_Label_3: 'Τιμή Gas:', - DGD_Generate: 'Δημιουργία Διεκδίκησης', - DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', - - /* My Wallet */ - MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', - MYWAL_Address: 'Διεύθυνση Πορτοφολιού', - MYWAL_Bal: 'Υπόλοιπο', - MYWAL_Edit: 'Επεξεργασία', - MYWAL_View: 'Προβολή', - MYWAL_Remove: 'Αφαίρεση', - MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', - MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', - MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', - MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', - MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', - MYWAL_Name: 'Όνομα Πορτοφολιού', - MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', - MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', - MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', - VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', - - /* CX */ - CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', - CX_quicksend: 'ΤαχυΑποστολή', - - /* Error Messages */ - ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', - ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', - ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', - ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', - ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', - ERROR_6: 'Λάθος Διεύθυνση. ', - ERROR_7: 'Λάθος κωδικός. ', - ERROR_8: 'Λάθος ποσό. ', - ERROR_9: 'Λάθος όριο gas. ', - ERROR_10: 'Λάθος data value. ', - ERROR_11: 'Λάθος ποσό gas. ', - ERROR_12: 'Λάθος nonce. ', - ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', - ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', - ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', - ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', - ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', - ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', - ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', - ERROR_20: 'Λάθος σύμβολο', - SUCCESS_1: 'Έγκυρη διεύθυνση', - SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', - SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', - SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', - SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', - TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'LefterisJP', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'Nikos Vavoulas ', - TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', - HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', - HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', - HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', - HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', - HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', - - HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', - HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', - HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', - HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', - HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', - HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = el; +// Greek +'use strict'; +var el = function() {} +el.code = 'el'; +el.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + SUCCESS_6: 'File Selected: ', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Τα Πορτοφόλια σας', + NAV_AddWallet: 'Προσθήκη Πορτοφολιού', + NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', + NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', + NAV_SendEther: 'Αποστολή Ether', + NAV_SendTokens: 'Αποστολή Tokens', + NAV_Offline: 'Αποστολή εκτός Σύνδεσης', + NAV_WithdrawDAO: 'Ανάληψη DAO', + DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', + NAV_ClaimDGD: 'Διεκδίκηση DGD', + DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', + NAV_MyWallets: 'Τα Πορτοφόλια μου', + NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', + NAV_Help: 'Βοήθεια', + NAV_Contact: 'Επικοινωνία', + + /* General */ + x_Wallet: 'Πορτοφόλι', + x_Password: 'Κωδικός', + x_Download: 'Λήψη', + x_Address: 'Η Διεύθυνσή σας', + x_Save: 'Αποθήκευση', + x_Cancel: 'Ακύρωση', + x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', + x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', + x_PrivKey2: 'Ιδιωτικό Κλειδί', + x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', + x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', + x_Keystore2: 'Αρχείο Keystore/JSON', + x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', + x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', + x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', + x_PrintShort: 'Εκτύπωση', + x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', + x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', + x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', + x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', + + /* Header */ + MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', + CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', + MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + + /* Footer */ + FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', + FOOTER_1b: 'Δημιουργήθηκε από', + FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', + FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', + + /* Sidebar */ + sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', + sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', + sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', + sidebar_TokenBal: 'Υπόλοιπο Token: ', + sidebar_Equiv: 'Ισότιμες Αξίες: ', + sidebar_TransHistory: 'Ιστορικό Συναλλαγών', + sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', + sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', + sidebar_donate: 'Δωρεά', + sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', + decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', + decrypt_Select: 'Επιλέξτε Πορτοφόλι:', + + /* Add Wallet */ + ADD_Label_1: 'Τι θα θέλατε να κάνετε;', + ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', + ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', + ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', + ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', + ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', + ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', + ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', + ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', + ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', + ADD_Label_6_short: 'Ξεκλείδωμα', + ADD_Label_7: 'Προσθήκη Λογαριασμού', + + /* Generate Wallets */ + GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', + GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', + GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', + GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', + GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', + GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', + GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', + GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', + BULK_Label_2: 'Δημιουργία Πορτοφολιών', + BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Προς Διεύθυνση: ', + SEND_amount: 'Ποσό για αποστολή: ', + SEND_amount_short: 'Ποσό', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', + SEND_raw: 'Ακατέργαστη Συναλλαγή', + SEND_signed: 'Υπογεγραμμένη Συναλλαγή', + SEND_trans: 'Αποστολή Συναλλαγής', + SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', + SENDModal_Title: 'Προσοχή! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Πρόκειται να στείλετε', + SENDModal_Content_2: 'στη διεύθυνση', + SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', + SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', + SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', + SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', + SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', + + /* Tokens */ + TOKEN_Addr: 'Διεύθυνση: ', + TOKEN_Symbol: 'Σύμβολο Token: ', + TOKEN_Dec: 'Δεκαδικά: ', + + /* Send Transaction */ + TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', + TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', + TRANS_standard: 'ETH (Standard Συναλλαγή)', + TRANS_eth: 'Μόνο ETH', + TRANS_etc: 'Μόνο ETC', + TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', + TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', + TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', + TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', + TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', + + /* Offline Transaction */ + OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', + OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', + OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', + OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', + OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', + OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', + OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', + OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', + OFFLINE_Step2_Label_3: 'Τιμή Gas ', + OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_4: 'Όριο Gas ', + OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', + OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', + OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', + + /* DAO */ + DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', + DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', + DAOModal_Title: 'Απλά για σιγουριά...', + + /* Digix */ + DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', + DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', + DGD_Label_3: 'Τιμή Gas:', + DGD_Generate: 'Δημιουργία Διεκδίκησης', + DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', + + /* My Wallet */ + MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', + MYWAL_Address: 'Διεύθυνση Πορτοφολιού', + MYWAL_Bal: 'Υπόλοιπο', + MYWAL_Edit: 'Επεξεργασία', + MYWAL_View: 'Προβολή', + MYWAL_Remove: 'Αφαίρεση', + MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', + MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', + MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', + MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', + MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', + MYWAL_Name: 'Όνομα Πορτοφολιού', + MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', + MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', + MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', + VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', + + /* CX */ + CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', + CX_quicksend: 'ΤαχυΑποστολή', + + /* Error Messages */ + ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', + ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', + ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', + ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', + ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', + ERROR_6: 'Λάθος Διεύθυνση. ', + ERROR_7: 'Λάθος κωδικός. ', + ERROR_8: 'Λάθος ποσό. ', + ERROR_9: 'Λάθος όριο gas. ', + ERROR_10: 'Λάθος data value. ', + ERROR_11: 'Λάθος ποσό gas. ', + ERROR_12: 'Λάθος nonce. ', + ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', + ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', + ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', + ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', + ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', + ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', + ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', + ERROR_20: 'Λάθος σύμβολο', + SUCCESS_1: 'Έγκυρη διεύθυνση', + SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', + SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', + SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', + SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', + TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'LefterisJP', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'Nikos Vavoulas ', + TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', + HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', + HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', + HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', + HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', + HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', + + HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', + HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', + HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', + HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', + HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', + HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = el; },{}],39:[function(require,module,exports){ -// English -'use strict'; -var en = function() {} -en.code = 'en'; -en.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: '', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = en; +// English +'use strict'; +var en = function() {} +en.code = 'en'; +en.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: '', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = en; },{}],40:[function(require,module,exports){ -// Spanish -'use strict'; -var es = function() {} -es.code = 'es'; -es.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Tus Carteras', - NAV_AddWallet: 'Añadir Cartera', - NAV_GenerateWallet: 'Generar Cartera', - NAV_BulkGenerate: 'Generar en Masa', - NAV_SendEther: 'Enviar Ether', - NAV_SendTokens: 'Enviar Tokens', - NAV_Offline: 'Enviar Desconectado', - NAV_WithdrawDAO: 'Retirar DAO', - DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', - NAV_ClaimDGD: 'Reclamar DGD', - DGD_TitleLong: 'Reclamar Tus Vales DGD', - NAV_MyWallets: 'Mis Carteras', - NAV_ViewWallet: 'Ver Información de las Carteras', - NAV_Help: 'Ayuda', - NAV_Contact: 'Contacto', - - /* General */ - x_Password: 'Contraseña', - x_Download: 'Descargar', - x_Address: 'Tu dirección', - x_Save: 'Guardar', - x_Cancel: 'Cancelar', - x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', - x_PrivKey: 'Clave Privada (sin encriptar)', - x_PrivKey2: 'Clave Privada', - x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', - x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', - x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', - x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', - x_Json: 'Fichero JSON (sin encriptar)', - x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', - x_PrintShort: 'Imprimir', - x_Print: 'Imprimir Cartera de Papel', - x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', - x_CSV: 'Fichero CSV (sin encriptar)', - x_TXT: 'Fichero TXT (sin encriptar)', - x_Wallet: 'Cartera', - -/* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Gracias a nuestros traductores: ', - TranslatorName_1: 'Ignacio Fernández del Álamo', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = es; +// Spanish +'use strict'; +var es = function() {} +es.code = 'es'; +es.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Tus Carteras', + NAV_AddWallet: 'Añadir Cartera', + NAV_GenerateWallet: 'Generar Cartera', + NAV_BulkGenerate: 'Generar en Masa', + NAV_SendEther: 'Enviar Ether', + NAV_SendTokens: 'Enviar Tokens', + NAV_Offline: 'Enviar Desconectado', + NAV_WithdrawDAO: 'Retirar DAO', + DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', + NAV_ClaimDGD: 'Reclamar DGD', + DGD_TitleLong: 'Reclamar Tus Vales DGD', + NAV_MyWallets: 'Mis Carteras', + NAV_ViewWallet: 'Ver Información de las Carteras', + NAV_Help: 'Ayuda', + NAV_Contact: 'Contacto', + + /* General */ + x_Password: 'Contraseña', + x_Download: 'Descargar', + x_Address: 'Tu dirección', + x_Save: 'Guardar', + x_Cancel: 'Cancelar', + x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', + x_PrivKey: 'Clave Privada (sin encriptar)', + x_PrivKey2: 'Clave Privada', + x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', + x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', + x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', + x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', + x_Json: 'Fichero JSON (sin encriptar)', + x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', + x_PrintShort: 'Imprimir', + x_Print: 'Imprimir Cartera de Papel', + x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', + x_CSV: 'Fichero CSV (sin encriptar)', + x_TXT: 'Fichero TXT (sin encriptar)', + x_Wallet: 'Cartera', + +/* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Gracias a nuestros traductores: ', + TranslatorName_1: 'Ignacio Fernández del Álamo', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = es; },{}],41:[function(require,module,exports){ -// Estonian -'use strict'; -var et = function() {} -et.code = 'et'; -et.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = et; +// Estonian +'use strict'; +var et = function() {} +et.code = 'et'; +et.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = et; },{}],42:[function(require,module,exports){ -// French -'use strict'; -var fr = function() {} -fr.code = 'fr'; -fr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Vos portefeuilles', - NAV_AddWallet: 'Ajout de portefeuille', - NAV_GenerateWallet: 'Génération de portefeuille', - NAV_BulkGenerate: 'Génération de portefeuilles par lots', - NAV_SendEther: 'Envoi d\'Ether', - NAV_SendTokens: 'Envoi de tokens', - NAV_Offline: 'Envoi hors-ligne', - NAV_WithdrawDAO: 'Retrait de la DAO', - DAO_TitleLong: 'Échange de tokens DAO contre des ETH', - NAV_ClaimDGD: 'Réclamation de DGD', - DGD_TitleLong: 'Réclamation de vos tokens DGD', - NAV_DeployContract: 'Déployer un contrat', - NAV_MyWallets: 'Mes portefeuilles', - NAV_ViewWallet: 'Visualisation d\'un portefeuille', - NAV_Help: 'Aide', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Portefeuille', - x_Password: 'Mot de passe', - x_Download: 'Télécharger', - x_Address: 'Votre adresse', - x_Save: 'Sauvegarder', - x_Cancel: 'Annuler', - x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', - x_PrivKey: 'Clé privée (non-chiffrée)', - x_PrivKey2: 'Clé privée', - x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', - x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', - x_Keystore2: 'Fichier Keystore/JSON', - x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', - x_Json: 'Fichier JSON (non-chiffré)', - x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', - x_PrintShort: 'Imprimer', - x_Print: 'Imprimer un portefeuille papier', - x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', - x_CSV: 'Fichier CSV (non-chiffré)', - x_TXT: 'Fichier TXT (non-chiffré)', - - /* Header */ - MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', - CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', - MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', - CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', - - /* Footer */ - FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', - FOOTER_1b: 'Créé par', - FOOTER_2: 'Donations extrêmement appréciées :', - FOOTER_3: 'Génération de portefeuille côté client par', - FOOTER_4: 'Avertissement', - - /* Sidebar */ - sidebar_AccountInfo: 'Informations du compte : ', - sidebar_AccountAddr: 'Addresse du compte : ', - sidebar_AccountBal: 'Solde du compte : ', - sidebar_TokenBal: 'Solde en tokens : ', - sidebar_Equiv: 'Valeur correspondante : ', - sidebar_TransHistory: 'Historique des transactions: ', - sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', - sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', - sidebar_donate: 'Faire une donation', - sidebar_thanks: 'MERCI !!!', - - /* Decrypt Panel */ - decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', - decrypt_Title: 'Choisissez le format de votre clé privée', - decrypt_Select: 'Choisissez un portefeuille :', - - /* Add Wallet */ - ADD_Label_1: 'Que voulez-vous faire ?', - ADD_Radio_1: 'Générer un nouveau portefeuille', - ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', - ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', - ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', - ADD_Radio_3: 'Collez/saisissez votre clé privée', - ADD_Radio_4: 'Ajoutez un compte', - ADD_Label_2: 'Nommez votre compte :', - ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', - ADD_Label_4: 'Ajouter un compte à afficher', - ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', - ADD_Label_5: 'Entrez l\'adresse : ', - ADD_Label_6: 'Déverrouiller votre portefeuille', - ADD_Label_6_short: 'Déverrouiller', - ADD_Label_7: 'Ajouter un compte', - - /* Generate Wallets */ - GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', - GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', - GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', - GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', - GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', - GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', - GEN_Label_3: 'Sauvegarder votre portefeuille.', - GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Nombre de portefeuilles à générer', - BULK_Label_2: 'Générer les portefeuilles', - BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Adresse de destination : ', - SEND_amount: 'Montant à envoyer : ', - SEND_amount_short: 'Montant', - SEND_custom: 'Spécifique', - SEND_gas: 'Gaz', - SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter - SEND_generate: 'Générer la transaction', - SEND_raw: 'Transaction brute', - SEND_signed: 'Transaction signée', - SEND_trans: 'Envoyer la transaction', - SENDModal_Title: 'Attention ! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', - SENDModal_Content_2: 'à l\'adresse', - SENDModal_Content_3: 'En êtes-vous sûr ?', - SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', - SENDModal_No: 'Non, je veux sortir d\'ici !', - SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adresse : ', - TOKEN_Symbol: 'Symbole du token : ', - TOKEN_Dec: 'Décimales : ', - - /* Send Transaction */ - TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', - TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', - TRANS_standard: 'ETH (transaction standard)', - TRANS_eth: 'ETH seulement', - TRANS_etc: 'ETC seulement', - TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', - TRANS_data: ' Données : ', - TRANS_gas: ' Gaz : ', - TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', - TRANSModal_Content_0: 'Note sur les transactions et services divers :', - TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', - TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', - TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', - TRANSModal_Yes: 'Génial, j\'ai compris.', - TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', - - /* Offline Transaction */ - OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', - OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', - OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', - OFFLINE_Step1_Button: 'Générer l\'information', - OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', - OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', - OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', - OFFLINE_Step2_Label_1: 'Adresse de destination : ', - OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', - OFFLINE_Step2_Label_3: 'Prix du gaz ', - OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_4: 'Limite de gaz ', - OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_6: 'Données', - OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', - OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', - OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', - OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', - - /* DAO */ - DAO_bal1: 'au bloc 1.919.999', - DAO_bal2: 'actuel', - DAO_TitleETH: 'Retrait de DAO en ETH', - DAO_TitleETC: 'Retrait de DAO en ETC', - DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', - DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', - DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', - DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', - DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', - DAOModal_Title: 'Juste pour être sûr...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Vous êtes sur le point de retirer', - DAOModal_2: 'tokens DAO vers', - DAOModal_3: 'pour', // "in return for" - - /* Digix */ - DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', - DGD_Label_1: 'Estimation des frais consommés :', - DGD_Label_2: 'Frais maximum fournis :', - DGD_Label_3: 'Prix du gaz :', - DGD_Generate: 'Générer une réclamation', - DGD_Content: 'Vous allez réclamer vos tokens DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Générer le bytecode', - DEP_generated: 'Bytecode généré', - DEP_signtx: 'Signer la transaction', - DEP_interface: 'Interface générée', - - /* My Wallet */ - MYWAL_Nick: 'Nom du portefeuille', - MYWAL_Address: 'Adresse du portefeuille', - MYWAL_Bal: 'Solde', - MYWAL_Edit: 'Modifier', - MYWAL_View: 'Voir', - MYWAL_Remove: 'Supprimer', - MYWAL_RemoveWal: 'Supprimer le portefeuille :', - MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', - MYWAL_Viewing: 'Affichage des portefeuilles : ', - MYWAL_Hide: 'Cacher les informations sur le portefeuille', - MYWAL_Edit_2: 'Modifier le portefeuille : ', - MYWAL_Name: 'Nom du portefeuille', - MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', - MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', - MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', - VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', - - /* Chrome Extension */ - CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', - CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Veuillez entrer un montant valide.', - ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', - ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', - ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', - ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', - ERROR_6: 'Adresse invalide. ', - ERROR_7: 'Mot de passe invalide. ', - ERROR_8: 'Montant invalide. ', - ERROR_9: 'Limite de gaz invalide. ', - ERROR_10: 'Valeur des donnnées invalide. ', - ERROR_11: 'Montant de gaz invalide. ', - ERROR_12: 'Nonce invalide. ', - ERROR_13: 'Transaction signée invalide. ', - ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', - ERROR_15: 'Portefeuille non trouvé. ', - ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', - ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', - ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', - ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', - ERROR_20: 'Symbole invalide', - SUCCESS_1: 'Adresse valide', - SUCCESS_2: 'Portefeuille déchiffré avec succès', - SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', - SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', - SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', - SUCCESS_6: 'Fichier sélectionné : ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', - /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ - TranslatorName_2: 'Jean Zundel · ', - TranslatorAddr_2: '', - /* Translator 2: */ - TranslatorName_3: 'girards', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', - HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', - HELP_Remind_Title: 'Quelques rappels :', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', - HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', - - HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', - HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', - HELP_0_Desc_2: 'Créez un nouveau portefeuille.', - HELP_0_Desc_3: 'Sauvegardez le portefeuille.', - HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', - HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', - - HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', - HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', - HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', - HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', - HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', - HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', - - HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', - HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', - HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', - HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', - HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', - HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', - HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', - - HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', - HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', - HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', - HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', - HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', - HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', - HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', - - HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', - HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', - HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', - HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', - HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', - HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', - - HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', - HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', - HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', - HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', - HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', - HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', - HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', - HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', - HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', - HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', - HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', - - - HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', - HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', - HELP_4CX_Desc_2: 'Envoi rapide :', - HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', - HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', - HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', - HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', - HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', - HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', - HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', - HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', - HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', - HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', - - HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', - HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', - HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', - HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_5_Desc_5: 'Dézippez-le.', - HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', - HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', - HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', - - HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', - HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', - HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', - HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', - HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', - HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', - HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', - HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Si vous êtes sur un PC :', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = fr; +// English +'use strict'; +var fi = function() {} +fi.code = 'fi'; +fi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Sinun Lompakkosi', + NAV_AddWallet: 'Lisää Lompakko', + NAV_GenerateWallet: 'Luo Lompakko', + NAV_BulkGenerate: 'Massa Generoi', + NAV_SendEther: 'Lähetä Etheriä', + NAV_SendTokens: 'Lähetä Tokeneita', + NAV_Offline: 'Lähetä Offlinena', + NAV_WithdrawDAO: 'Nosta DAO', + DAO_TitleLong: 'Muuta DAO Tokenisi ETH:iksi', + NAV_ClaimDGD: 'Lunasta DGD', + DGD_TitleLong: 'Lunasta DGD Tokenisi', + NAV_MyWallets: 'Minun Lompakkoni', + NAV_ViewWallet: 'Tarkista Lompakon Tiedot', + NAV_Help: 'Apua', + NAV_Contact: 'Yhteystiedot', + + /* General */ + x_Password: 'Salasana', + x_Download: 'Lataa', + x_Address: 'Sinun osoitteesi', + x_Save: 'x_Tallenna', + x_Cancel: 'x_Peruuta', + x_AddessDesc: 'Saatat tuntea tämän "Tilinumeronasi" tai sinun "Julkisena Salausavaimenasi". Tämä on se jonka jaat ihmisille, jotta he voivat lähettää sinulle ETHiä. Tuo kuvake on helppo tapa tunnistaa sinun osoitteesi.', + x_PrivKey: 'Yksityinen salausavain (salaamaton)', + x_PrivKeyDesc: 'Tämä on salaamaton versio sinun yksityisestä salausavaimestasi, tarkoittaen että salasanaa ei tarvita. Jos joku sattuisi löytämään sinun salaamattoman yksityisen salausavaimesi, he pääsisivät käsiksi sinun lompakkoosi ilman salasanaa. Tästä syystä salatut versiot ovat yleensä suositeltuja.', + x_Keystore: 'Avainsäilö/JSON Tiedosto (Suositeltu · Salattu · Mist/Geth Tiedostoformaatti)', + x_KeystoreDesc: 'Tämä Avainsäilö / JSON tiedosto vastaa sitä tiedostoformaattia jota Mist & Geth käyttävät, joten voit helposti tuoda sen tulevaisuudessa. Se on suositeltu tiedostomuoto ladata ja varmuuskopioida.', + x_Json: 'JSON Tiedosto (salaamaton)', + x_JsonDesc: 'Tämä on salaamaton, JSON tiedosto yksityisestä salausavaimestasi. Tämä tarkoittaa että et tarvitse salasanaa mutta kuka tahansa joka löytää JSON tiedostosi saa pääsyn lompakkoosi ja sen sisältämään Etheriin ilman salasanaa.', + x_PrintShort: 'Tulosta', + x_Print: 'Tulosta Paperi Lompakko', + x_PrintDesc: 'ProTip: Klikkaa Tulosta ja tallenna tämä PDF:nä, vaikka et omistaisikaan tulostinta!', + x_CSV: 'CSV tiedosto (salaamaton)', + x_TXT: 'TXT tiedosto (salaamaton)', + + /* Header */ + MEW_Warning_1: 'Tarkista URL aina ennen kuin avaat lompakkosi tai luot uuden lompakon. Varo tietojen-kalastelu sivustoja!', + CX_Warning_1: 'Varmista että sinulla on **ulkoiset varmuuskopiot** kaikista lompakoista joita säilytät täällä. Monia asioita voi tapahtua joiden seurauksena voit menettää tietoja tässä Chrome Laajennuksessa, mukaan lukien laajennuksen asennuksen poistaminen tai uudelleenasennus. Tämä laajennus on keino jolla saat helpon pääsyn lompakkoosi, **ei** keino varmuuskopioida niitä.', + MEW_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Ether Lompakko', + CX_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Chrome Laajennus', + + /* Footer */ + FOOTER_1: 'Avoimen lähdekoodin, asiakas-puolen javascript työkalu Ethereum lompakkojen luomista & varojen siirtoja varten.', + FOOTER_2: 'Lahjoituksia arvostetaan suuresti:', + FOOTER_3: 'Asiakas-puolen lompakon luomisen tarjoaa', + + /* Sidebar */ + sidebar_AccountInfo: 'Tilin Tiedot: ', + sidebar_AccountAddr: 'Tilin Osoite: ', + sidebar_AccountBal: 'Tilin Saldo: ', + sidebar_TokenBal: 'Tokenien Saldo: ', + sidebar_Equiv: 'Vastaavat Arvot: ', + sidebar_TransHistory: 'Siirto Historia', + sidebar_DGDBal: 'DGD Joukkomyynnin Tiedot:', + sidebar_donate: 'Lahjoita', + sidebar_donation: 'MyEtherWallet on ilmainen, avoimen lähdekoodin palvelu joka on omistautunut sinun yksityisyyteesi ja turvallisuuteesi. Mitä enemmän lahjoituksia me vastaanotamme, sitä enemmän aikaa me käytämme uusien toimintojen luomiseksi, kuunnellen teidän palautettanne ja antaen teille juuri sitä mitä te tahdotte. Me olemme vain kaksi ihmistä jotka koittavat muuttaa maailmaa. Auta meitä?', + sidebar_thanks: 'KIITOS!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kuinka haluaisit saada pääsyn lompakkoosi?', + decrypt_Title: 'Valitse yksityisen salausavaimesi muoto:', + decrypt_Select: 'Valitse Lompakko:', + + /* Add Wallet */ + ADD_Label_1: 'Mitä tahtoisit tehdä?', + ADD_Radio_1: 'Luo Uusi Lompakko', + ADD_Radio_2: 'Valitse Lompakko Tiedostosi (Avainsäilö / JSON)', + ADD_Radio_2_short: 'VALITSE LOMPAKKO TIEDOSTO...', + ADD_Radio_3: 'Liitä/Kirjoita Yksityinen Salausavaimesi', + ADD_Radio_4: 'Lisää Tili Jota Seurata', + ADD_Label_2: 'Luo Lempinimi:', + ADD_Label_3: 'Lompakkosi on salattu, ole hyvä ja syötä salasanasi: ', + ADD_Label_4: 'Lisää Tili Jota Seurata', + ADD_Warning_1: 'Voit lisätä minkä tahansa tilin jota "seurata" lompakkojen välilehdessä ilman yksityisen salausavaimesi lähettämistä. Tämä ** ei ** tarkoita että sinulla olisi pääsy tähän lompakkoon, tai että voit siirtää Etheriä siitä.', + ADD_Label_5: 'Syötä Osoite: ', + ADD_Label_6: 'Avaa Sinun Lompakkosi', + ADD_Label_6_short: 'Avaa', + ADD_Label_7: 'Lisää Tili', + + /* Generate Wallets */ + GEN_desc: 'Jos tahdot luoda useita lompakoita, voit tehdä sen täältä: ', + GEN_Label_1: 'Syötä vahva salasana (vähintään 9 merkkiä)', + GEN_Placeholder_1: 'ÄLÄ unohda tallentaa tätä!', + GEN_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + GEN_Warning: '**Tarvitset Avainsäilö/JSON Tiedostosi & salasanan tai Yksityisen salausavaimesi** saadaksesi pääsyn tähän lompakkoon tulevaisuudessa. Ole hyvä ja tallenna ja varmuuskopioi se ulkoisesti! Ei ole mitään keinoa palauttaa sitä jos et tallenna sitä. Voit lukea ohjeet [Apua sivulta](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Tallenna Avainsäilö/JSON tai Yksityinen salausavaimesi. Älä unohda yllä olevaa salasanaasi.', + GEN_Label_3: 'Tallenna Osoitteesi.', + GEN_Label_4: 'Tulosta paperi lompakkosi, tai säilö QR koodi versio. (valinnainen)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Kuinka Monta Lompakkoa Luodaan', + BULK_Label_2: 'Luo Lompakot', + BULK_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Osoitteeseen: ', + SEND_amount: 'Summa Joka Lähetetään: ', + SEND_amount_short: 'Summa', + SEND_custom: 'Mukautettu', + SEND_gas: 'Gas', + SEND_generate: 'Luo Allekirjoitettu Siirto', + SEND_raw: 'Käsittelemätön Siirto', + SEND_signed: 'Allekirjoitettu Siirto', + SEND_trans: 'Lähetä Siirto', + SEND_TransferTotal: 'Lähetettävissä oleva saldo', + SENDModal_Title: 'Varoitus! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Olet lähettämässä', + SENDModal_Content_2: 'osoitteeseen', + SENDModal_Content_3: 'Oletko varma että haluat tehdä tämän?', + SENDModal_Content_4: 'HUOMAUTUS: Jos kohtaat virheen, sinun täytyy todennäköisesti lisätä ETHiä tilillesi kattaaksesi siirron vaatiman gasin hinnan. Gas maksetaan ETHeinä.', + SENDModal_No: 'En, vie minut pois täältä!', + SENDModal_Yes: 'Kyllä, olen varma! Toteuta siirto.', + + /* Tokens */ + TOKEN_Addr: 'Osoite: ', + TOKEN_Symbol: 'Token Tunnus: ', + TOKEN_Dec: 'Desimaalit: ', + + /* Send Transaction */ + TRANS_desc: 'Jos haluat lähettää Tokeneita, ole hyvä ja käytä "Lähetä Tokeneita" sivua.', + TRANS_warning: 'Jos käytät "Vain ETH" tai "Vain ETC" Toimintoja, niin lähetät sopimuksen kautta. Joillakin palveluilla on vaikeuksia hyväksyä näitä siirtoja. Lue lisää.', + TRANS_standard: 'ETH (Tavallinen Siirto)', + TRANS_eth: 'Vain ETH', + TRANS_etc: 'Vain ETC', + TRANS_advanced: '+Edistynyt: Lisää Enemmän Gasia tai Tietoa ', + TRANS_data: ' Tiedot: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Tavallinen siirto käyttäen 21000 gasia maksaa 0.000441 ETHiä. Me käytämme hieman-yli-minimin gasin hintaa 0.000000021 ETHiä varmistaaksemme että se louhitaan nopeasti. Me emme veloita siirto maksua.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Vain ETH" ja "Vain ETC" Siirrot', + TRANSModal_Content_0: 'Huomautus erilaisista siirroista ja eri palveluista:', + TRANSModal_Content_1: '**ETH (Tavallinen Siirto): ** Tämä luo oletusarvoisen siirron osoitteesta toiseen. Siinä on oletus gasina 21000. On todennäköistä että kaikki ETH joka lähetetään tällä tavalla, toistetaan ETC ketjussa.', + TRANSModal_Content_2: '**Vain ETH: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETH** ketjussa.', + TRANSModal_Content_3: '**Only ETC: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETC** ketjussa. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Lähetä ainoastaan käyttäen Tavallista Siirtoa. Jos lähetät käyttäen "Vain" sopimuksia, sinun täytyy olla yhteydessä heidän asiakastukensa henkilöstöön jotta he joko manuaalisesti lisäävät sinun saldosi tai palauttavat rahasi. [Voit kokeilla myös ShapeShiftin "split" työkalua.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ei tunnettuja ongelmia. Käytä mitä vain.', + TRANSModal_Yes: 'Siistiä, nyt ymmärrän.', + TRANSModal_No: 'Voi ei, olen entistä enemmän hämilläni. Auttakaa minua.', + + /* Offline Transaction */ + OFFLINE_Title: 'Luo ja Lähetä Offline Siirto', + OFFLINE_Desc: 'Offline siirtojen luonti voidaan tehdä kolmella eri vaiheella. Teet vaiheet 1 ja 3 käyttäen verkossa olevaa tietokonetta, ja vaiheen 2 käyttäen offline/airgappattua tietokonetta. Tämä varmistaa ettei sinun yksityinen salausavaimesi ole kosketuksissa internettiin yhdistetyn laitteen kanssa.', + OFFLLINE_Step1_Title: 'Vaihe 1: Luo Tiedot (Online Tietokone)', + OFFLINE_Step1_Button: 'Luo Tiedot', + OFFLINE_Step1_Label_1: 'Osoitteesta: ', + OFFLINE_Step1_Label_2: 'Huomautus: Tämä on MISTÄ osoitteesta, ei MIHIN osoitteeseen. Nonce luodaan osoitteesta josta siirto on peräisin. Jos käytetään airgappattua tietokonetta, se olisi kylmä-varasto tilin osoite.', + OFFLLINE_Step2_Title: 'Vaihe 2: Luo Siirto (Offline Tietokone)', + OFFLINE_Step2_Label_1: 'Osoitteeseen: ', + OFFLINE_Step2_Label_2: 'Arvo / Määrä Joka Lähetetään', + OFFLINE_Step2_Label_3: 'Gasin hinta ', + OFFLINE_Step2_Label_3b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_4: 'Gas Raja ', + OFFLINE_Step2_Label_4b: '21000 on oletusarvoinen gas raja. Kun lähetät sopimuksiin tai lisäät tietoa, saattaa tämä määrä joutua olemaan eri. Kaikki käyttämätön gas palautetaan sinulle.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_6: 'Tiedot', + OFFLINE_Step2_Label_6b: 'Tämä on vapaaehtoinen. Tietoja käytetään usein kun varoja lähetetään sopimuksiin.', + OFFLINE_Step2_Label_7: 'Syötä / Valitse Yksityinen salausavaimesi / JSON.', + OFFLINE_Step3_Title: 'Vaihe 3: Lähetä / Julkaise Siirto (Verkkoon yhdistetty tietokone)', + OFFLINE_Step3_Label_1: 'Liitä allekirjoitettu siirto Vaiheesta 2 tähän ja paina "LÄHETÄ SIIRTO" nappia.', + + /* DAO */ + DAO_Desc: 'Käytä tätä välilehteä muuttaaksesi DAO Tokenisi ETHiksi. Mikäli haluat lähettää DAO:ta, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DAO_Inst: 'Kyllä. Paina vain isoa punaista nappia. Se on niin helppoa.', + DAO_Warning: 'Jos sinulla tulee "Riittämätön saldo gasille" virhe, sinulla täytyy olla pieni määrä ETHiä tililläsi kattaaksesi gasin hinnan. Lisää .01 ETHiä tälle tilille ja koita uudestaan. ', + DAOModal_Title: 'Varmistetaan vain...', + + /* Digix */ + DGD_Desc: 'Lunasta DigixDAO (DGD) tokenisi & merkkisi. Lunastaaksesi, sinun on täytynyt osallistua tokenien myyntiin Maaliskuun 30/31 päivänä, 2016. Jos haluat lähettää DGDtä, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DGD_Label_1: 'Arvioitu kulutus maksu:', + DGD_Label_2: 'Annettu Maksimi Maksu:', + DGD_Label_3: 'Gas Hinta:', + DGD_Generate: 'Luo Lunastus', + DGD_Content: 'Olet lunastamassa sinun DGD Tokenisi.', + + /* My Wallet */ + MYWAL_Nick: 'Lompakon Lempinimi', + MYWAL_Address: 'Lompakon Osoite', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Muokkaa', + MYWAL_View: 'Katso', + MYWAL_Remove: 'Poista', + MYWAL_RemoveWal: 'Poista Lompakko:', + MYWAL_WatchOnly: 'Sinun Seuraa-Ainoastaan Tilisi', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Piilota Lompakon Tiedot', + MYWAL_Edit: 'Muokkaa Lompakkoa: ', + MYWAL_Name: 'Lompakon Nimi', + MYWAL_Content_1: 'Varoitus! Olet poistamassa lompakkoasi.', + MYWAL_Content_2: 'Varmista että olet **tallentanut tähän lompakkoon liittyvät yksityisen salausavaimesi/JSON tiedostosi ja salasanasi** ennen kuin poistat sen.', + MYWAL_Content_3: 'Jos tahdot käyttää tätä lompakkoa sinun MyEtherWallet CX:si kanssa tulevaisuudessa, sinun täytyy manuaalisesti uudelleen-lisätä se käyttäen yksityistä salausavaintasi/JSONia ja salasanaa.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. Saatat tahtoa tehdä tämän [tuodaksesi sinun tilisi Gethiin/Mistiin](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jos haluat tarkistaa saldosi, me suosittelemme käyttämään lohkoketju exploreria kuten [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. ', + VIEWWALLET_SuccessMsg: 'Onnistui! Tässä ovat lompakkosi yksityiskohdat.', + + /* Error Messages */ + ERROR_1: 'Ole hyvä ja syötä kelpaava summa.', + ERROR_2: 'Salasanasi pitää olla vähintään 9 merkkiä pitkä. Ole hyvä ja varmista että käytät vahvaa salasanaa. ', + ERROR_3: 'Pahoittelut! Emme tunnista tämänlaista lompakko tiedostoa. ', + ERROR_4: 'Tämä ei ole validi lompakko tiedosto. ', + ERROR_5: 'Tätä yksikköä ei ole olemassa, ole hyvä ja käytä jotain seuraavista yksiköistä ', + ERROR_6: 'Virheellinen osoite. ', + ERROR_7: 'Virheellinen salasana. ', + ERROR_8: 'Virheellinen summa. ', + ERROR_9: 'Virheellinen gas raja. ', + ERROR_10: 'Virheellinen tieto arvo. ', + ERROR_11: 'Virheellinen gasin määrä. ', + ERROR_12: 'Virheellinen nonce. ', + ERROR_13: 'Virheellinen allekirjoitettu siirto. ', + ERROR_14: 'Lompakko tällä lempinimellä on jo olemassa. ', + ERROR_15: 'Lompakkoa ei löytynyt. ', + ERROR_16: 'Ei näytä että ehdotusta tällä ID:llä olisi vielä olemassa tai tapahtui virhe ehdotusta luettaessa. ', + ERROR_17: 'Lompakko jolla on tämä osoite on jo muistissa. Ole hyvä ja tarkista sinun lompakkosi sivu. ', + ERROR_18: 'Sinulla täytyy olla vähintään .001 ETHiä tililläsi kattaaksesi gasin hinnan. Ole hyvä ja lisää hieman ETHiä ja kokeile uudelleen. ', + ERROR_19: 'Kaikki gas käytettäisiin tässä siirrossa. Tämä tarkoittaa että olet jo äänestänyt tässä ehdotuksessa tai väittely aika on jo päättynyt.', + ERROR_20: 'Virheellinen merkki', + SUCCESS_1: 'Validi osoite', + SUCCESS_2: 'Lompakon salaus onnistuneesti purettu', + SUCCESS_3: 'Siirto lähetetty. TX ID: ', + SUCCESS_4: 'Lompakkosi lisätty onnistuneesti: ', + SUCCESS_5: 'Olet äänestänyt onnistuneesti. Kiitos että olet ollut aktiivinen osanottaja The DAOssa.', + + /* Tranlsation Info */ + translate_version: '0.1', + Translator_Desc: 'Kiitos kääntäjillemme...', + TranlsatorName_1: 'Smokyish', + TranlsatorAddr_1: '0xac9a2c1dd946da64c0dc8e70cec2cfb14304fd4f', + /* Translator 1: Insert Comments Here */ + TranlsatorName_2: ' ', + TranlsatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranlsatorName_3: ' ', + TranlsatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranlsatorName_4: ' ', + TranlsatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranlsatorName_5: ' ', + TranlsatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com', + HELP_6_Desc_9: 'Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.', + HELP_6_Desc_11: ' Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: ' Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', + HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = fi; },{}],43:[function(require,module,exports){ -// Hebrew -'use strict'; -var he = function() {} -he.code = 'he'; -he.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = he; +// French +'use strict'; +var fr = function() {} +fr.code = 'fr'; +fr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Vos portefeuilles', + NAV_AddWallet: 'Ajout de portefeuille', + NAV_GenerateWallet: 'Génération de portefeuille', + NAV_BulkGenerate: 'Génération de portefeuilles par lots', + NAV_SendEther: 'Envoi d\'Ether', + NAV_SendTokens: 'Envoi de tokens', + NAV_Offline: 'Envoi hors-ligne', + NAV_WithdrawDAO: 'Retrait de la DAO', + DAO_TitleLong: 'Échange de tokens DAO contre des ETH', + NAV_ClaimDGD: 'Réclamation de DGD', + DGD_TitleLong: 'Réclamation de vos tokens DGD', + NAV_DeployContract: 'Déployer un contrat', + NAV_MyWallets: 'Mes portefeuilles', + NAV_ViewWallet: 'Visualisation d\'un portefeuille', + NAV_Help: 'Aide', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Portefeuille', + x_Password: 'Mot de passe', + x_Download: 'Télécharger', + x_Address: 'Votre adresse', + x_Save: 'Sauvegarder', + x_Cancel: 'Annuler', + x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', + x_PrivKey: 'Clé privée (non-chiffrée)', + x_PrivKey2: 'Clé privée', + x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', + x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', + x_Keystore2: 'Fichier Keystore/JSON', + x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', + x_Json: 'Fichier JSON (non-chiffré)', + x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', + x_PrintShort: 'Imprimer', + x_Print: 'Imprimer un portefeuille papier', + x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', + x_CSV: 'Fichier CSV (non-chiffré)', + x_TXT: 'Fichier TXT (non-chiffré)', + + /* Header */ + MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', + CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', + MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', + CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', + + /* Footer */ + FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', + FOOTER_1b: 'Créé par', + FOOTER_2: 'Donations extrêmement appréciées :', + FOOTER_3: 'Génération de portefeuille côté client par', + FOOTER_4: 'Avertissement', + + /* Sidebar */ + sidebar_AccountInfo: 'Informations du compte : ', + sidebar_AccountAddr: 'Addresse du compte : ', + sidebar_AccountBal: 'Solde du compte : ', + sidebar_TokenBal: 'Solde en tokens : ', + sidebar_Equiv: 'Valeur correspondante : ', + sidebar_TransHistory: 'Historique des transactions: ', + sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', + sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', + sidebar_donate: 'Faire une donation', + sidebar_thanks: 'MERCI !!!', + + /* Decrypt Panel */ + decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', + decrypt_Title: 'Choisissez le format de votre clé privée', + decrypt_Select: 'Choisissez un portefeuille :', + + /* Add Wallet */ + ADD_Label_1: 'Que voulez-vous faire ?', + ADD_Radio_1: 'Générer un nouveau portefeuille', + ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', + ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', + ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', + ADD_Radio_3: 'Collez/saisissez votre clé privée', + ADD_Radio_4: 'Ajoutez un compte', + ADD_Label_2: 'Nommez votre compte :', + ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', + ADD_Label_4: 'Ajouter un compte à afficher', + ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', + ADD_Label_5: 'Entrez l\'adresse : ', + ADD_Label_6: 'Déverrouiller votre portefeuille', + ADD_Label_6_short: 'Déverrouiller', + ADD_Label_7: 'Ajouter un compte', + + /* Generate Wallets */ + GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', + GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', + GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', + GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', + GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', + GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', + GEN_Label_3: 'Sauvegarder votre portefeuille.', + GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Nombre de portefeuilles à générer', + BULK_Label_2: 'Générer les portefeuilles', + BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Adresse de destination : ', + SEND_amount: 'Montant à envoyer : ', + SEND_amount_short: 'Montant', + SEND_custom: 'Spécifique', + SEND_gas: 'Gaz', + SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter + SEND_generate: 'Générer la transaction', + SEND_raw: 'Transaction brute', + SEND_signed: 'Transaction signée', + SEND_trans: 'Envoyer la transaction', + SENDModal_Title: 'Attention ! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', + SENDModal_Content_2: 'à l\'adresse', + SENDModal_Content_3: 'En êtes-vous sûr ?', + SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', + SENDModal_No: 'Non, je veux sortir d\'ici !', + SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adresse : ', + TOKEN_Symbol: 'Symbole du token : ', + TOKEN_Dec: 'Décimales : ', + + /* Send Transaction */ + TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', + TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', + TRANS_standard: 'ETH (transaction standard)', + TRANS_eth: 'ETH seulement', + TRANS_etc: 'ETC seulement', + TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', + TRANS_data: ' Données : ', + TRANS_gas: ' Gaz : ', + TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', + TRANSModal_Content_0: 'Note sur les transactions et services divers :', + TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', + TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', + TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', + TRANSModal_Yes: 'Génial, j\'ai compris.', + TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', + + /* Offline Transaction */ + OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', + OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', + OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', + OFFLINE_Step1_Button: 'Générer l\'information', + OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', + OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', + OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', + OFFLINE_Step2_Label_1: 'Adresse de destination : ', + OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', + OFFLINE_Step2_Label_3: 'Prix du gaz ', + OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_4: 'Limite de gaz ', + OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_6: 'Données', + OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', + OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', + OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', + OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', + + /* DAO */ + DAO_bal1: 'au bloc 1.919.999', + DAO_bal2: 'actuel', + DAO_TitleETH: 'Retrait de DAO en ETH', + DAO_TitleETC: 'Retrait de DAO en ETC', + DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', + DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', + DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', + DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', + DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', + DAOModal_Title: 'Juste pour être sûr...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Vous êtes sur le point de retirer', + DAOModal_2: 'tokens DAO vers', + DAOModal_3: 'pour', // "in return for" + + /* Digix */ + DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', + DGD_Label_1: 'Estimation des frais consommés :', + DGD_Label_2: 'Frais maximum fournis :', + DGD_Label_3: 'Prix du gaz :', + DGD_Generate: 'Générer une réclamation', + DGD_Content: 'Vous allez réclamer vos tokens DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Générer le bytecode', + DEP_generated: 'Bytecode généré', + DEP_signtx: 'Signer la transaction', + DEP_interface: 'Interface générée', + + /* My Wallet */ + MYWAL_Nick: 'Nom du portefeuille', + MYWAL_Address: 'Adresse du portefeuille', + MYWAL_Bal: 'Solde', + MYWAL_Edit: 'Modifier', + MYWAL_View: 'Voir', + MYWAL_Remove: 'Supprimer', + MYWAL_RemoveWal: 'Supprimer le portefeuille :', + MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', + MYWAL_Viewing: 'Affichage des portefeuilles : ', + MYWAL_Hide: 'Cacher les informations sur le portefeuille', + MYWAL_Edit_2: 'Modifier le portefeuille : ', + MYWAL_Name: 'Nom du portefeuille', + MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', + MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', + MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', + VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', + + /* Chrome Extension */ + CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', + CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Veuillez entrer un montant valide.', + ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', + ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', + ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', + ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', + ERROR_6: 'Adresse invalide. ', + ERROR_7: 'Mot de passe invalide. ', + ERROR_8: 'Montant invalide. ', + ERROR_9: 'Limite de gaz invalide. ', + ERROR_10: 'Valeur des donnnées invalide. ', + ERROR_11: 'Montant de gaz invalide. ', + ERROR_12: 'Nonce invalide. ', + ERROR_13: 'Transaction signée invalide. ', + ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', + ERROR_15: 'Portefeuille non trouvé. ', + ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', + ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', + ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', + ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', + ERROR_20: 'Symbole invalide', + SUCCESS_1: 'Adresse valide', + SUCCESS_2: 'Portefeuille déchiffré avec succès', + SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', + SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', + SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', + SUCCESS_6: 'Fichier sélectionné : ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Expéditeur invalide', + GETH_Nonce: 'Nonce trop bas', + GETH_Cheap: 'Prix du gaz trop bas pour être accepté', + GETH_Balance: 'Solde insuffisant', + GETH_NonExistentAccount: 'Compte inexistant ou solde du compte trop bas', + GETH_InsufficientFunds: 'Fonds insuffisants pour gaz * prix + valeur', + GETH_IntrinsicGas: 'Gaz intrinsèque trop bas', + GETH_GasLimit: 'Limite en gaz dépassée', + GETH_NegativeValue: 'Valeur négative', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', + /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ + TranslatorName_2: 'Jean Zundel · ', + TranslatorAddr_2: '', + /* Translator 2: */ + TranslatorName_3: 'girards', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', + HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', + HELP_Remind_Title: 'Quelques rappels :', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', + HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', + + HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', + HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', + HELP_0_Desc_2: 'Créez un nouveau portefeuille.', + HELP_0_Desc_3: 'Sauvegardez le portefeuille.', + HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', + HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', + + HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', + HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', + HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', + HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', + HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', + HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', + + HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', + HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', + HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', + HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', + HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', + HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', + HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', + + HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', + HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', + HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', + HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', + HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', + HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', + HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', + + HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', + HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', + HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', + HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', + HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', + HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', + + HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', + HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', + HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', + HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', + HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', + HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', + HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', + HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', + HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', + HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', + HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', + + + HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', + HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', + HELP_4CX_Desc_2: 'Envoi rapide :', + HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', + HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', + HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', + HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', + HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', + HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', + HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', + HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', + HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', + HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', + + HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', + HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', + HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', + HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_5_Desc_5: 'Dézippez-le.', + HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', + HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', + HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', + + HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', + HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', + HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', + HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', + HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', + HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', + HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', + HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', + + HELP_6_Title: '6) Comment puis-je séparer mes ETH / ETC ? ', + HELP_6_Desc_1: 'Quand le hard fork s\'est produit, à tout ETH que vous possédiez dans votre portefeuille correspond maintenant un montant égal en ETC. Si vous envoyez des ETH par une transaction standard, cela enverra également des ETC et, pour l\'empêcher, il vous faut maintenant "séparer" votre portefeuille d\'origine en deux en vous assurant que seul du ETH va dans le portefeuille ETH et seul du ETC va dans le portefeuille ETC.', + HELP_6_Desc_2: 'Vous pouvez également envoyer tout votre ETH et ETC par une transaction standard vers Kraken ou Poloniex. Ces *exchanges* vont automatiquement séparer vos ETH et ETC. Vous pouvez alors déplacer ces fonds vers de nouveaux portefeuilles ou vendre vos ETH ou vos ETC.', + HELP_6_Desc_3: '[Vous trouverez plus d\'informations sur les portefeuilles et les attaques par réexécution ici](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Générer un nouveau portefeuille ETH post-fork vierge pour vous-même (destination finale du pur ETH).', + HELP_6_Desc_5: 'Générer un nouveau portefeuille ETC post-fork vierge pour vous-même (destination finale du pur ETC).', + HELP_6_Desc_6: 'Sauvegardez ces nouveaux portefeuilles et vérifiez que vous pouvez y accéder. Voir #2a et #3 ci-dessus.', + HELP_6_Desc_7: 'Envoyez 0.1234 ETH à votre nouveau portefeuille ETH en utilisant l\'option "ETH seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_8: 'Envoyez 0.5678 ETC à votre nouveau portefeuille ETC en utilisant l\'option "ETC seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_9: 'Vérifiez que seuls les 0.1234 ETH ont bougé sur etherscan.io. Vérifiez que seuls les 0.5678 ETC ont bougé sur gastracker.io.', + HELP_6_Desc_10: 'Envoyez une transaction de 0.0001 ETH depuis votre nouveau portefeuille ETH. Vérifiez sur etherscan.io. Assurez-vous que les 0.0001 ETH ont bougé.', + HELP_6_Desc_11: 'Générez (mais n\'envoyez pas) une transaction de 0.0002 ETC depuis votre nouveau portefeuille ETC. Copiez le champ "Transaction signée". ', + HELP_6_Desc_12: 'Allez sur [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) et copiez cette transaction ETC dans l\'onglet hors ligne de classicetherwallet.com tout en bas et envoyez-la. Vérifiez sur gastracker.io. Assurez-vous que les 0.0002 ETC ont bougé.', + HELP_6_Desc_13: 'Si tout est correctement reçu et envoyé, vous avez gagné.', + HELP_6_Desc_14: 'Envoyez le reste du solde ETH par l\'option "ETH seulement" et répétez l\'opération pour le solde ETC par l\'option "ETC seulement".', + HELP_6_Desc_15: 'Par la suite, vous pourrez utiliser les transactions standard pour ces portefeuilles sans risque d\'attaque par réexécution.', + + + HELP_7_Title: '7) Comment puis-je envoyer des tokens et ajouter des tokens spécifiques ?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) est un excellent moyen d\'explorer les tokens et de trouver les décimales d\'un token.', + HELP_7_Desc_1: 'Naviguez vers la page "Envoi de tokens".', + HELP_7_Desc_2: 'Déverrouillez votre portefeuille.', + HELP_7_Desc_3: 'Entre l\'adresse à laquelle vous désirez faire l\'envoi dans le champ "Adresse de destination".', + HELP_7_Desc_4: 'Entrez le montant que vous désirez envoyer.', + HELP_7_Desc_5: 'Sélectionnez le token que vous désirez envoyer.', + HELP_7_Desc_6: 'Si celui-ci n\'est pas listé :', + HELP_7_Desc_7: 'Cliquez sur "Spécifique".', + HELP_7_Desc_8: 'Entrez l\'adresse, le nom et les décimales du token. Ces informations sont fournies par les développeurs du token et sont également nécessaires quand vous faites "Add a Watch Token" dans Mist.', + HELP_7_Desc_9: 'Cliquez sur "Sauver".', + HELP_7_Desc_10: 'Vous pouvez maintenant envoyer ces tokens ainsi qu\'en voir le solde dans la zone sur le côté.', + HELP_7_Desc_11: 'Cliquez sur "Générer la transaction".', + HELP_7_Desc_12: 'Quelques champs supplémentaires vont apparaître : votre navigateur est en train de générer la transaction.', + HELP_7_Desc_13: 'Cliquez sur le bouton bleu "Envoyer la transation" au dessous.', + HELP_7_Desc_14: 'Une fenêtre pop-up va apparaître. Vérifiez que le montant et que l\'adresse de destination sont corrects puis cliquez sur le bouton "Oui, j\'en suis sûr ! Effectuer la transaction."', + HELP_7_Desc_15: 'La transaction est alors soumise et l\'identifiant de transaction est affiché. Vous pouvez cliquer dessus pour le voir sur la blockchain.', + + HELP_8_Title: '8) Que se passe-t-il si votre site tombe ?', + HELP_8_Desc_1: 'MyEtherWallet n\'est pas un portefeuille sur le web. Vous n\'avez pas de login et rien n\'est jamais stocké sur nos serveurs. Ce n\'est qu\'une interface qui vous permet d\'interagir avec la blockchain.', + HELP_8_Desc_2: 'Si MyEtherWallet.com tombe, vous devrez trouver un autre moyen (comme geth ou Ethereum Wallet / Mist) pour faire la même chose. Mais vous n\'aurez pas à "récupérer" votre Ether depuis MyEtherWallet parce qu\'il ne se trouve pas dans MyEtherWallet. Il est chez vous, dans le portefeuille que vous avez généré par notre site.', + HELP_8_Desc_3: 'Vous pouvez maintenant importer facilement votre clef privée non chiffrée et vos fichiers (chiffrés) au format Geth/Mist, directement dans geth / Ethereum Wallet / Mist. Voir question #12 ci-dessous.', + HELP_8_Desc_4: 'De plus, la probabilité que nous laissions tomber MyEtherWallet approche zéro. Il ne nous coûte presque rien de le maintenir comme nous n\'y stockons aucune information. Si le domaine venait à être perdu, le logiciel sera toujours disponible publiquement sur [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vous pourrez y télécharger le ZIP et le faire tourner localement. ', + + HELP_8CX_Title: '8) Que se passe-t-il si MyEtherWallet CX disparaît ?', + HELP_8CX_Desc_1: 'D\'abord, toutes les données sont sauvegardées sur votre ordinateur et non sur nos serveurs. Cela peut paraître étonnant mais, quand vous regardez sur l\'extension Chrome, ce que vous voyez *ne se trouve pas* sur nos serveurs ; tout est stocké sur votre propre ordinateur.', + HELP_8CX_Desc_2: 'Cela dit, il est **très important** que vous sauvegardiez toutes les données de tous les portefeuilles générés par MyEtherWallet CX. De cette manière, si quoi que ce soit arrivait à MyEtherWallet CX ou à votre ordinateur, vous conserveriez toutes les informations nécessaires pour accéder à votre Ether. Voir #2a pour la sauvegarde de vos portefeuilles.', + HELP_8CX_Desc_3: 'Si, pour une raison quelconque, MyEtherWallet CX disparaissait du Chrome Store, vous pourrez en trouver le source sur Github et le charger manuellement. Voir #5 ci-dessus.', + + HELP_9_Title: '9) La page "Envoi d\'Ether" est-elle hors ligne ?', + HELP_9_Desc_1: 'Non, la page d\'envoi de transaction n\'est pas hors ligne. Elle a besoin de l\'internet pour obtenir le prix actuel du gaz, le nonce de votre compte et pour émettre la transaction (c\'est-à-dire "envoyer"). Cependant, elle n\'envoie que la transaction signée. Votre clef privée reste en sécurité chez vous. Nous fournissons maintenant aussi une page "Transaction hors ligne" pour vous permettre de conserver en permanence vos clefs privées sur une machine hors ligne.', + + HELP_10_Title: '10) Comment puis-je faire une transaction hors ligne ?', + HELP_10_Desc_1: 'Allez à la page "Transaction hors ligne" avec votre ordinateur en ligne.', + HELP_10_Desc_2: 'Entrez l\'"Adresse d\'émission". Attention, c\'est l\'adresse *d\'où* vous envoyez et non celle *vers* laquelle vous envoyez. Ceci va générer ke nonce et le prix du gaz.', + HELP_10_Desc_3: 'Allez sur votre ordinateur hors ligne. Entrez l\'"Adresse de destination" et le "Montant" que vous désirez envoyer.', + HELP_10_Desc_4: 'Entrez le "Prix du gaz" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_5: 'Entrez le "Nonce" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_6: 'La "Limite en gaz" a une valeur de 21000 par défaut. Ceci couvre les frais d\'une transaction standard. Si vous envoyez à un contrat ou si vous embarquez des données supplémentaires avec votre transaction vous devrez augmenter la limite de gaz. Tout gaz non consommé vous sera retourné.', + HELP_10_Desc_7: 'Si vous le désirez, entrez des données. Dans ce cas, vous devrez inclure plus que la limite de 21000 par défaut? Toutes les données sont au format hexadécimal.', + HELP_10_Desc_8: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_10_Desc_9: 'Cliquez sur le bouton "Générer la transaction signée".', + HELP_10_Desc_10: 'Le champ de données sous ce bouton se remplit avec votre transaction signée. Copiez-la et revenez avec elle sur votre ordinateur en ligne. ', + HELP_10_Desc_11: 'Sur votre ordinateur en ligne, collez la transaction signée dans le champ texte et cliquez sur "Envoyez l\'Ether". Ceci émettra votre transaction.', + + HELP_11_Title: '11) Comment puis-je envoyer à un contrat ?', + HELP_11_Desc_1: 'L\'envoi à un contrat vous impose souvent d\'inclure des données ou du gaz supplémentaire, ou les deux.', + HELP_11_Desc_2: 'Allez à la page "Envoi d\'Ether". ', + HELP_11_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille. ', + HELP_11_Desc_4: 'Entrez une "Adresse de destination" et un "Montant à envoyer".', + HELP_11_Desc_5: 'Cliquez sur le bouton "+Avancé : Ajouter du gaz ou des données supplémentaires" sous le champ du montant. Ceci affiche deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au dessus de la valeur par défaut de 21000 ainsi que d\'ajouter des données à votre transaction.', + + HELP_12_Title: '12) Comment puis-je importer un portefeuille créé par MyEtherWallet dans geth / Ethereum Wallet / Mist ?', + HELP_12_Desc_1: 'Avec un fichier Geth/Mist JSON de MyEtherWallet v2+....', + HELP_12_Desc_2: 'Allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_3: 'Déverrouillez votre portefeuille avec votre clef privée **chiffrée** ou votre fichier JSON. ', + HELP_12_Desc_4: 'Allez à la page "Mes portefeuilles".', + HELP_12_Desc_5: 'Sélectionnez le portefeuille que vous désirez importer dans Mist, cliquez sur l\'icône "View", entrez votre mot de passe et accédez à votre portefeuille. ', + HELP_12_Desc_6: 'Allez à la section "Téléchargez le fichier JSON file - Format Geth/Mist (chiffé)". Cliquez sur le bouton "Télécharger" en dessous. Vous avez maintenant votre fichier *keystore.* ', + HELP_12_Desc_7: 'Ouvrez l\'application Ethereum Wallet. ', + HELP_12_Desc_8: 'Dans la barre de menu, allez sur "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Ceci ouvre votre dossier de keystores. Copiez-y le fichier que vous venez de télécharger (`UTC--2016-04-14......../`) dans ce dossier.', + HELP_12_Desc_10: 'Votre compte doit apparaître immédiatement sous "Accounts."', + HELP_12_Desc_11: 'Avec votre clef privée non chiffrée...', + HELP_12_Desc_12: 'Si vous n\'avez pas déjà votre clef privée non chiffrée, allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_13: 'Sélectionnez le fichier de votre portefeuille -ou- entrez/collez votre clef privée pour déverrouiller votre portefeuille.', + HELP_12_Desc_14: 'Copiez votre clef privée (non chiffrée).', + HELP_12_Desc_15: 'Si vous êtes sur un Mac :', + HELP_12_Desc_15b: 'Si vous êtes sur un PC :', // Strange, already in French, not found in de.js + HELP_12_Desc_16: 'Ouvez Text Edit et collez cette clef privée.', + HELP_12_Desc_17: 'Dans la barre de menu, cliquez sur "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Sauvegardez ce fichier vers votre `Desktop/` en tant que `nothing_special_delete_me.txt`. Assurez-vous qu\'il précise "UTF-8" et "If no extension is provided use .txt" dans le dialogue de sauvegarde.', + HELP_12_Desc_19: 'Ouvrez un terminal et lancez la commande suivante : `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserez dans geth / Ethereum Wallet / Mist à chaque vois que vos enverrez une transaction, donc ne l\'oubliez pas. ', + HELP_12_Desc_21: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + HELP_12_Desc_23: 'Ouvrez Notepad et collez-y la clef privée', + HELP_12_Desc_24: 'Sauvegardez le fichier en tant que `nothing_special_delete_me.txt` sur `C:`', + HELP_12_Desc_25: 'Lancez la commande `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserz dans geth / Ethereum Wallet / Mist à chaque foiq que vous enverrez une transaction donc ne l\'oubliez pas.', + HELP_12_Desc_27: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + + HELP_13_Title: '13) Que signigie "Limite de gaz trop basse" ?', + HELP_13_Desc_1: 'Il est très probable que vous essayiez d\'envoyer de l\'Ether à un contrat, ce qui implique un peu plus de données et donc un peu plus de gaz. Sur la page "Envoi d\'Ether", cliquez sur le bouton "+Advancé : Ajouter du gaz ou des données supplémentaire" sous le champ du montant. Ceci fera afficher deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au-dessus de sa valeur par défaut de 21000, ou pour ajouter des données à votre transaction.', + + HELP_14_Title: '14) Certains sites randomisent (initialisent) la génération de clef privée par les mouvements de la sours. Ce n\'est pas le cas de MyEtherWallet.com. La génération de nombres aléatoires de MyEtherWallet est-elle sûre ?', + HELP_14_Desc_1: 'Bien que l\'interception des mouvement de la souris soit jugée attractive par beaucoup, et que nous en comprenions les raisons, la réalité est que window.crypto assure plus d\'entropie que les mouvements de votre souris. L\'utilisation de ces mouvements est sûre mais nous (ainsi que de nombreux projets crypto) avons de bonnes raisons de croire en window.crypto. De plus, MyEtherWallet.com peut être utilisé sur des périphériques tactiles. Voici une [conversation entre un redditor rageur et Vitalik Buterin sur les mouvements de souris et window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) et voici [les spécifications w3 de window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Pourquoi le compte que je viens de créer n\'apparaît-il pas dans l\'explorateur de blockchain ? (i.e. : etherchain, etherscan)', + HELP_15_Desc_1: 'Les comptes n\'apparaissent dans un explorateur de blockchain qu\'après une activité y ait eu lieu comme, par exemple, quand on y a transféré de l\'Ether.', + + HELP_16_Title: '16) Comment puis-je vérifier le solde de mon compte ? ', + HELP_16_Desc_1: 'Vous pouvez utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/). Collez votre adresse dans la barre de recherche et cela récupérera votre solde et l\'historique de vos transactions. Par exemple, voici ce que montre notre [compte de donations](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) sur etherscan.io', + + HELP_17_Title: '17) Pourquoi mon solde n\'apparaît-il pas quand je déverrouille mon portefeuille ? ', + HELP_17_Desc_1: ' C\'est probablement dû au fait que vous vous trouvez derrière un firewall. L\'API que nous utilisons pour obtenir le solde et converir celui-ci est souvent bloquée par des firewalls pour des raisons diverses. Vous êtes toujours capable d\'envoyer des transactions mais il vous faut employer une autre méthode pour voir le solde, comme etherscan.io', + + HELP_18_Title: '18) Où est le fichier de mon portefeuille geth ?', + + HELP_19_Title: '19) Où est le fichier de mon portefeuille Mist ? ', + HELP_19_Desc_1: 'Les fichiers Mist se trouvent généralement aux endroits ci-dessus mais il est beaucoup plus facile d\'ouvrir Mist, de sélectionner "Accounts" dans la barre du haut, puis "Backup" et "Accounts". Cela ouvre le dossier où vos fichiers sont stockés.', + + HELP_20_Title: '20) Où est le fichier de mon portefeuille de *pre-sale* (pré-vente) ?', + HELP_20_Desc_1: 'Là où vous l\'avez mis. ;) Il vous a aussi été envoyé donc allez vérifier vos mails. Cherchez le fichier appelé `"ethereum_wallet_backup.json"` et choisissez ce fichier. Il est chiffré avec un mot de passe que vous avez créé pendant l\'achat au moment de la pré-vente.', + + HELP_21_Title: '21) N\'importe qui ne peut-il pas prendre une clef privée au hasard, chercher un solde et l\'envoyer à sa propre adresse ? ', + HELP_21_Desc_1: 'Version courte : oui, mais trouver un compte avec un solde prendrait plus longtemps que la durée de l\'univers... donc... non.', + HELP_21_Desc_2: 'Version longue : Ethereum est basé sur la [cryptographie à clef publique](https://en.wikipedia.org/wiki/Public-key_cryptography), plus précisément la [cryptographie des courbes elliptiques (ECC)](https://eprint.iacr.org/2013/734.pdf) qui est très couramment employée, pas uniquement dans Ethereum. La plupart des serveurs sont protégés par les ECC. Bitcoin les emploie ainsi que SSH, TLS et bien d\'autres protocoles. Dans le cas spécifique d\'Ethereum, les clefs font 256 bits et sont plus fortes que celles en 128 et 192 bits, encore très employées et toujours considérées comme sûres par les experts.', + HELP_21_Desc_3: 'Vous avez une clef privée et une clef publique. La clef privée peut servir à dériver la clef publique mais l\'inverse est impossible. Le fait que l\'internet et le monde entier utilise ce système cryptographique signifie que, s\'il existait un moyen de dériver la clef privée de la clef publique, le risque que courrait votre Ether serait le moindre des problèmes de tout le monde.', + HELP_21_Desc_4: 'Cela dit, OUI : si quelqu\'un possède votre clef privée, il peut envoyer de l\'Ether depuis votre compte, de même que si une personne a le mot de passe de votre email, elle peut lire des mails ou en envoyer, ou si c\'est le mot de passe de votre compte en banque, elle peut faire des virements. Vous pouvez télécharger la versoin KEystore de votre clef privée qui est la clef privée chiffrée avec un mot de passe. Cela ressemble à avoir un mot de passe protégé par un autre mot de passe.', + HELP_21_Desc_5: 'Et OUI, en théorie, on peut taper une chaîne de 64 caractères hexadécimaux jusqu\'à en trouver un qui correspond. Il est d\'ailleurs possible d\'écrire un programme qui vérifie très rapidement des clefs privée aléatoires. C\'est ce que l\'on appelle utiliser la "brute force" ou miner des clefs privées. Beaucoup de monde y a pensé très fort et très longtemps. Quelques serveurs haut de gamme peuvent vérifier plus de 1 million de clefs par seconde. Pourtant, même ce chiffre ne donnerait pas accès à un compte suffisamment approvisionné pour en valoir la chandelle ; il est bien plus probable que vous, vos enfant et vos petits-enfants mourront avant d\'obtenir une correspondance.', + HELP_21_Desc_6: 'Si vous connaissez un peu Bitcoin, [ceci remettra les choses en perspective :](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Pour illustrer l\'improbabilité de tout ceci : supposons quqe chaque satoshi de chaque bitcoin qui sera jamais produit soit affecté à sa propre clef privée distincte. La probabilité que, parmi ces clefs, s\'en trouvent deux qui correspondent à la même adresse serait d\'environ 1 sur 100 quintillons. ', + HELP_21_Desc_7: '[Si vous voulez un argumentaire un peu plus technique :](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Ces nombres n\'ont rien à voir avec la technologie des systèmes ; ce sont les maximums autorisés par la thermodynamique. Et ils impliquent clairement qu\'une attaque par brute force contre des clefs de 256 bits restera impossible jusqu\'à ce que l\'on construise des ordinateurs avec autre chose que de la matière et qu\'ils occupent autre chose que l\'espace.', + HELP_21_Desc_8: 'Cela suppose bien entendu que les clefs sont générées d\'une manière totalement aléatoire avec suffisamment d\'entropie. C\'est le cas des clefs générées ici, tout comme celles de Jaxx et de Mist/geth. Les portefeuilles Ethereum sont tous assez bons de ce point de vue. Les clefs générées par des cerveaux humains ne le sont pas, car ces derniers ne sont pas capables de partir d\'un nombre parfaitement aléatoire. Il y a eu des cas d\'autres problèmes d\'entropie insuffisante ou de nombres imparfaitement aléatoires dans le monde de Bitcoin mais il s\'agit là d\'un tout autre problème qui peut attendre un peu.', + + HELP_SecCX_Title: 'Securité - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Où cette extension sauve-t-elle mes informations ?', + HELP_SecCX_Desc_2: 'Les informations stockées dans cette extension sont sauvegardée via [chrome.storage](http://chrome.storage/), c\'est à dire au même endroit que vos mots de passe dans Chrome.', + HELP_SecCX_Desc_3: 'Quelles informations sont sauvegardées ? ', + HELP_SecCX_Desc_4: 'L\'adresse, le surnom, la clef privée sont stockés dans chrome.storage. La clef privée est chiffrée par le mot de passe défini à l\'ajout du portefeuille. Le surnom et l\'adresse du portefeuille ne sont pas chiffrés.', + HELP_SecCX_Desc_5: 'Pourquoi le surnom et l\'adresse du portefeuille ne sont-ils pas chiffrés ? ', + HELP_SecCX_Desc_6: 'Si nous devions chiffrer ces informations, il vous faudrait entrer un mot de passe à chaque fois que vous voudriez voir votre solde ou les surnoms. Si cela vous ennuie, nous vous recommandons d\'utiliser MyEtherWallet.com au lieu de cette extension Chrome.', + + HELP_Sec_Title: 'Sécurité', + HELP_Sec_Desc_1: 'Si l\'une des premières questions que vous vous posez est "Pourquoi devrais-je faire confiance à ces gens ?", c\'est une bonne démarche. Nous espérons que ce qui suit va dissiper vos craintes. ', + HELP_Sec_Desc_2: 'Nous avons commencé en août 2015. Si vous recherchez ["myetherwallet" sur reddit](https://www.reddit.com/search?q=myetherwallet), vous pouvez voir qu\'un nombre considérable de personnes nous utilisent sans problème.', + HELP_Sec_Desc_3: 'Nous n\'allons pas prendre votre argent ou voler vos clefs privées. Il n\'y a pas de code malveillant sur ce site. En fait, les pages "Génération d\'un portefeuille" sont totalement côté client. Cela signifie que tout le code s\'éxécute sur **votre ordinateur** et n\'est jamais sauvé et/ou transmis où que ce soit.', + HELP_Sec_Desc_4: 'Vérifiez l\'URL -- Ce site est servi par Github et vous pouvez en voir le code source ici : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) aux domaines : [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) et [https://www.myetherwallet.com](https://www.myetherwallet.com). Vous pouvez vérifier qu\'il est hébergé chez Github en utilisant [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") ; les deux derniers enregistrements A appartiennent à Github pour leur hébergement de domaines spécifiques.', + HELP_Sec_Desc_5: 'Pour générer les portefeuilles, vous pouvez télécharger le [code source](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Voir #5 ci-dessus.', + HELP_Sec_Desc_6: 'Lancez un test et vérifiez le type d\'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis "Inspecter". Allez à l\'onglet "Network". Générez un portefeuille de test. Vous verrez qu\'il n\'y a pas d\'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n\'a été transféré.', + HELP_Sec_Desc_7: 'Maintenant, pour en être absolument sûr, allez à la page "Resources" (ou "Application"). Vous pouvez y voir tous les éléments qui constituent un site web. Si vous cliquez sur Local Storage, Cookies et Cache, vous verrez que rien n\'y est stocké. Rien n\'y est sauvegardé. Rafraîchissez la page et vous voilà revenu au départ."', + HELP_Sec_Desc_8: 'Si cet outil ne vous plaît pas, alors ne l\'utilisez surtout pas. Nous l\'avons créé pour qu\'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n\'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ', + + HELP_FAQ_Title: 'Plus de réponses utiles aux questions fréquentes', + HELP_Contact_Title: 'Moyens de nous contacter' +}; + +module.exports = fr; },{}],44:[function(require,module,exports){ -// Hindi -'use strict'; -var hi = function() {} -hi.code = 'hi'; -hi.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hi; +// Hebrew +'use strict'; +var he = function() {} +he.code = 'he'; +he.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = he; },{}],45:[function(require,module,exports){ -// Hungarian -'use strict'; -var hu = function() {} -hu.code = 'hu'; -hu.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hu; +// Hindi +'use strict'; +var hi = function() {} +hi.code = 'hi'; +hi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hi; },{}],46:[function(require,module,exports){ -// Indonesian -'use strict'; -var id = function() {} -id.code = 'id'; -id.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = id; +// Hungarian +'use strict'; +var hu = function() {} +hu.code = 'hu'; +hu.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hu; },{}],47:[function(require,module,exports){ -// Italian -// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e -'use strict'; -var it = function() {} -it.code = 'it'; -it.data = { - - /* Navigation*/ - NAV_YourWallets: 'I tuoi portafogli', - NAV_AddWallet: 'Aggiungi portafoglio', - NAV_GenerateWallet: 'Genera portafoglio', - NAV_BulkGenerate: 'Generazione multipla', - NAV_SendEther: 'Invia ether', - NAV_SendTokens: 'Invia token', - NAV_Offline: 'Invia offline', - NAV_WithdrawDAO: 'Preleva DAO', - DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', - NAV_ClaimDGD: 'Richiedi DGD', - DGD_TitleLong: 'Richiedi i tuoi token DGD', - NAV_DeployContract: 'Pubblica contratto', - NAV_MyWallets: 'I miei portafogli', - NAV_ViewWallet: 'Informazioni portafoglio', - NAV_Help: 'Aiuto', - NAV_Contact: 'Contatti', - - /* General */ - x_Password: 'Password', - x_Download: 'Download', - x_Address: 'Il tuo indirizzo', - x_Save: 'Salva', - x_Cancel: 'Annulla', - x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', - x_PrivKey: 'Chiave privata (non crittografata)', - x_PrivKey2: 'Chiave privata', - x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', - x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', - x_Keystore2: 'File Keystore / JSON', - x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', - x_Json: 'File JSON (non crittografato)', - x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', - x_PrintShort: 'Stampa', - x_Print: 'Stampa portafoglio cartaceo', - x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', - x_CSV: 'File CSV (non crittografato)', - x_TXT: 'File TXT (non crittografato)', - x_Wallet: 'Portafoglio', - - /* Header */ - MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', - CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', - MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', - CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', - - /* Footer */ - FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', - FOOTER_1b: 'Creato da', - FOOTER_2: 'Donazioni molto apprezzate:', - FOOTER_3: 'Generazione portafogli lato client da parte di', - FOOTER_4: 'Dichiarazione di non responsabilità', - - /* Sidebar */ - sidebar_AccountInfo: 'Informazioni conto: ', - sidebar_AccountAddr: 'Indirizzo conto: ', - sidebar_AccountBal: 'Saldo conto: ', - sidebar_TokenBal: 'Saldo token: ', - sidebar_Equiv: 'Valori equivalenti: ', - sidebar_TransHistory: 'Storico transazioni: ', - sidebar_DGDBal: 'Informazioni crowdsale DGD:', - sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', - sidebar_donate: 'Dona', - sidebar_thanks: 'GRAZIE!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', - decrypt_Title: 'Seleziona il formato della tua chiave privata:', - decrypt_Select: 'Seleziona un portafoglio:', - - /* Add Wallet */ - ADD_Label_1: 'Cosa vuoi fare?', - ADD_Radio_1: 'Genera un nuovo portafoglio', - ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', - ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', - ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', - ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', - ADD_Radio_4: 'Aggiungi un conto da osservare', - ADD_Label_2: 'Crea un nome:', - ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', - ADD_Label_4: 'Aggiungi un conto da osservare', - ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', - ADD_Label_5: 'Inserisci l\'indirizzo: ', - ADD_Label_6: 'Sblocca portafoglio: ', - ADD_Label_6_short: 'Sblocca', - ADD_Label_7: 'Aggiungi conto', - - /* Generate Wallets */ - GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', - GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', - GEN_Placeholder_1: 'NON dimenticarti di salvarla!', - GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', - GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', - GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', - GEN_Label_3: 'Salva il tuo indirizzo.', - GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Numero di portafogli da generare', - BULK_Label_2: 'Genera portafogli', - BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Indirizzo destinatario: ', - SEND_amount: 'Importo da inviare: ', - SEND_amount_short: 'Importo', - SEND_custom: 'Altro', - SEND_gas: 'Gas', - SEND_generate: 'Genera transazione', - SEND_raw: 'Transazione grezza', - SEND_signed: 'Transazione firmata', - SEND_trans: 'Invia transazione', - SEND_TransferTotal: 'Invia l\'intero saldo', - SENDModal_Title: 'Attenzione! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Stai per inviare', - SENDModal_Content_2: 'all\'indirizzo', - SENDModal_Content_3: 'Sei sicuro di volerlo fare?', - SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', - SENDModal_No: 'No, tiratemi fuori da qui!', - SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', - - /* Tokens */ - TOKEN_Addr: 'Indirizzo: ', - TOKEN_Symbol: 'Simbolo del token: ', - TOKEN_Dec: 'Decimali: ', - - /* Send Transaction */ - TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', - TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', - TRANS_standard: 'ETH (transazione standard)', - TRANS_eth: 'Solo ETH', - TRANS_etc: 'Solo ETC', - TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', - TRANS_data: ' Dati: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', - TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', - TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', - TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', - TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', - TRANSModal_Yes: 'Bene, ho capito.', - TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genera & invia una transazione offline', - OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', - OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', - OFFLINE_Step1_Button: 'Genera informazioni', - OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', - OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', - OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', - OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', - OFFLINE_Step2_Label_2: 'Valore / importo da inviare', - OFFLINE_Step2_Label_3: 'Prezzo gas ', - OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_4: 'Limite gas ', - OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_6: 'Dati', - OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', - OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', - OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', - OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', - - /* DAO */ - DAO_bal1: 'al blocco 1.919.999', - DAO_bal2: 'adesso', - DAO_TitleETH: 'Preleva DAO e ricevi ETH', - DAO_TitleETC: 'Preleva DAO e ricevi ETC', - DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', - DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', - DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', - DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', - DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', - DAOModal_Title: 'Tanto per essere sicuri...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Stai per prelevare', - DAOModal_2: 'token DAO inviando a', - DAOModal_3: 'una somma di', // "in return for" - - /* Digix */ - DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', - DGD_Label_1: 'Stima commissione utilizzata:', - DGD_Label_2: 'Commissione massima fornita:', - DGD_Label_3: 'Prezzo gas:', - DGD_Generate: 'Genera richiesta', - DGD_Content: 'Stai per richiedere i tuoi token DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Genera bytecode', - DEP_generated: 'Bytecode generato', - DEP_signtx: 'Firma transazione', - DEP_interface: 'Interfaccia generata', - - /* My Wallet */ - MYWAL_Nick: 'Nome portafoglio', - MYWAL_Address: 'Indirizzo portafoglio', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Modifica', - MYWAL_View: 'Mostra', - MYWAL_Remove: 'Rimuovi', - MYWAL_RemoveWal: 'Rimozione portafoglio:', - MYWAL_WatchOnly: 'I tuoi conti osservati', - MYWAL_Viewing: 'Dettagli portafoglio: ', - MYWAL_Hide: 'Nascondi informazioni portafoglio', - MYWAL_Edit_2: 'Modifica portafoglio: ', - MYWAL_Name: 'Nome portafoglio', - MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', - MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', - MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', - VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', - - /* CX */ - CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', - CX_quicksend: 'Invio rapido', - - /* Error Messages */ - ERROR_1: 'Ti preghiamo di inserire una quantità valida.', - ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', - ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', - ERROR_4: 'Questo non è un file portafoglio valido. ', - ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', - ERROR_6: 'Indirizzo non valido. ', - ERROR_7: 'Password non valida. ', - ERROR_8: 'Numero non valido. ', - ERROR_9: 'Limite gas non valido. ', - ERROR_10: 'Valori dati non validi. ', - ERROR_11: 'Quantità di gas non valida. ', - ERROR_12: 'Nonce non valido. ', - ERROR_13: 'Transazione firmata non valida. ', - ERROR_14: 'Esiste già un portafoglio con questo nome. ', - ERROR_15: 'Portafoglio non trovato. ', - ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', - ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', - ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', - ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', - ERROR_20: 'Simbolo non valido', - SUCCESS_1: 'Indirizzo valido', - SUCCESS_2: 'Portafoglio decodificato correttamente', - SUCCESS_3: 'Transazione inviata. TX ID: ', - SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', - SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', - SUCCESS_6: 'File selezionato: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Mittente non valido', - GETH_Nonce: 'Nonce troppo basso', - GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', - GETH_Balance: 'Saldo insufficiente', - GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', - GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', - GETH_IntrinsicGas: 'Gas intrinseco troppo basso', - GETH_GasLimit: 'Eccede il limite gas per il blocco', - GETH_NegativeValue: 'Valore negativo', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Grazie ai nostri traduttori: ', - TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', - TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', - HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', - HELP_Remind_Title: 'Qualche promemoria', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', - HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', - - HELP_0_Title: '0) Sono nuovo. Cosa faccio?', - HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', - HELP_0_Desc_2: 'Crea un nuovo portafoglio.', - HELP_0_Desc_3: 'Fai un backup del portafoglio.', - HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', - HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', - - HELP_1_Title: '1) Come creo un nuovo portafoglio? ', - HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', - HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', - HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', - HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', - HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', - - HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', - HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', - HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', - HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', - HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', - HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', - HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', - - HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', - HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', - HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', - HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', - HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', - HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', - HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', - HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', - - HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', - HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', - HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', - HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', - HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', - HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', - - HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', - HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', - HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', - HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', - HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', - HELP_4_Desc_9: 'Fai clic su "Genera transazione".', - HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', - - HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', - HELP_4CX_Desc_2: 'Invio rapido:', - HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', - HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', - HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', - HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', - HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', - HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', - HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', - HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', - - HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', - HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', - HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', - HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', - HELP_5_Desc_5: 'Decomprimi il file.', - HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', - HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', - HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', - - HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', - HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', - HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', - HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', - HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', - HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', - HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', - HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', - - HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', - HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', - HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', - HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', - HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', - HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', - HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', - HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', - HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', - HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', - HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', - HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', - HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', - HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', - HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', - - HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', - HELP_7_Desc_1: 'Vai alla pagina "Invia token".', - HELP_7_Desc_2: 'Sblocca il portafoglio.', - HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', - HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', - HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', - HELP_7_Desc_7: 'Fai clic su "Altro".', - HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', - HELP_7_Desc_9: 'Fai clic su "Salva".', - HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', - HELP_7_Desc_11: 'Fai clic su "Genera transazione".', - HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', - - HELP_8_Title: '8) Che succede se il vostro sito va giù?', - HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', - HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', - HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', - HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', - - HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', - HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', - HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', - HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', - - HELP_9_Title: '9) La pagina "Invia ether" è offline?', - HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', - - HELP_10_Title: '10) Come creo una transazione offline?', - HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', - HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', - HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', - HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', - HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', - HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', - HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', - HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', - - HELP_11_Title: '11) Come faccio a inviare a un contratto?', - HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', - HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', - HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', - HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', - HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', - HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', - HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', - HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', - HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', - HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', - HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', - HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', - HELP_12_Desc_11: 'Con una chiave privata non crittografata...', - HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', - HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', - HELP_12_Desc_15: 'Se sei su un Mac:', - HELP_12_Desc_15b: 'Se sei su un PC:', - HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', - HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', - HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', - HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', - HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', - HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', - HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', - HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', - HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', - HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', - HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', - - HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', - HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', - HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', - HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', - - HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', - HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', - - HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', - HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', - - HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', - - HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', - HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', - - HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', - HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', - - HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', - HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', - HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', - HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', - HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', - HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', - HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', - HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', - HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', - - HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', - HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', - HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', - HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', - HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', - HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', - - HELP_Sec_Title: 'Sicurezza', - HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', - HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', - HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', - HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', - HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', - HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', - HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', - HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', - - HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', - HELP_Contact_Title: 'Modi per contattarci (in Inglese)' -}; - -module.exports = it; +// Indonesian +'use strict'; +var id = function() {} +id.code = 'id'; +id.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dompet Anda', /*'Your Wallets'*/ + NAV_AddWallet: 'Tambahkan Dompet', /*'Add Wallet'*/ + NAV_GenerateWallet: 'Buat Dompet', /*'Generate Wallet'*/ + NAV_BulkGenerate: 'Buat Banyak Dompet Sekaligus', /*'Bulk Generate'*/ + NAV_SendEther: 'Kirim Ether', /*'Send Ether'*/ + NAV_SendTokens: 'Kirim Tokens', /*'Send Tokens'*/ + NAV_Offline: 'Kirim Offline', /*'Send Offline'*/ + NAV_WithdrawDAO: 'Ambil DAO', /*'Withdraw DAO'*/ + DAO_TitleLong: 'Ambil ETH dari Token DAO Anda Withdraw Your Dao Tokens For ETH', /*'Withdraw Your Dao Tokens For ETH'*/ + NAV_ClaimDGD: 'Klaim DGD', /*'Claim DGD'*/ + DGD_TitleLong: 'Klaim DGD Token Anda', /*'Claim Your DGD Tokens'*/ + NAV_DeployContract: 'Deploy Contract', /*'Deploy Contract'*/ + NAV_MyWallets: 'Dompet Saya', /*'My Wallets'*/ + NAV_ViewWallet: 'Lihat Info Dompet', /*'View Wallet Info'*/ + NAV_Help: 'Bantuan', /*'Help'*/ + NAV_Contact: 'Kontak', /*'Contact'*/ + + /* General */ + x_Address: 'Alamat Anda', /*'Your Address'*/ + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Batal', /*'Cancel'*/ + x_CSV: 'File CSV (tidak ter-enkripsi)', /*'CSV file (unencrypted)*/ + x_Download: 'Download', + x_Json: 'File JSON File (tidak ter-enkripsi)', /*'JSON File (unencrypted)'*/ + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Dompet Kertas', /*'Print Paper Wallet'*/ + x_PrintDesc: 'ProTip: klik print dan simpan sebagai PDF, meskipun Anda tidak memiliki printer!', /*'ProTip: Click print and save this as a PDF, even if you do not own a printer!'*/ + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (tidak ter-enkripsi)', /*'Private Key (unencrypted)'*/ + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Simpan', /*'Save'*/ + x_TXT: 'File TXT file (tidak ter-enkripsi)', /*'TXT file (unencrypted)'*/ + x_Wallet: 'Dompet', /*'Wallet'*/ + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'Yos Ginting', + TranslatorAddr_1: '0x8F646C5c215be6E0163f02Bd2eB97AFC2DF70e5c', + /* Translator 1: Start translating into Indonesian. Will do it in stages */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = id; },{}],48:[function(require,module,exports){ -// Japanese -'use strict'; -var ja = function() {} -ja.code = 'ja'; -ja.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'あなたのウォレット', - NAV_AddWallet: 'ウォレットを追加', - NAV_GenerateWallet: 'ウォレットを作成', - NAV_BulkGenerate: 'バルク作成', - NAV_SendEther: 'Ether送出', - NAV_SendTokens: 'トークン送出', - NAV_Offline: 'オフライン送出', - NAV_WithdrawDAO: 'DAO払い戻し', - DAO_TitleLong: 'DAOトークンをETHで払い出し', - NAV_ClaimDGD: 'DGD請求', - DGD_TitleLong: 'DGDトークンを請求', - NAV_DeployContract: 'コントラクトをデプロイ', - NAV_MyWallets: '自分のウォレット', - NAV_ViewWallet: 'ウォレット情報を見る', - NAV_Help: 'ヘルプ', - NAV_Contact: '連絡する', - - /* General */ - x_Address: '自分のアドレス', - x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', - x_CSV: 'CSV ファイル (未暗号化)', - x_Cancel: '取り消す', - x_Download: 'ダウンロード', - x_Json: 'JSON ファイル (未暗号化)', - x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', - x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', - x_Keystore2: 'Keystore / JSON ファイル', - x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', - x_Password: 'パスワード', - x_Print: 'ペーパーウォレットを印刷', - x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', - x_PrintShort: '印刷', - x_PrivKey: 'プライベートキー(未暗号化)', - x_PrivKey2: 'プライベートキー', - x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', - x_Save: '保存する', - x_TXT: 'TXT ファイル (未暗号化)', - x_Wallet: 'ウォレット', - - /* Header */ - MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', - CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', - MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', - CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', - - /* Footer */ - FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', - FOOTER_1b: '制作', - FOOTER_2: '御寄付に感謝!:', - FOOTER_3: 'クライアントサイドウォレット制作', - FOOTER_4: '免責事項', - - /* Sidebar */ - sidebar_AccountInfo: 'アカウント情報: ', - sidebar_AccountAddr: 'アカウントアドレス: ', - sidebar_AccountBal: 'アカウント残高: ', - sidebar_TokenBal: 'トークン残高: ', - sidebar_Equiv: '等価: ', - sidebar_TransHistory: 'トランザクション履歴: ', - sidebar_DGDBal: 'DGDクラウドセール情報:', - sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', - sidebar_donate: '寄付する', - sidebar_thanks: '感謝します!!!', - - /* Decrypt Panel */ - decrypt_Access: 'どの方法でウォレットを操作しますか?', - decrypt_Title: 'プライベートキーフォーマットの選択:', - decrypt_Select: 'ウォレットの選択', - - /* Add Wallet */ - ADD_Label_1: 'ご希望の操作をお選びください', - ADD_Radio_1: '新規ウォレットの作成', - ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', - ADD_Radio_2_alt: 'ウォレットファイルの選択: ', - ADD_Radio_2_short: 'ウォレットファイルを選択', - ADD_Radio_3: 'プライベートキーをペースト/タイプ ', - ADD_Radio_4: '監視するアカウントを追加', - ADD_Label_2: 'ニックネームの作成:', - ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', - ADD_Label_4: '監視するアカウントを追加', - ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', - ADD_Label_5: 'アドレスを入力: ', - ADD_Label_6: 'ウォレットをアンロック: ', - ADD_Label_6_short: 'アンロック', - ADD_Label_7: 'アカウントを追加', - - /* Generate Wallets */ - GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', - GEN_Label_1: '強固なパスワードを入力(9文字以上)', - GEN_Placeholder_1: '必ず保存してください!', - GEN_SuccessMsg: '成功!ウォレットが作成されました。', - GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', - GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', - GEN_Label_3: 'アドレスを保存してください。', - GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', - - /* Bulk Generate Wallets */ - BULK_Label_1: '作成するウォレット数', - BULK_Label_2: '複数ウォレットを作成する', - BULK_SuccessMsg: '成功!ウォレットが作成されました。', - - /* Sending Ether and Tokens */ - SEND_addr: '宛先アドレス: ', - SEND_amount: '送出数量: ', - SEND_amount_short: '数量', - SEND_custom: 'カスタム', - SEND_gas: 'ガス', - SEND_TransferTotal: '残高をすべて送出する', - SEND_generate: 'トランザクションを生成', - SEND_raw: '未加工トランザクション', - SEND_signed: '署名済みトランザクション', - SEND_trans: 'トランザクションの送出', - SENDModal_Title: '警告! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: '送出準備が', - SENDModal_Content_2: 'について、アドレス', - SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', - SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', - SENDModal_No: 'いいえ、中断します。', - SENDModal_Yes: 'はい、確かです。処理を実行します。', - - /* Tokens */ - TOKEN_Addr: 'アドレス:', - TOKEN_Symbol: 'トークンシンボル: ', - TOKEN_Dec: 'ケタ数: ', - - /* Send Transaction */ - TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', - TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', - TRANS_standard: 'ETH(標準トランザクション)', - TRANS_eth: 'ETHのみ', - TRANS_etc: 'ETCのみ', - TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', - TRANS_data: ' データ: ', - TRANS_gas: ' ガス: ', - TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', - - /* Send Transaction Modals */ - TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', - TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', - TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', - TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', - TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: '理解しました。', - TRANSModal_No: '理解できません。ヘルプが必要です。', - - /* Offline Transaction */ - OFFLINE_Title: 'オフライントランザクションを作成し送出', - OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', - OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', - OFFLINE_Step1_Button: '情報生成', - OFFLINE_Step1_Label_1: '送出元アドレス: ', - OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', - OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', - OFFLINE_Step2_Label_1: '送出先アドレス: ', - OFFLINE_Step2_Label_2: '送出する値/総量', - OFFLINE_Step2_Label_3: 'ガス価格 ', - OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_4: 'ガスリミット ', - OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_6: 'データ', - OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', - OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', - OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', - OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', - - /* DAO */ - DAO_bal1: 'ブロック 1,919,999', - DAO_bal2: '現在の', - DAO_TitleETH: 'ETHでDAOを払い出し', - DAO_TitleETC: 'ETCでDAOを払い出し', - DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', - DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', - DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', - DAO_Inst: '赤いボタンをクリックしてください。簡単です。', - DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', - DAOModal_Title: '確認中/...', - DAOModal_1: '払い出しを進めます', - DAOModal_2: 'DAOトークンを', - DAOModal_3: 'に対し', // “の代わりに” - - /* Digix */ - DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', - DGD_Label_1: 'フィー消費量概算:', - DGD_Label_2: 'フィー最大消費量:', - DGD_Label_3: 'ガス価格:', - DGD_Generate: '請求の生成', - DGD_Content: 'DGDトークンの請求を進めます', - - /* Deploy Contracts */ - DEP_generate: 'バイトコードを生成する', - DEP_generated: '生成されたバイトコード', - DEP_signtx: 'トランザクションに署名', - DEP_interface: '生成されたインターフェース', - - /* My Wallet */ - MYWAL_Nick: 'ウォレットニックネーム', - MYWAL_Address: 'ウォレットアドレス', - MYWAL_Bal: '残高', - MYWAL_Edit: '編集', - MYWAL_View: '表示', - MYWAL_Remove: '除去', - MYWAL_RemoveWal: 'ウォレットを除去:', - MYWAL_WatchOnly: '自分の監視専用アカウント', - MYWAL_Viewing: 'ウォレットを表示: ', - MYWAL_Hide: 'ウォレット情報を隠す', - MYWAL_Edit_2: 'ウォレットを編集: ', - MYWAL_Name: 'ウォレット名', - MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', - MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', - MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', - VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', - VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', - - /* Chrome Extension */ - CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', - CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: '正しい値を入力してください。', - ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', - ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', - ERROR_4: '正しいウォレットファイルではありません。 ', - ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', - ERROR_6: '無効なアドレスです。 ', - ERROR_7: '無効なパスワードです。 ', - ERROR_8: '無効な総量です。 ', - ERROR_9: '無効なガスリミットです。 ', - ERROR_10: '無効なデータです。 ', - ERROR_11: '無効なガス総量です。 ', - ERROR_12: '無効な nonce です。 ', - ERROR_13: '無効な署名のトランザクションです。 ', - ERROR_14: '同じニックネームのウォレットが既にあります。 ', - ERROR_15: 'ウォレットが見つかりません。 ', - ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', - ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', - ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', - ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  - ERROR_20: '無効なシンボル', - SUCCESS_1: '有効なアドレス', - SUCCESS_2: 'ウォレットは正常に暗号解除されました。', - SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', - SUCCESS_4: 'ウォレットが追加されました:', - SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', - SUCCESS_6: '選択されました: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'トランスレーターに感謝: ', - TranslatorName_1: 'sekisanchi', - TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', - /* Translator 1: Kazunori Seki / 関一典 */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ja; +// Italian +// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e +'use strict'; +var it = function() {} +it.code = 'it'; +it.data = { + + /* Navigation*/ + NAV_YourWallets: 'I tuoi portafogli', + NAV_AddWallet: 'Aggiungi portafoglio', + NAV_GenerateWallet: 'Genera portafoglio', + NAV_BulkGenerate: 'Generazione multipla', + NAV_SendEther: 'Invia ether', + NAV_SendTokens: 'Invia token', + NAV_Offline: 'Invia offline', + NAV_WithdrawDAO: 'Preleva DAO', + DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', + NAV_ClaimDGD: 'Richiedi DGD', + DGD_TitleLong: 'Richiedi i tuoi token DGD', + NAV_DeployContract: 'Pubblica contratto', + NAV_MyWallets: 'I miei portafogli', + NAV_ViewWallet: 'Informazioni portafoglio', + NAV_Help: 'Aiuto', + NAV_Contact: 'Contatti', + + /* General */ + x_Password: 'Password', + x_Download: 'Download', + x_Address: 'Il tuo indirizzo', + x_Save: 'Salva', + x_Cancel: 'Annulla', + x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', + x_PrivKey: 'Chiave privata (non crittografata)', + x_PrivKey2: 'Chiave privata', + x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', + x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', + x_Keystore2: 'File Keystore / JSON', + x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', + x_Json: 'File JSON (non crittografato)', + x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', + x_PrintShort: 'Stampa', + x_Print: 'Stampa portafoglio cartaceo', + x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', + x_CSV: 'File CSV (non crittografato)', + x_TXT: 'File TXT (non crittografato)', + x_Wallet: 'Portafoglio', + + /* Header */ + MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', + CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', + MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', + CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', + + /* Footer */ + FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', + FOOTER_1b: 'Creato da', + FOOTER_2: 'Donazioni molto apprezzate:', + FOOTER_3: 'Generazione portafogli lato client da parte di', + FOOTER_4: 'Dichiarazione di non responsabilità', + + /* Sidebar */ + sidebar_AccountInfo: 'Informazioni conto: ', + sidebar_AccountAddr: 'Indirizzo conto: ', + sidebar_AccountBal: 'Saldo conto: ', + sidebar_TokenBal: 'Saldo token: ', + sidebar_Equiv: 'Valori equivalenti: ', + sidebar_TransHistory: 'Storico transazioni: ', + sidebar_DGDBal: 'Informazioni crowdsale DGD:', + sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', + sidebar_donate: 'Dona', + sidebar_thanks: 'GRAZIE!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', + decrypt_Title: 'Seleziona il formato della tua chiave privata:', + decrypt_Select: 'Seleziona un portafoglio:', + + /* Add Wallet */ + ADD_Label_1: 'Cosa vuoi fare?', + ADD_Radio_1: 'Genera un nuovo portafoglio', + ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', + ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', + ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', + ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', + ADD_Radio_4: 'Aggiungi un conto da osservare', + ADD_Label_2: 'Crea un nome:', + ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', + ADD_Label_4: 'Aggiungi un conto da osservare', + ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', + ADD_Label_5: 'Inserisci l\'indirizzo: ', + ADD_Label_6: 'Sblocca portafoglio: ', + ADD_Label_6_short: 'Sblocca', + ADD_Label_7: 'Aggiungi conto', + + /* Generate Wallets */ + GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', + GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', + GEN_Placeholder_1: 'NON dimenticarti di salvarla!', + GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', + GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', + GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', + GEN_Label_3: 'Salva il tuo indirizzo.', + GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Numero di portafogli da generare', + BULK_Label_2: 'Genera portafogli', + BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Indirizzo destinatario: ', + SEND_amount: 'Importo da inviare: ', + SEND_amount_short: 'Importo', + SEND_custom: 'Altro', + SEND_gas: 'Gas', + SEND_generate: 'Genera transazione', + SEND_raw: 'Transazione grezza', + SEND_signed: 'Transazione firmata', + SEND_trans: 'Invia transazione', + SEND_TransferTotal: 'Invia l\'intero saldo', + SENDModal_Title: 'Attenzione! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Stai per inviare', + SENDModal_Content_2: 'all\'indirizzo', + SENDModal_Content_3: 'Sei sicuro di volerlo fare?', + SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', + SENDModal_No: 'No, tiratemi fuori da qui!', + SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', + + /* Tokens */ + TOKEN_Addr: 'Indirizzo: ', + TOKEN_Symbol: 'Simbolo del token: ', + TOKEN_Dec: 'Decimali: ', + + /* Send Transaction */ + TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', + TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', + TRANS_standard: 'ETH (transazione standard)', + TRANS_eth: 'Solo ETH', + TRANS_etc: 'Solo ETC', + TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', + TRANS_data: ' Dati: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', + TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', + TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', + TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', + TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', + TRANSModal_Yes: 'Bene, ho capito.', + TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genera & invia una transazione offline', + OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', + OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', + OFFLINE_Step1_Button: 'Genera informazioni', + OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', + OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', + OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', + OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', + OFFLINE_Step2_Label_2: 'Valore / importo da inviare', + OFFLINE_Step2_Label_3: 'Prezzo gas ', + OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_4: 'Limite gas ', + OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_6: 'Dati', + OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', + OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', + OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', + OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', + + /* DAO */ + DAO_bal1: 'al blocco 1.919.999', + DAO_bal2: 'adesso', + DAO_TitleETH: 'Preleva DAO e ricevi ETH', + DAO_TitleETC: 'Preleva DAO e ricevi ETC', + DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', + DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', + DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', + DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', + DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', + DAOModal_Title: 'Tanto per essere sicuri...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Stai per prelevare', + DAOModal_2: 'token DAO inviando a', + DAOModal_3: 'una somma di', // "in return for" + + /* Digix */ + DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', + DGD_Label_1: 'Stima commissione utilizzata:', + DGD_Label_2: 'Commissione massima fornita:', + DGD_Label_3: 'Prezzo gas:', + DGD_Generate: 'Genera richiesta', + DGD_Content: 'Stai per richiedere i tuoi token DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Genera bytecode', + DEP_generated: 'Bytecode generato', + DEP_signtx: 'Firma transazione', + DEP_interface: 'Interfaccia generata', + + /* My Wallet */ + MYWAL_Nick: 'Nome portafoglio', + MYWAL_Address: 'Indirizzo portafoglio', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Modifica', + MYWAL_View: 'Mostra', + MYWAL_Remove: 'Rimuovi', + MYWAL_RemoveWal: 'Rimozione portafoglio:', + MYWAL_WatchOnly: 'I tuoi conti osservati', + MYWAL_Viewing: 'Dettagli portafoglio: ', + MYWAL_Hide: 'Nascondi informazioni portafoglio', + MYWAL_Edit_2: 'Modifica portafoglio: ', + MYWAL_Name: 'Nome portafoglio', + MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', + MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', + MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', + VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', + + /* CX */ + CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', + CX_quicksend: 'Invio rapido', + + /* Error Messages */ + ERROR_1: 'Ti preghiamo di inserire una quantità valida.', + ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', + ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', + ERROR_4: 'Questo non è un file portafoglio valido. ', + ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', + ERROR_6: 'Indirizzo non valido. ', + ERROR_7: 'Password non valida. ', + ERROR_8: 'Numero non valido. ', + ERROR_9: 'Limite gas non valido. ', + ERROR_10: 'Valori dati non validi. ', + ERROR_11: 'Quantità di gas non valida. ', + ERROR_12: 'Nonce non valido. ', + ERROR_13: 'Transazione firmata non valida. ', + ERROR_14: 'Esiste già un portafoglio con questo nome. ', + ERROR_15: 'Portafoglio non trovato. ', + ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', + ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', + ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', + ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', + ERROR_20: 'Simbolo non valido', + SUCCESS_1: 'Indirizzo valido', + SUCCESS_2: 'Portafoglio decodificato correttamente', + SUCCESS_3: 'Transazione inviata. TX ID: ', + SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', + SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', + SUCCESS_6: 'File selezionato: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Mittente non valido', + GETH_Nonce: 'Nonce troppo basso', + GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', + GETH_Balance: 'Saldo insufficiente', + GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', + GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', + GETH_IntrinsicGas: 'Gas intrinseco troppo basso', + GETH_GasLimit: 'Eccede il limite gas per il blocco', + GETH_NegativeValue: 'Valore negativo', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Grazie ai nostri traduttori: ', + TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', + TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', + HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', + HELP_Remind_Title: 'Qualche promemoria', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', + HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', + + HELP_0_Title: '0) Sono nuovo. Cosa faccio?', + HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', + HELP_0_Desc_2: 'Crea un nuovo portafoglio.', + HELP_0_Desc_3: 'Fai un backup del portafoglio.', + HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', + HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', + + HELP_1_Title: '1) Come creo un nuovo portafoglio? ', + HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', + HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', + HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', + HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', + HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', + + HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', + HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', + HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', + HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', + HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', + HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', + HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', + + HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', + HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', + HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', + HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', + HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', + HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', + HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', + HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', + + HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', + HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', + HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', + HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', + HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', + HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', + + HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', + HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', + HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', + HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', + HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', + HELP_4_Desc_9: 'Fai clic su "Genera transazione".', + HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', + + HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', + HELP_4CX_Desc_2: 'Invio rapido:', + HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', + HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', + HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', + HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', + HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', + HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', + HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', + HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', + + HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', + HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', + HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', + HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', + HELP_5_Desc_5: 'Decomprimi il file.', + HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', + HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', + HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', + + HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', + HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', + HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', + HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', + HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', + HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', + HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', + HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', + + HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', + HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', + HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', + HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', + HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', + HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', + HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', + HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', + HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', + HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', + HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', + HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', + HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', + HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', + HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', + + HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', + HELP_7_Desc_1: 'Vai alla pagina "Invia token".', + HELP_7_Desc_2: 'Sblocca il portafoglio.', + HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', + HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', + HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', + HELP_7_Desc_7: 'Fai clic su "Altro".', + HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', + HELP_7_Desc_9: 'Fai clic su "Salva".', + HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', + HELP_7_Desc_11: 'Fai clic su "Genera transazione".', + HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', + + HELP_8_Title: '8) Che succede se il vostro sito va giù?', + HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', + HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', + HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', + HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', + + HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', + HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', + HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', + HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', + + HELP_9_Title: '9) La pagina "Invia ether" è offline?', + HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', + + HELP_10_Title: '10) Come creo una transazione offline?', + HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', + HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', + HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', + HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', + HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', + HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', + HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', + HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', + + HELP_11_Title: '11) Come faccio a inviare a un contratto?', + HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', + HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', + HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', + HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', + HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', + HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', + HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', + HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', + HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', + HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', + HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', + HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', + HELP_12_Desc_11: 'Con una chiave privata non crittografata...', + HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', + HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', + HELP_12_Desc_15: 'Se sei su un Mac:', + HELP_12_Desc_15b: 'Se sei su un PC:', + HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', + HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', + HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', + HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', + HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', + HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', + HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', + HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', + HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', + HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', + HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', + + HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', + HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', + HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', + HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', + + HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', + HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', + + HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', + HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', + + HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', + + HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', + HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', + + HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', + HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', + + HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', + HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', + HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', + HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', + HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', + HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', + HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', + HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', + HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', + + HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', + HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', + HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', + HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', + HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', + HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', + + HELP_Sec_Title: 'Sicurezza', + HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', + HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', + HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', + HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', + HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', + HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', + HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', + HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', + + HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', + HELP_Contact_Title: 'Modi per contattarci (in Inglese)' +}; + +module.exports = it; },{}],49:[function(require,module,exports){ -// Korean -'use strict'; -var ko = function() {} -ko.code = 'ko'; -ko.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ko; +// Japanese +'use strict'; +var ja = function() {} +ja.code = 'ja'; +ja.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'あなたのウォレット', + NAV_AddWallet: 'ウォレットを追加', + NAV_GenerateWallet: 'ウォレットを作成', + NAV_BulkGenerate: 'バルク作成', + NAV_SendEther: 'Ether送出', + NAV_SendTokens: 'トークン送出', + NAV_Offline: 'オフライン送出', + NAV_WithdrawDAO: 'DAO払い戻し', + DAO_TitleLong: 'DAOトークンをETHで払い出し', + NAV_ClaimDGD: 'DGD請求', + DGD_TitleLong: 'DGDトークンを請求', + NAV_DeployContract: 'コントラクトをデプロイ', + NAV_MyWallets: '自分のウォレット', + NAV_ViewWallet: 'ウォレット情報を見る', + NAV_Help: 'ヘルプ', + NAV_Contact: '連絡する', + + /* General */ + x_Address: '自分のアドレス', + x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', + x_CSV: 'CSV ファイル (未暗号化)', + x_Cancel: '取り消す', + x_Download: 'ダウンロード', + x_Json: 'JSON ファイル (未暗号化)', + x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', + x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', + x_Keystore2: 'Keystore / JSON ファイル', + x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', + x_Password: 'パスワード', + x_Print: 'ペーパーウォレットを印刷', + x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', + x_PrintShort: '印刷', + x_PrivKey: 'プライベートキー(未暗号化)', + x_PrivKey2: 'プライベートキー', + x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', + x_Save: '保存する', + x_TXT: 'TXT ファイル (未暗号化)', + x_Wallet: 'ウォレット', + + /* Header */ + MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', + CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', + MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', + CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', + + /* Footer */ + FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', + FOOTER_1b: '制作', + FOOTER_2: '御寄付に感謝!:', + FOOTER_3: 'クライアントサイドウォレット制作', + FOOTER_4: '免責事項', + + /* Sidebar */ + sidebar_AccountInfo: 'アカウント情報: ', + sidebar_AccountAddr: 'アカウントアドレス: ', + sidebar_AccountBal: 'アカウント残高: ', + sidebar_TokenBal: 'トークン残高: ', + sidebar_Equiv: '等価: ', + sidebar_TransHistory: 'トランザクション履歴: ', + sidebar_DGDBal: 'DGDクラウドセール情報:', + sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', + sidebar_donate: '寄付する', + sidebar_thanks: '感謝します!!!', + + /* Decrypt Panel */ + decrypt_Access: 'どの方法でウォレットを操作しますか?', + decrypt_Title: 'プライベートキーフォーマットの選択:', + decrypt_Select: 'ウォレットの選択', + + /* Add Wallet */ + ADD_Label_1: 'ご希望の操作をお選びください', + ADD_Radio_1: '新規ウォレットの作成', + ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', + ADD_Radio_2_alt: 'ウォレットファイルの選択: ', + ADD_Radio_2_short: 'ウォレットファイルを選択', + ADD_Radio_3: 'プライベートキーをペースト/タイプ ', + ADD_Radio_4: '監視するアカウントを追加', + ADD_Label_2: 'ニックネームの作成:', + ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', + ADD_Label_4: '監視するアカウントを追加', + ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', + ADD_Label_5: 'アドレスを入力: ', + ADD_Label_6: 'ウォレットをアンロック: ', + ADD_Label_6_short: 'アンロック', + ADD_Label_7: 'アカウントを追加', + + /* Generate Wallets */ + GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', + GEN_Label_1: '強固なパスワードを入力(9文字以上)', + GEN_Placeholder_1: '必ず保存してください!', + GEN_SuccessMsg: '成功!ウォレットが作成されました。', + GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', + GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', + GEN_Label_3: 'アドレスを保存してください。', + GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', + + /* Bulk Generate Wallets */ + BULK_Label_1: '作成するウォレット数', + BULK_Label_2: '複数ウォレットを作成する', + BULK_SuccessMsg: '成功!ウォレットが作成されました。', + + /* Sending Ether and Tokens */ + SEND_addr: '宛先アドレス: ', + SEND_amount: '送出数量: ', + SEND_amount_short: '数量', + SEND_custom: 'カスタム', + SEND_gas: 'ガス', + SEND_TransferTotal: '残高をすべて送出する', + SEND_generate: 'トランザクションを生成', + SEND_raw: '未加工トランザクション', + SEND_signed: '署名済みトランザクション', + SEND_trans: 'トランザクションの送出', + SENDModal_Title: '警告! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: '送出準備が', + SENDModal_Content_2: 'について、アドレス', + SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', + SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', + SENDModal_No: 'いいえ、中断します。', + SENDModal_Yes: 'はい、確かです。処理を実行します。', + + /* Tokens */ + TOKEN_Addr: 'アドレス:', + TOKEN_Symbol: 'トークンシンボル: ', + TOKEN_Dec: 'ケタ数: ', + + /* Send Transaction */ + TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', + TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', + TRANS_standard: 'ETH(標準トランザクション)', + TRANS_eth: 'ETHのみ', + TRANS_etc: 'ETCのみ', + TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', + TRANS_data: ' データ: ', + TRANS_gas: ' ガス: ', + TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', + + /* Send Transaction Modals */ + TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', + TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', + TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', + TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', + TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: '理解しました。', + TRANSModal_No: '理解できません。ヘルプが必要です。', + + /* Offline Transaction */ + OFFLINE_Title: 'オフライントランザクションを作成し送出', + OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', + OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', + OFFLINE_Step1_Button: '情報生成', + OFFLINE_Step1_Label_1: '送出元アドレス: ', + OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', + OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', + OFFLINE_Step2_Label_1: '送出先アドレス: ', + OFFLINE_Step2_Label_2: '送出する値/総量', + OFFLINE_Step2_Label_3: 'ガス価格 ', + OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_4: 'ガスリミット ', + OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_6: 'データ', + OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', + OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', + OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', + OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', + + /* DAO */ + DAO_bal1: 'ブロック 1,919,999', + DAO_bal2: '現在の', + DAO_TitleETH: 'ETHでDAOを払い出し', + DAO_TitleETC: 'ETCでDAOを払い出し', + DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', + DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', + DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', + DAO_Inst: '赤いボタンをクリックしてください。簡単です。', + DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', + DAOModal_Title: '確認中/...', + DAOModal_1: '払い出しを進めます', + DAOModal_2: 'DAOトークンを', + DAOModal_3: 'に対し', // “の代わりに” + + /* Digix */ + DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', + DGD_Label_1: 'フィー消費量概算:', + DGD_Label_2: 'フィー最大消費量:', + DGD_Label_3: 'ガス価格:', + DGD_Generate: '請求の生成', + DGD_Content: 'DGDトークンの請求を進めます', + + /* Deploy Contracts */ + DEP_generate: 'バイトコードを生成する', + DEP_generated: '生成されたバイトコード', + DEP_signtx: 'トランザクションに署名', + DEP_interface: '生成されたインターフェース', + + /* My Wallet */ + MYWAL_Nick: 'ウォレットニックネーム', + MYWAL_Address: 'ウォレットアドレス', + MYWAL_Bal: '残高', + MYWAL_Edit: '編集', + MYWAL_View: '表示', + MYWAL_Remove: '除去', + MYWAL_RemoveWal: 'ウォレットを除去:', + MYWAL_WatchOnly: '自分の監視専用アカウント', + MYWAL_Viewing: 'ウォレットを表示: ', + MYWAL_Hide: 'ウォレット情報を隠す', + MYWAL_Edit_2: 'ウォレットを編集: ', + MYWAL_Name: 'ウォレット名', + MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', + MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', + MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', + VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', + VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', + + /* Chrome Extension */ + CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', + CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: '正しい値を入力してください。', + ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', + ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', + ERROR_4: '正しいウォレットファイルではありません。 ', + ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', + ERROR_6: '無効なアドレスです。 ', + ERROR_7: '無効なパスワードです。 ', + ERROR_8: '無効な総量です。 ', + ERROR_9: '無効なガスリミットです。 ', + ERROR_10: '無効なデータです。 ', + ERROR_11: '無効なガス総量です。 ', + ERROR_12: '無効な nonce です。 ', + ERROR_13: '無効な署名のトランザクションです。 ', + ERROR_14: '同じニックネームのウォレットが既にあります。 ', + ERROR_15: 'ウォレットが見つかりません。 ', + ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', + ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', + ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', + ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  + ERROR_20: '無効なシンボル', + SUCCESS_1: '有効なアドレス', + SUCCESS_2: 'ウォレットは正常に暗号解除されました。', + SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', + SUCCESS_4: 'ウォレットが追加されました:', + SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', + SUCCESS_6: '選択されました: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'トランスレーターに感謝: ', + TranslatorName_1: 'sekisanchi', + TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', + /* Translator 1: Kazunori Seki / 関一典 */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ja; },{}],50:[function(require,module,exports){ -// Dutch -'use strict'; -var nl = function() {} -nl.code = 'nl'; -nl.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Jouw Wallets', - NAV_AddWallet: 'Wallet Toevoegen', - NAV_GenerateWallet: 'Genereer Wallet', - NAV_BulkGenerate: 'Bulk Genereren', - NAV_SendEther: 'Verzend Ether', - NAV_SendTokens: 'Verzend Tokens', - NAV_Offline: 'Verzend Offline', - NAV_WithdrawDAO: 'DAO Opnemen', - DAO_TitleLong: 'DAO Token in ETH omzetten', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim je DGD Tokens', - NAV_DeployContract: 'Verspreid Contract', - NAV_MyWallets: 'Mijn Wallets', - NAV_ViewWallet: 'Bekijk Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Wachtwoord', - x_Download: 'Download', - x_Address: 'Je Adres', - x_Save: 'x_Opslaan', - x_Cancel: 'x_Annuleren', - x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', - x_PrivKey: 'Prive Sleutel (onversleuteld)', - x_PrivKey2: 'Prive Sleutel', - x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', - x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', - x_Keystore2: 'Keystore/JSON Bestand', - x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', - x_Json: 'JSON Bestand (onversleuteld)', - x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', - x_PrintShort: 'Afdrukken', - x_Print: 'Druk je papieren wallet af', - x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', - x_CSV: 'CSV bestand (onverlseuteld)', - x_TXT: 'TXT bestand (onverlseuteld)', - - /* Header */ - MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', - CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', - - /* Footer */ - FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', - FOOTER_1b: 'Gemaakt door', - FOOTER_2: 'Donaties worden zeer gewaardeerd:', - FOOTER_3: 'Client-side wallet genereren door', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Informatie: ', - sidebar_AccountAddr: 'Account Adres: ', - sidebar_AccountBal: 'Account Saldo: ', - sidebar_TokenBal: 'Token Saldo: ', - sidebar_Equiv: 'Equivalente Waarde: ', - sidebar_TransHistory: 'Transactie Geschiedenis: ', - sidebar_DGDBal: 'DGD Crowdsale Informatie:', - sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', - sidebar_donate: 'Doneer', - sidebar_thanks: 'BEDANKT!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hoe wil je toegang tot je wallet?', - decrypt_Title: 'Selecteer het formaat van je prive sleutel:', - decrypt_Select: 'Selecteer een Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'Wat wil je doen?', - ADD_Radio_1: 'Genereer nieuwe wallet', - ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', - ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', - ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', - ADD_Radio_3: 'Plak/Type je prive sleutel ', - ADD_Radio_4: 'Voeg een te bekijken account toe', - ADD_Label_2: 'Verzin een Nickname:', - ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', - ADD_Label_4: 'Voeg een te bekijken account toe', - ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', - ADD_Label_5: 'Voor het Adres in: ', - ADD_Label_6: 'Ontsleutel je wallet: ', - ADD_Label_6_short: 'Ontsleutel', - ADD_Label_7: 'Voeg account toe', - - /* Generate Wallets */ - GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', - GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', - GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', - GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', - GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', - GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', - GEN_Label_3: 'Sla je adres op.', - GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Aantal te genereren wallets', - BULK_Label_2: 'Genereer Wallets', - BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Aan Adres: ', - SEND_amount: 'Te verzenden bedrag: ', - SEND_amount_short: 'Bedrag', - SEND_custom: 'Aangepast', - SEND_gas: 'Gas', - SEND_generate: 'Genereer Transactie', - SEND_raw: 'Raw Transactie', - SEND_signed: 'Gesigneerde Transactie', - SEND_trans: 'Verzend Transactie', - SEND_TransferTotal: 'Verzend volledig saldo', - SENDModal_Title: 'Waarschuwing! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', - SENDModal_Content_2: 'aan adres', - SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', - SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', - SENDModal_No: 'Nee, haal me hier weg!', - SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token Symbool: ', - TOKEN_Dec: 'Decimalen: ', - - /* Send Transaction */ - TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', - TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', - TRANS_standard: 'ETH (Standaard Transactie)', - TRANS_eth: 'Enkel ETH', - TRANS_etc: 'Enkel ETC', - TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', - TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', - TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', - TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', - TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', - TRANSModal_Yes: 'Mooi, nu begrijp ik het.', - TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', - OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', - OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', - OFFLINE_Step1_Button: 'Genereer Informatie', - OFFLINE_Step1_Label_1: 'Van Adres: ', - OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', - OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', - OFFLINE_Step2_Label_1: 'Aan Adres: ', - OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', - OFFLINE_Step2_Label_3: 'Gas Prijs ', - OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_4: 'Gas Limiet ', - OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', - OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', - OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', - OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', - - /* DAO */ - DAO_bal1: 'bij blok 1.919.999', - DAO_bal2: 'momenteel', - DAO_TitleETH: 'DAO voor ETH opnemen', - DAO_TitleETC: 'DAO voor ETC opnemen', - DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', - DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', - DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', - DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', - DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', - DAOModal_Title: 'Voor de zekerheid...', - // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Je staat op het punt om', - DAOModal_2: 'DAO Tokens op te nemen voor', - DAOModal_3: 'voor', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', - DGD_Label_1: 'Geschatte transactie kosten:', - DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', - DGD_Label_3: 'Gas Prijs:', - DGD_Generate: 'Genereer Claim', - DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', - - /* Deploy Contracts */ - DEP_generate: 'Genereer Bytecode', - DEP_generated: 'Gegenereerde Bytecode', - DEP_signtx: 'Onderteken Transactie', - DEP_interface: 'Gegenereerde Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Adres', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Bewerken', - MYWAL_View: 'Bekijken', - MYWAL_Remove: 'Verwijderen', - MYWAL_RemoveWal: 'Verwijder Wallet:', - MYWAL_WatchOnly: 'Je Watch-Only Accounts', - MYWAL_Viewing: 'Te Bekijken Wallet: ', - MYWAL_Hide: 'Verberg Wallet Info', - MYWAL_Edit_2: 'Bewerk Wallet: ', - MYWAL_Name: 'Wallet Naam', - MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', - MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', - MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', - VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', - CX_quicksend: 'VerzendSnel', - - /* Error Messages */ - ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', - ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', - ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', - ERROR_4: 'Dit is geen geldig Wallet bestand. ', - ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', - ERROR_6: 'Ongeldig adres. ', - ERROR_7: 'Ongeldig wachtwoord. ', - ERROR_8: 'Ongeldig bedrag. ', - ERROR_9: 'Ongeldige gas limiet. ', - ERROR_10: 'Ongeldige data waarde. ', - ERROR_11: 'Ongeldige gas bedrag. ', - ERROR_12: 'Ongeldige nonce. ', - ERROR_13: 'Ongeldige gesigneerde transactie. ', - ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', - ERROR_15: 'Wallet niet gevonden. ', - ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', - ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', - ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', - ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', - ERROR_20: 'Ongeldig symbol', - SUCCESS_1: 'Geldig adres', - SUCCESS_2: 'Wallet succesvol ontsleuteld', - SUCCESS_3: 'Transactie verzonden. TX ID: ', - SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', - SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', - SUCCESS_6: 'Bestand Geselecteerd: ', - - /* Translation Info */ - translate_version: '0.3', - Translator_Desc: 'Veel dank voor onze vertalers: ', - TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', - TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', - HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', - HELP_Remind_Title: 'Enkele herinneringen', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', - HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', - - HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', - HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', - HELP_0_Desc_2: 'Creer een nieuwe wallet.', - HELP_0_Desc_3: 'Maak een wallet back-up.', - HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', - HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', - - HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', - HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', - HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', - HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', - HELP_1_Desc_4: 'klik "GENENEREER".', - HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', - - HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', - HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', - HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', - HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', - HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', - HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', - HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', - - HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', - HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', - HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', - HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', - HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', - HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', - HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', - - HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', - HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', - HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', - HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', - HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', - HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', - HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', - HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', - HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', - - HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', - HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', - HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', - HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', - HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', - HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', - HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', - HELP_4_Desc_9: 'Klik "Genereer Transactie".', - HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', - HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', - - HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', - HELP_4CX_Desc_2: 'VerzendSnel:', - HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', - HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', - HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', - HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', - HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', - HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', - HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', - HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', - - HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', - HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', - HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', - HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_5_Desc_5: 'Unzip het.', - HELP_5_Desc_6: 'Dubbel-klik `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', - HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', - HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', - - HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', - HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', - HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', - HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', - HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', - HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', - HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', - HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', - - HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', - HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', - HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', - HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', - HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', - HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', - HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', - HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', - HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', - HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', - HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', - HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', - HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', - - HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', - HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', - HELP_7_Desc_2: 'Ontsleutel je wallet.', - HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', - HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', - HELP_7_Desc_6: 'Als het token niet wordt vermeld:', - HELP_7_Desc_7: 'Klik op "Aangepast".', - HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', - HELP_7_Desc_9: 'Klik op "Opslaan".', - HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', - HELP_7_Desc_11: 'Klik "Genereer Transactie".', - HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', - HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', - - HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', - HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', - HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', - HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', - HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', - - HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', - HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', - HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', - HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', - - HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', - HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', - - HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', - HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', - HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', - HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', - HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', - HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', - HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', - HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', - HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', - HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', - - HELP_11_Title: '11) Hoe verstuur ik naar een contract?', - HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', - HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', - HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', - HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', - HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', - - HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', - HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', - HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', - HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', - HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', - HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', - HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', - HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', - HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', - HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', - HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', - HELP_12_Desc_15: 'Als je op een Mac werkt:', - HELP_12_Desc_15b: 'Als je op een PC werkt:', - HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', - HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', - HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', - HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', - HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', - HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C://`', - HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', - - HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', - - HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', - HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', - HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', - - HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', - HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', - - HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', - HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', - - HELP_18_Title: '18) Waar is mijn geth wallet bestand?', - - HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', - HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', - - HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', - HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', - - HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', - HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', - HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', - HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', - HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', - HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', - HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', - - HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', - HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', - HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', - HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', - HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', - HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', - - HELP_Sec_Title: 'Beveiliging', - HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', - HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', - HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', - HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', - HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', - HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', - HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', - HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', - - HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', - HELP_Contact_Title: 'Manieren om in contact te komen' -}; - -module.exports = nl; +// Korean +'use strict'; +var ko = function() {} +ko.code = 'ko'; +ko.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ko; },{}],51:[function(require,module,exports){ -// Norwegian -'use strict'; -var no = function() {} -no.code = 'no'; -no.data = { - - /* Navigation*/ - NAV_YourWallets: 'Dine lommebøker', - NAV_AddWallet: 'Legg til lommebok', - NAV_GenerateWallet: 'Opprett lommebok', - NAV_BulkGenerate: 'Opprett flere lommebøker', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Token', - NAV_Offline: 'Send Frakoblet', - NAV_WithdrawDAO: 'Ta ut DAO', - DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', - NAV_ClaimDGD: 'Gjør krav på DGD', - DGD_TitleLong: 'Gjør krav på dine DGD-token', - NAV_DeployContract: 'Utplasser kontrakt', - NAV_MyWallets: 'Mine lommebøker', - NAV_ViewWallet: 'Vis lommebok-info', - NAV_Help: 'Hjelp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Passord', - x_Download: 'Last ned', - x_Address: 'Din adresse', - x_Save: 'x_Save', - x_Cancel: 'x_Cancel', - x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', - x_PrivKey: 'Privat nøkkel (ukryptert)', - x_PrivKey2: 'Privat nøkkel', - x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', - x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', - x_Keystore2: 'Keystore/JSON-fil', - x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', - x_Json: 'JSON-fil (ukryptert)', - x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', - x_PrintShort: 'Skriv ut', - x_Print: 'Skriv ut papirlommebok', - x_PrintDesc: 'ProTips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', - x_CSV: 'CSV-fil (ukryptert)', - x_TXT: 'TXT-fil (ukryptert)', - x_Wallet: 'Lommebok', - - /* Header */ - MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', - CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ - - /* Footer */ - FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', - FOOTER_1b: 'Skapt av', - FOOTER_2: 'Donasjoner mottas med takk:', - FOOTER_3: 'Klient-side lommebok-oppretting av', - FOOTER_4: 'Ansvarsfraskrivelse', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformasjon: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Saldo på konto: ', - sidebar_TokenBal: 'Token-saldo: ', - sidebar_Equiv: 'Tilsvarende verdier: ', - sidebar_TransHistory: 'Transaksjonshistorikk: ', - sidebar_DGDBal: 'DGD Crowdsale informasjon:', - sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', - sidebar_donate: 'Doner', - sidebar_thanks: 'TAKK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', - decrypt_Title: 'Velg formatet på din private nøkkel:', - decrypt_Select: 'Velg en lommebok:', - - /* Add Wallet */ - ADD_Label_1: 'Hva ønsker du å gjøre?', - ADD_Radio_1: 'Opprett ny lommebok', - ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', - ADD_Radio_2_alt: 'Velg lommebok-fil: ', - ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', - ADD_Radio_3: 'Lim/skriv inn din private nøkkel', - ADD_Radio_4: 'Legg til en konto for overvåkning', - ADD_Label_2: 'Lag et kallenavn:', - ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', - ADD_Label_4: 'Legg til en konto for overvåkning', - ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', - ADD_Label_5: 'Oppgi adressen: ', - ADD_Label_6: 'Lås opp lommeboen din', - ADD_Label_6_short: 'Lås opp', - ADD_Label_7: 'Legg til konto', - - /* Generate Wallets */ - GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', - GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', - GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', - GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', - GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', - GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', - GEN_Label_3: 'Lagre adressen din.', - GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antall lommebøker som skal opprettes', - BULK_Label_2: 'Opprett lommebøker', - BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Til-adresse: ', - SEND_amount: 'Beløp som skal sendes: ', - SEND_amount_short: 'Beløp', - SEND_custom: 'Tilpasning', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' - SEND_generate: 'Generer transaksjon', - SEND_raw: 'Rå-transaksjon', - SEND_signed: 'Signert transaksjon', - SEND_trans: 'Send transaksjon', - SENDModal_Title: 'Advarsel! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du er i ferd med å sende', - SENDModal_Content_2: 'til adressen', - SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', - SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', - SENDModal_No: 'Nei, få meg ut herfra!', - SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-symbol: ', - TOKEN_Dec: 'Desimaler: ', - - /* Send Transaction */ - TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', - TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', - TRANS_standard: 'ETH (Standard transaksjon)', - TRANS_eth: 'Kun ETH', - TRANS_etc: 'Kun ETC', - TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', - TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', - TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', - TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', - TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', - TRANSModal_Yes: 'Flott, jeg skjønner det nå.', - TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generer & send frakoblet (offline) transaksjon', - OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', - OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', - OFFLINE_Step1_Button: 'Generer informasjon', - OFFLINE_Step1_Label_1: 'Fra-adresse: ', - OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', - OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', - OFFLINE_Step2_Label_1: 'Til-adresse: ', - OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', - OFFLINE_Step2_Label_3: 'Gas-pris ', - OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_4: 'Gas-grense ', - OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', - OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', - OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', - OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', - - /* DAO */ - DAO_bal1: 'ved blokk 1,919,999', - DAO_bal2: 'nåværende', - DAO_TitleETH: 'Veksle inn DAO mot ETH', - DAO_TitleETC: 'Veksle inn DAO mot ETC', - DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', - DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', - DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-poletter, vennligst bruk "Send Token"-siden.', - DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', - DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', - DAOModal_Title: 'Bare for å være sikker...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - // note: this may be a bit rough in Norwegian. - DAOModal_1: 'Du er i ferd med å veksle inn ', - DAOModal_2: 'DAO-tokens til ', - DAOModal_3: 'i bytte mot', - - /* Digix */ - DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', - DGD_Label_1: 'Estimert avgiftsforbruk:', - DGD_Label_2: 'Oppgitt maksimal avgift:', - DGD_Label_3: 'Gas-pris:', - DGD_Generate: 'Opprett krav', - DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', - - /* Deploy Contracts */ - DEP_generate: 'Generer Bytecode', - DEP_generated: 'Generert Bytecode', - DEP_signtx: 'Signer transaksjon', - DEP_interface: 'Generer grensesnitt', - - /* My Wallet */ - MYWAL_Nick: 'Lommebok-kallenavn', - MYWAL_Address: 'Lommebok-adresse', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Rediger', - MYWAL_View: 'Se på', - MYWAL_Remove: 'Fjern', - MYWAL_RemoveWal: 'Fjern lommebok:', - MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', - MYWAL_Viewing: 'Viser lommebok: ', - MYWAL_Hide: 'Skjul lommebok-info', - MYWAL_Edit_2: 'Rediger lommebok: ', - MYWAL_Name: 'Lommeboknavn', - MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', - MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', - MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', - VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', - - /* Chrome Extension */ - CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', - CX_quicksend: 'Send', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vennligst oppgi et gyldig beløp.', - ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', - ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', - ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', - ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', - ERROR_6: 'Ugyldig adresse. ', - ERROR_7: 'Ugyldig passord. ', - ERROR_8: 'Ugyldig beløp. ', - ERROR_9: 'Ugyldig gas-grense. ', - ERROR_10: 'Ugyldig dataverdi. ', - ERROR_11: 'Ugyldig gas-mengde. ', - ERROR_12: 'Ugyldig nonce. ', - ERROR_13: 'Ugyldig signert transaksjon. ', - ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', - ERROR_15: 'Lommebok ikke funnet. ', - ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', - ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', - ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', - ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', - ERROR_20: 'Ugyldig symbol', - SUCCESS_1: 'Gyldig adresse', - SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', - SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', - SUCCESS_4: 'Lommeboken din ble lagt til: ', - SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', - SUCCESS_6: 'Valgt fil: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Feil på avsender', - GETH_Nonce: 'Nonce for liten', - GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', - GETH_Balance: 'Utilstrekkelig saldo', - GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', - GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', - GETH_IntrinsicGas: 'Gas-egenverdi for lav', - GETH_GasLimit: 'Overskrider blokkens gas-grense', - GETH_NegativeValue: 'Negativ verdi', - - /* Tranlsation Info */ - translate_version: '0.4', - Translator_Desc: 'Takk til oversetterne våre: ', - TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', - HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', - HELP_Remind_Title: 'Noen påminnelser', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', - HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', - - HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', - HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', - HELP_0_Desc_2: 'Opprett en ny lommebok.', - HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', - HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', - HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', - - HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', - HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', - HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', - HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', - HELP_1_Desc_4: 'Klikk "OPPRETT".', - HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', - - HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', - HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', - HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', - HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', - HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', - HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', - HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', - - HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', - HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', - HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', - HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', - HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', - HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', - HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', - - HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', - HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', - HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', - HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', - HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', - HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', - HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', - HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', - - HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', - HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', - HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', - HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', - HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', - HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', - HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', - HELP_4_Desc_9: 'Klikk "Generer transaksjon".', - HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', - - HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', - HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', - HELP_4CX_Desc_2: 'Send:', - HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', - HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', - HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', - HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', - HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', - HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', - HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', - HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', - HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', - - HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', - HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send frakoblet"-siden.', - HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', - HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_5_Desc_5: 'Pakk ut zip-fila.', - HELP_5_Desc_6: 'Dobbelklikk `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', - HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', - HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', - - HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', - HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', - HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', - HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', - HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', - HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', - HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', - HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', - - HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', - HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', - HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', - HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', - HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', - HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', - HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', - HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', - HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', - HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', - HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', - HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', - HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', - HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', - HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', - - HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', - HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', - HELP_7_Desc_2: 'Lås opp lommeboken din.', - HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', - HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', - HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', - HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', - HELP_7_Desc_7: 'Klikk "Tilpasning".', - HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// - HELP_7_Desc_9: 'Klikk "Lagre".', - HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', - HELP_7_Desc_11: 'Klikk "Generer transaksjon".', - HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', - - HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', - HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', - HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', - HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', - HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', - - HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', - HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', - HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', - HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', - - HELP_9_Title: '9) Er "Send ether"-siden offline?', - HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Frakoblet transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', - - HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', - HELP_10_Desc_1: 'Naviger til "Send Frakoblet"-siden via din internettilknyttede datamaskin.', - HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', - HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', - HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', - HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', - HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', - HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', - HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', - - HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', - HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', - HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', - HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', - HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', - HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', - HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', - HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', - HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', - HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', - HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', - HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', - HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', - HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', - HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', - HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', - HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', - HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', - HELP_12_Desc_15: 'Hvis du er på en Mac:', - HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', - HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt/`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', - HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', - HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', - HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', - HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C://`', - HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:/ikke_noe_spesielt_slett_meg.txt`', - HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', - HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', - - HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', - HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', - - HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', - HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', - - HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', - HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', - - HELP_18_Title: '18) Hvor er min geth lommebok-fil', - - HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', - HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', - - HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', - HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', - - HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', - HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', - HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', - HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', - HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', - HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', - HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', - HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', - HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', - - HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', - HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', - HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', - HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', - HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', - HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', - HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', - - HELP_Sec_Title: 'Sikring', - HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', - HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', - HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', - HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', - HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', - HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', - HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', - HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', - - HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', - HELP_Contact_Title: 'Måter å ta kontakt på' -}; - -module.exports = no; +// Dutch +'use strict'; +var nl = function() {} +nl.code = 'nl'; +nl.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Jouw Wallets', + NAV_AddWallet: 'Wallet Toevoegen', + NAV_GenerateWallet: 'Genereer Wallet', + NAV_BulkGenerate: 'Bulk Genereren', + NAV_SendEther: 'Verzend Ether', + NAV_SendTokens: 'Verzend Tokens', + NAV_Offline: 'Verzend Offline', + NAV_WithdrawDAO: 'DAO Opnemen', + DAO_TitleLong: 'DAO Token in ETH omzetten', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim je DGD Tokens', + NAV_DeployContract: 'Verspreid Contract', + NAV_MyWallets: 'Mijn Wallets', + NAV_ViewWallet: 'Bekijk Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Wachtwoord', + x_Download: 'Download', + x_Address: 'Je Adres', + x_Save: 'x_Opslaan', + x_Cancel: 'x_Annuleren', + x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', + x_PrivKey: 'Prive Sleutel (onversleuteld)', + x_PrivKey2: 'Prive Sleutel', + x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', + x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', + x_Keystore2: 'Keystore/JSON Bestand', + x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', + x_Json: 'JSON Bestand (onversleuteld)', + x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', + x_PrintShort: 'Afdrukken', + x_Print: 'Druk je papieren wallet af', + x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', + x_CSV: 'CSV bestand (onverlseuteld)', + x_TXT: 'TXT bestand (onverlseuteld)', + + /* Header */ + MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', + CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', + + /* Footer */ + FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', + FOOTER_1b: 'Gemaakt door', + FOOTER_2: 'Donaties worden zeer gewaardeerd:', + FOOTER_3: 'Client-side wallet genereren door', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Informatie: ', + sidebar_AccountAddr: 'Account Adres: ', + sidebar_AccountBal: 'Account Saldo: ', + sidebar_TokenBal: 'Token Saldo: ', + sidebar_Equiv: 'Equivalente Waarde: ', + sidebar_TransHistory: 'Transactie Geschiedenis: ', + sidebar_DGDBal: 'DGD Crowdsale Informatie:', + sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', + sidebar_donate: 'Doneer', + sidebar_thanks: 'BEDANKT!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hoe wil je toegang tot je wallet?', + decrypt_Title: 'Selecteer het formaat van je prive sleutel:', + decrypt_Select: 'Selecteer een Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'Wat wil je doen?', + ADD_Radio_1: 'Genereer nieuwe wallet', + ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', + ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', + ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', + ADD_Radio_3: 'Plak/Type je prive sleutel ', + ADD_Radio_4: 'Voeg een te bekijken account toe', + ADD_Label_2: 'Verzin een Nickname:', + ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', + ADD_Label_4: 'Voeg een te bekijken account toe', + ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', + ADD_Label_5: 'Voor het Adres in: ', + ADD_Label_6: 'Ontsleutel je wallet: ', + ADD_Label_6_short: 'Ontsleutel', + ADD_Label_7: 'Voeg account toe', + + /* Generate Wallets */ + GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', + GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', + GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', + GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', + GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', + GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', + GEN_Label_3: 'Sla je adres op.', + GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Aantal te genereren wallets', + BULK_Label_2: 'Genereer Wallets', + BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Aan Adres: ', + SEND_amount: 'Te verzenden bedrag: ', + SEND_amount_short: 'Bedrag', + SEND_custom: 'Aangepast', + SEND_gas: 'Gas', + SEND_generate: 'Genereer Transactie', + SEND_raw: 'Raw Transactie', + SEND_signed: 'Gesigneerde Transactie', + SEND_trans: 'Verzend Transactie', + SEND_TransferTotal: 'Verzend volledig saldo', + SENDModal_Title: 'Waarschuwing! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', + SENDModal_Content_2: 'aan adres', + SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', + SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', + SENDModal_No: 'Nee, haal me hier weg!', + SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token Symbool: ', + TOKEN_Dec: 'Decimalen: ', + + /* Send Transaction */ + TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', + TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', + TRANS_standard: 'ETH (Standaard Transactie)', + TRANS_eth: 'Enkel ETH', + TRANS_etc: 'Enkel ETC', + TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', + TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', + TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', + TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', + TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', + TRANSModal_Yes: 'Mooi, nu begrijp ik het.', + TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', + OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', + OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', + OFFLINE_Step1_Button: 'Genereer Informatie', + OFFLINE_Step1_Label_1: 'Van Adres: ', + OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', + OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', + OFFLINE_Step2_Label_1: 'Aan Adres: ', + OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', + OFFLINE_Step2_Label_3: 'Gas Prijs ', + OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_4: 'Gas Limiet ', + OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', + OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', + OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', + OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', + + /* DAO */ + DAO_bal1: 'bij blok 1.919.999', + DAO_bal2: 'momenteel', + DAO_TitleETH: 'DAO voor ETH opnemen', + DAO_TitleETC: 'DAO voor ETC opnemen', + DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', + DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', + DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', + DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', + DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', + DAOModal_Title: 'Voor de zekerheid...', + // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Je staat op het punt om', + DAOModal_2: 'DAO Tokens op te nemen voor', + DAOModal_3: 'voor', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', + DGD_Label_1: 'Geschatte transactie kosten:', + DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', + DGD_Label_3: 'Gas Prijs:', + DGD_Generate: 'Genereer Claim', + DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', + + /* Deploy Contracts */ + DEP_generate: 'Genereer Bytecode', + DEP_generated: 'Gegenereerde Bytecode', + DEP_signtx: 'Onderteken Transactie', + DEP_interface: 'Gegenereerde Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Adres', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Bewerken', + MYWAL_View: 'Bekijken', + MYWAL_Remove: 'Verwijderen', + MYWAL_RemoveWal: 'Verwijder Wallet:', + MYWAL_WatchOnly: 'Je Watch-Only Accounts', + MYWAL_Viewing: 'Te Bekijken Wallet: ', + MYWAL_Hide: 'Verberg Wallet Info', + MYWAL_Edit_2: 'Bewerk Wallet: ', + MYWAL_Name: 'Wallet Naam', + MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', + MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', + MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', + VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', + CX_quicksend: 'VerzendSnel', + + /* Error Messages */ + ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', + ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', + ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', + ERROR_4: 'Dit is geen geldig Wallet bestand. ', + ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', + ERROR_6: 'Ongeldig adres. ', + ERROR_7: 'Ongeldig wachtwoord. ', + ERROR_8: 'Ongeldig bedrag. ', + ERROR_9: 'Ongeldige gas limiet. ', + ERROR_10: 'Ongeldige data waarde. ', + ERROR_11: 'Ongeldige gas bedrag. ', + ERROR_12: 'Ongeldige nonce. ', + ERROR_13: 'Ongeldige gesigneerde transactie. ', + ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', + ERROR_15: 'Wallet niet gevonden. ', + ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', + ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', + ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', + ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', + ERROR_20: 'Ongeldig symbol', + SUCCESS_1: 'Geldig adres', + SUCCESS_2: 'Wallet succesvol ontsleuteld', + SUCCESS_3: 'Transactie verzonden. TX ID: ', + SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', + SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', + SUCCESS_6: 'Bestand Geselecteerd: ', + + /* Translation Info */ + translate_version: '0.3', + Translator_Desc: 'Veel dank voor onze vertalers: ', + TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', + TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', + HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', + HELP_Remind_Title: 'Enkele herinneringen', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', + HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', + + HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', + HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', + HELP_0_Desc_2: 'Creer een nieuwe wallet.', + HELP_0_Desc_3: 'Maak een wallet back-up.', + HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', + HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', + + HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', + HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', + HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', + HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', + HELP_1_Desc_4: 'klik "GENENEREER".', + HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', + + HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', + HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', + HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', + HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', + HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', + HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', + HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', + + HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', + HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', + HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', + HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', + HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', + HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', + HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', + + HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', + HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', + HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', + HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', + HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', + HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', + HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', + HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', + HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', + + HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', + HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', + HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', + HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', + HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', + HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', + HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', + HELP_4_Desc_9: 'Klik "Genereer Transactie".', + HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', + HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', + + HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', + HELP_4CX_Desc_2: 'VerzendSnel:', + HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', + HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', + HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', + HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', + HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', + HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', + HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', + HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', + + HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', + HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', + HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', + HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_5_Desc_5: 'Unzip het.', + HELP_5_Desc_6: 'Dubbel-klik `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', + HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', + HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', + + HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', + HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', + HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', + HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', + HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', + HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', + HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', + HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', + + HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', + HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', + HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', + HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', + HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', + HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', + HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', + HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', + HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', + HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', + HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', + HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', + HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', + + HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', + HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', + HELP_7_Desc_2: 'Ontsleutel je wallet.', + HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', + HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', + HELP_7_Desc_6: 'Als het token niet wordt vermeld:', + HELP_7_Desc_7: 'Klik op "Aangepast".', + HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', + HELP_7_Desc_9: 'Klik op "Opslaan".', + HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', + HELP_7_Desc_11: 'Klik "Genereer Transactie".', + HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', + HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', + + HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', + HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', + HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', + HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', + HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', + + HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', + HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', + HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', + HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', + + HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', + HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', + + HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', + HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', + HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', + HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', + HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', + HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', + HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', + HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', + HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', + HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', + + HELP_11_Title: '11) Hoe verstuur ik naar een contract?', + HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', + HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', + HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', + HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', + HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', + + HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', + HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', + HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', + HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', + HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', + HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', + HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', + HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', + HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', + HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', + HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', + HELP_12_Desc_15: 'Als je op een Mac werkt:', + HELP_12_Desc_15b: 'Als je op een PC werkt:', + HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', + HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', + HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', + HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', + HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', + HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C:`', + HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:\\niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', + + HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', + + HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', + HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', + HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', + + HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', + HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', + + HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', + HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', + + HELP_18_Title: '18) Waar is mijn geth wallet bestand?', + + HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', + HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', + + HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', + HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', + + HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', + HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', + HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', + HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', + HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', + HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', + HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', + + HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', + HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', + HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', + HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', + HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', + HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', + + HELP_Sec_Title: 'Beveiliging', + HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', + HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', + HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', + HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', + HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', + HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', + HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', + HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', + + HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', + HELP_Contact_Title: 'Manieren om in contact te komen' +}; + +module.exports = nl; },{}],52:[function(require,module,exports){ -// Polish -'use strict'; -var pl = function() {} -pl.code = 'pl'; -pl.data = { - - /* Navigation*/ - NAV_YourWallets: 'Twoje Portfele', - NAV_AddWallet: 'Dodaj Portfel', - NAV_GenerateWallet: 'Wygeneruj Portfel', - NAV_BulkGenerate: 'Generuj Hurtowo', - NAV_SendEther: 'Wyślij Ether', - NAV_SendTokens: 'Wyślij Tokeny', - NAV_Offline: 'Wyślij Offline', - NAV_WithdrawDAO: 'Wypłać DAO', - DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', - NAV_ClaimDGD: 'Odbierz DGD', - DGD_TitleLong: 'Odbierz swoje Tokeny DGD', - NAV_MyWallets: 'Moje Portfele', - NAV_ViewWallet: 'Wyświetl informacje o portfelu', - NAV_Help: 'Pomoc', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Hasło', - x_Download: 'Pobierz', - x_Address: 'Twój Adres', - x_Save: 'Zapisz', - x_Cancel: 'Anuluj', - x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', - x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', - x_PrivKey2: 'Klucz Prywatny', - x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', - x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', - x_Keystore2: 'Plik Keystore/JSON', - x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', - x_Json: 'Plik JSON (nieszyfrowany)', - x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', - x_PrintShort: 'Drukuj', - x_Print: 'Drukuj Portfel Papierowy', - x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', - x_CSV: 'Plik CSV (nieszyfrowany)', - x_TXT: 'Plik TXT (nieszyfrowany)', - x_Wallet: 'Portfel', - - /* Header */ - MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', - CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', - MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', - CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', - - /* Footer */ - FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', - FOOTER_1b: 'Twórcy:', - FOOTER_2: 'Darowizny:', - FOOTER_3: 'Generowanie portfeli po stronie klienta przez', - FOOTER_4: 'Wyłączenie odpowiedzialności', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacje o Koncie: ', - sidebar_AccountAddr: 'Adres Konta: ', - sidebar_AccountBal: 'Stan Konta: ', - sidebar_TokenBal: 'Stan Tokenów: ', - sidebar_Equiv: 'Ekwiwalent: ', - sidebar_TransHistory: 'Historia Transakcji: ', - sidebar_DGDBal: 'Informacje o sprzedaży DGD:', - sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', - sidebar_donate: 'Prześlij darowiznę', - sidebar_thanks: 'DZIĘKUJEMY!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', - decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', - decrypt_Select: 'Wybierz Portfel:', - - /* Add Wallet */ - ADD_Label_1: 'Co chciałbyś zrobić?', - ADD_Radio_1: 'Generuj Nowy Portfel', - ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', - ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', - ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', - ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', - ADD_Radio_4: 'Dodaj Konto do Obserwacji', - ADD_Label_2: 'Utwórz Nazwę Użytkownika:', - ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', - ADD_Label_4: 'Dodaj Konto do Obserwacji', - ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', - ADD_Label_5: 'Wpisz Adres: ', - ADD_Label_6: 'Odblokuj Portfel', - ADD_Label_6_short: 'Odblokuj', - ADD_Label_7: 'Dodaj konto', - - /* Generate Wallets */ - GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', - GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', - GEN_Placeholder_1: 'NIE zapomnij tego hasła!', - GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', - GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', - GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', - GEN_Label_3: 'Zapisz swój adres.', - GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Ilość Portfeli do Wygenerowania', - BULK_Label_2: 'Generuj Portfele', - BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Do Adresu: ', - SEND_amount: 'Kwota do Wysłania: ', - SEND_amount_short: 'Kwota', - SEND_custom: 'Inny', - SEND_gas: 'Paliwo', - SEND_TransferTotal: 'Wyślij wszystkie środki', - SEND_generate: 'Wygeneruj Transakcję', - SEND_raw: 'Surowa Transakcja', - SEND_signed: 'Podpisana Transakcja', - SEND_trans: 'Wyślij Transakcję', - SENDModal_Title: 'Ostrzeżenie! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Wysyłasz', - SENDModal_Content_2: 'do adresu', - SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', - SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', - SENDModal_No: 'Nie, zabierz mnie stąd!', - SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Symbol Tokenu: ', - TOKEN_Dec: 'Miejsc po przecinku: ', - - /* Send Transaction */ - TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', - TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', - TRANS_standard: 'ETH (Standardowa Transakcja)', - TRANS_eth: 'Tylko ETH', - TRANS_etc: 'Tylko ETC', - TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', - TRANS_data: ' Dane: ', - TRANS_gas: ' Paliwo: ', - TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', - TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', - TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', - TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', - TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', - TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', - TRANSModal_Yes: 'Super, już rozumiem.', - TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', - OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', - OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', - OFFLINE_Step1_Button: 'Wygeneruj Informacje', - OFFLINE_Step1_Label_1: 'Od Adresu: ', - OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', - OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', - OFFLINE_Step2_Label_1: 'Do Adresu: ', - OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', - OFFLINE_Step2_Label_3: 'Cena Paliwa ', - OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_4: 'Limit Paliwa ', - OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', - OFFLINE_Step2_Label_5: 'Wyróżnik', - OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_6: 'Dane', - OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', - OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', - OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', - OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', - - /* DAO */ - DAO_bal1: 'w bloku 1,919,999', - DAO_bal2: 'aktualny', - DAO_TitleETH: 'Wypłać DAO do ETH', - DAO_TitleETC: 'Wypłać DAO do ETC', - DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', - DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', - DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', - DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', - DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', - DAOModal_Title: 'Tylko się upewniam...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Zamierzasz wypłacić', - DAOModal_2: 'DAO tokenów do', - DAOModal_3: 'za', // "w zamian za" - - /* Digix */ - DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', - DGD_Label_1: 'Szacunkowa Opłata:', - DGD_Label_2: 'Zapewniona Maksymalna Opłata:', - DGD_Label_3: 'Cena Paliwa:', - DGD_Generate: 'Wygeneruj Żądanie', - DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', - - /* Deploy Contracts */ - NAV_DeployContract: 'Wyślij Kontrakt', - DEP_generate: 'Wygeneruj Kod Bajtowy', - DEP_generated: 'Wygenerowany Kod Bajtowy', - DEP_signtx: 'Podpisz Transakcję', - DEP_interface: 'Wygeneruj Interfejs', - - /* My Wallet */ - MYWAL_Nick: 'Nazwa Portfela', - MYWAL_Address: 'Adres Portfela', - MYWAL_Bal: 'Środki', - MYWAL_Edit: 'Edytuj', - MYWAL_View: 'Podgląd', - MYWAL_Remove: 'Usuń', - MYWAL_RemoveWal: 'Usuń Portfel:', - MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', - MYWAL_Viewing: 'Podgląd Portfela: ', - MYWAL_Hide: 'Ukryj Dane Portfela', - MYWAL_Edit_2: 'Edytuj Portfel: ', - MYWAL_Name: 'Nazwa Portfela', - MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', - MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', - MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', - VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', - - /* Chrome Extension */ - CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Wyślij', - - /* Error Messages */ - ERROR_1: 'Wprowadź prawidłową kwotę.', - ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', - ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', - ERROR_4: 'To nie jest prawidłowy plik portfela. ', - ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', - ERROR_6: 'Błędny adres. ', - ERROR_7: 'Błędne hasło. ', - ERROR_8: 'Błędna wartość. ', - ERROR_9: 'Błędny limit paliwa. ', - ERROR_10: 'Błędne dane. ', - ERROR_11: 'Błędna ilość paliwa. ', - ERROR_12: 'Błędny wyróżnik. ', - ERROR_13: 'Błąd podpisu transakcji. ', - ERROR_14: 'Portfel z tą nazwą już istnieje. ', - ERROR_15: 'Nie znaleziono portfela. ', - ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', - ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', - ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', - ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', - ERROR_20: 'Nieprawidłowy symbol', - SUCCESS_1: 'Prawidłowy adres', - SUCCESS_2: 'Portfel został odszyfrowany', - SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', - SUCCESS_4: 'Twój portfel został dodany: ', - SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', - SUCCESS_6: 'Wybrany plik: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Nieprawidłowy nadawca', - GETH_Nonce: 'Wyróżnik transakcji za niski', - GETH_Cheap: 'Cena paliwa poniżej akceptacji', - GETH_Balance: 'Niewystarczająca ilość środków na koncie', - GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', - GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', - GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', - GETH_GasLimit: 'Przekroczono limit paliwa na blok', - GETH_NegativeValue: 'Ujemna wartość', - - /* Tranlsation Info */ - translate_version: '3.0 (0.3)', - Translator_Desc: 'Podziękowania tłumaczom: ', - TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', - TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: '', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', - HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', - HELP_Remind_Title: 'W ramach uściślenia', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', - HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', - - HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', - HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', - HELP_0_Desc_2: 'Wygeneruj nowy portfel.', - HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', - HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', - HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', - - HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', - HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', - HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', - HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', - HELP_1_Desc_4: 'Kliknij "GENERUJ".', - HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', - - HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', - HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', - HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', - HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', - HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', - HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', - HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', - - HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', - HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', - HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', - HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', - HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', - HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', - HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', - - HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', - HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', - HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', - HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', - HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', - - HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', - HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', - HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', - HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', - HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', - HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', - HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', - HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', - HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', - HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', - HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', - - HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', - HELP_4CX_Desc_2: 'Wyślij:', - HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', - HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', - HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', - HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', - HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', - HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', - HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', - HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', - HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', - - HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', - HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', - HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', - HELP_5_Desc_5: 'Rozpakuj paczkę.', - HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', - HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', - HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', - - HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', - HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', - HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', - HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', - HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', - HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', - HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', - HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', - - HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', - HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', - HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', - HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', - HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', - HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', - HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', - HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', - HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', - HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', - HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', - HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', - HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', - HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', - HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', - - HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', - HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', - HELP_7_Desc_2: 'Odblokuj portfel.', - HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', - HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', - HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', - HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', - HELP_7_Desc_7: 'Kliknij "Inny".', - HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', - HELP_7_Desc_9: 'Kliknij "Zapisz".', - HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', - HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', - HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', - HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', - HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', - HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', - - HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', - HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', - HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', - HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', - HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', - - HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', - HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', - HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', - HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', - - HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', - HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', - - HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', - HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', - HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', - HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', - HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', - HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', - HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', - HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', - HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', - - HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', - HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', - HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', - HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', - HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', - HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', - HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', - HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', - HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', - HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', - HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', - HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', - HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', - HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', - HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', - HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', - HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', - HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', - HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', - HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt/`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', - HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt/`', - HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', - HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', - HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', - HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', - - HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', - HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', - HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', - HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', - - HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', - HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', - - HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', - HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', - - HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', - - HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', - HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', - - HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', - HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', - - HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', - HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', - HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', - HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', - HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', - HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', - HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', - HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', - HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', - - HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', - HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', - HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', - HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', - HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', - HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', - - HELP_Sec_Title: 'Bezpieczeństwo', - HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', - HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', - HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', - HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', - HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', - HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', - HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', - HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', - - HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', - HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' -}; - -module.exports = pl; +// Norwegian +'use strict'; +var no = function() {} +no.code = 'no'; +no.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dine lommebøker', + NAV_AddWallet: 'Legg til lommebok', + NAV_GenerateWallet: 'Opprett lommebok', + NAV_BulkGenerate: 'Opprett flere lommebøker', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Token', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Ta ut DAO', + DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', + NAV_ClaimDGD: 'Gjør krav på DGD', + DGD_TitleLong: 'Gjør krav på dine DGD-token', + NAV_DeployContract: 'Utplasser kontrakt', + NAV_MyWallets: 'Mine lommebøker', + NAV_ViewWallet: 'Vis lommebok-info', + NAV_Help: 'Hjelp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Passord', + x_Download: 'Last ned', + x_Address: 'Din adresse', + x_Save: 'x_Save', + x_Cancel: 'x_Cancel', + x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', + x_PrivKey: 'Privat nøkkel (ukryptert)', + x_PrivKey2: 'Privat nøkkel', + x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', + x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', + x_Keystore2: 'Keystore/JSON-fil', + x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', + x_Json: 'JSON-fil (ukryptert)', + x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', + x_PrintShort: 'Skriv ut', + x_Print: 'Skriv ut papirlommebok', + x_PrintDesc: 'Profftips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', + x_CSV: 'CSV-fil (ukryptert)', + x_TXT: 'TXT-fil (ukryptert)', + x_Wallet: 'Lommebok', + + /* Header */ + MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', + CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ + + /* Footer */ + FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', + FOOTER_1b: 'Skapt av', + FOOTER_2: 'Donasjoner mottas med takk:', + FOOTER_3: 'Klient-side lommebok-oppretting av', + FOOTER_4: 'Ansvarsfraskrivelse', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformasjon: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Saldo på konto: ', + sidebar_TokenBal: 'Token-saldo: ', + sidebar_Equiv: 'Tilsvarende verdier: ', + sidebar_TransHistory: 'Transaksjonshistorikk: ', + sidebar_DGDBal: 'DGD Crowdsale informasjon:', + sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', + sidebar_donate: 'Doner', + sidebar_thanks: 'TAKK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', + decrypt_Title: 'Velg formatet på din private nøkkel:', + decrypt_Select: 'Velg en lommebok:', + + /* Add Wallet */ + ADD_Label_1: 'Hva ønsker du å gjøre?', + ADD_Radio_1: 'Opprett ny lommebok', + ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', + ADD_Radio_2_alt: 'Velg lommebok-fil: ', + ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', + ADD_Radio_3: 'Lim/skriv inn din private nøkkel', + ADD_Radio_4: 'Legg til en konto for overvåkning', + ADD_Label_2: 'Lag et kallenavn:', + ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', + ADD_Label_4: 'Legg til en konto for overvåkning', + ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', + ADD_Label_5: 'Oppgi adressen: ', + ADD_Label_6: 'Lås opp lommeboen din', + ADD_Label_6_short: 'Lås opp', + ADD_Label_7: 'Legg til konto', + + /* Generate Wallets */ + GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', + GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', + GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', + GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', + GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', + GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', + GEN_Label_3: 'Lagre adressen din.', + GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antall lommebøker som skal opprettes', + BULK_Label_2: 'Opprett lommebøker', + BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Til-adresse: ', + SEND_amount: 'Beløp som skal sendes: ', + SEND_amount_short: 'Beløp', + SEND_custom: 'Tilpasning', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' + SEND_generate: 'Generer transaksjon', + SEND_raw: 'Rå-transaksjon', + SEND_signed: 'Signert transaksjon', + SEND_trans: 'Send transaksjon', + SENDModal_Title: 'Advarsel! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du er i ferd med å sende', + SENDModal_Content_2: 'til adressen', + SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', + SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', + SENDModal_No: 'Nei, få meg ut herfra!', + SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-symbol: ', + TOKEN_Dec: 'Desimaler: ', + + /* Send Transaction */ + TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', + TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', + TRANS_standard: 'ETH (Standard transaksjon)', + TRANS_eth: 'Kun ETH', + TRANS_etc: 'Kun ETC', + TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', + TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', + TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', + TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', + TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', + TRANSModal_Yes: 'Flott, jeg skjønner det nå.', + TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generer & send offline transaksjon', + OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', + OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', + OFFLINE_Step1_Button: 'Generer informasjon', + OFFLINE_Step1_Label_1: 'Fra-adresse: ', + OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', + OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', + OFFLINE_Step2_Label_1: 'Til-adresse: ', + OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', + OFFLINE_Step2_Label_3: 'Gas-pris ', + OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_4: 'Gas-grense ', + OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', + OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', + OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', + OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', + + /* DAO */ + DAO_bal1: 'ved blokk 1,919,999', + DAO_bal2: 'nåværende', + DAO_TitleETH: 'Veksle inn DAO mot ETH', + DAO_TitleETC: 'Veksle inn DAO mot ETC', + DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', + DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', + DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-token, vennligst bruk "Send Token"-siden.', + DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', + DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', + DAOModal_Title: 'Bare for å være sikker...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + // note: this may be a bit rough in Norwegian. + DAOModal_1: 'Du er i ferd med å veksle inn ', + DAOModal_2: 'DAO-tokens til ', + DAOModal_3: 'i bytte mot', + + /* Digix */ + DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', + DGD_Label_1: 'Estimert avgiftsforbruk:', + DGD_Label_2: 'Oppgitt maksimal avgift:', + DGD_Label_3: 'Gas-pris:', + DGD_Generate: 'Opprett krav', + DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', + + /* Deploy Contracts */ + DEP_generate: 'Generer Bytecode', + DEP_generated: 'Generert Bytecode', + DEP_signtx: 'Signer transaksjon', + DEP_interface: 'Generer grensesnitt', + + /* My Wallet */ + MYWAL_Nick: 'Lommebok-kallenavn', + MYWAL_Address: 'Lommebok-adresse', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Rediger', + MYWAL_View: 'Se på', + MYWAL_Remove: 'Fjern', + MYWAL_RemoveWal: 'Fjern lommebok:', + MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', + MYWAL_Viewing: 'Viser lommebok: ', + MYWAL_Hide: 'Skjul lommebok-info', + MYWAL_Edit_2: 'Rediger lommebok: ', + MYWAL_Name: 'Lommeboknavn', + MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', + MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', + MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', + VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', + + /* Chrome Extension */ + CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', + CX_quicksend: 'Send', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vennligst oppgi et gyldig beløp.', + ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', + ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', + ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', + ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', + ERROR_6: 'Ugyldig adresse. ', + ERROR_7: 'Ugyldig passord. ', + ERROR_8: 'Ugyldig beløp. ', + ERROR_9: 'Ugyldig gas-grense. ', + ERROR_10: 'Ugyldig dataverdi. ', + ERROR_11: 'Ugyldig gas-mengde. ', + ERROR_12: 'Ugyldig nonce. ', + ERROR_13: 'Ugyldig signert transaksjon. ', + ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', + ERROR_15: 'Lommebok ikke funnet. ', + ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', + ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', + ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', + ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', + ERROR_20: 'Ugyldig symbol', + SUCCESS_1: 'Gyldig adresse', + SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', + SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', + SUCCESS_4: 'Lommeboken din ble lagt til: ', + SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', + SUCCESS_6: 'Valgt fil: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Feil på avsender', + GETH_Nonce: 'Nonce for liten', + GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', + GETH_Balance: 'Utilstrekkelig saldo', + GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', + GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', + GETH_IntrinsicGas: 'Gas-egenverdi for lav', + GETH_GasLimit: 'Overskrider blokkens gas-grense', + GETH_NegativeValue: 'Negativ verdi', + + /* Tranlsation Info */ + translate_version: '0.4', + Translator_Desc: 'Takk til oversetterne våre: ', + TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', + HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', + HELP_Remind_Title: 'Noen påminnelser', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', + HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', + + HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', + HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', + HELP_0_Desc_2: 'Opprett en ny lommebok.', + HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', + HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', + HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', + + HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', + HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', + HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', + HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', + HELP_1_Desc_4: 'Klikk "OPPRETT".', + HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', + + HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', + HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', + HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', + HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', + HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', + HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', + HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', + + HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', + HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', + HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', + HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', + HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', + HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', + HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', + + HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', + HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', + HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', + HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', + HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', + HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', + HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', + HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', + + HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', + HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', + HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', + HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', + HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', + HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', + HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', + HELP_4_Desc_9: 'Klikk "Generer transaksjon".', + HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', + + HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', + HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', + HELP_4CX_Desc_2: 'Send:', + HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', + HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', + HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', + HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', + HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', + HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', + HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', + HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', + HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', + + HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', + HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send offline"-siden.', + HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', + HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_5_Desc_5: 'Pakk ut zip-fila.', + HELP_5_Desc_6: 'Dobbelklikk `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', + HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', + HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', + + HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', + HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', + HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', + HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', + HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', + HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', + HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', + HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', + + HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', + HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', + HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', + HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', + HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', + HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', + HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', + HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', + HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', + HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', + HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', + HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', + HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', + HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', + HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', + + HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', + HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', + HELP_7_Desc_2: 'Lås opp lommeboken din.', + HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', + HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', + HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', + HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', + HELP_7_Desc_7: 'Klikk "Tilpasning".', + HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// + HELP_7_Desc_9: 'Klikk "Lagre".', + HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', + HELP_7_Desc_11: 'Klikk "Generer transaksjon".', + HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', + + HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', + HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', + HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', + HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', + HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', + + HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', + HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', + HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', + HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', + + HELP_9_Title: '9) Er "Send ether"-siden offline?', + HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Offline transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', + + HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', + HELP_10_Desc_1: 'Naviger til "Send Offline"-siden via din internettilknyttede datamaskin.', + HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', + HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', + HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', + HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', + HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', + HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', + HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', + + HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', + HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', + HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', + HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', + HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', + HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', + HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', + HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', + HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', + HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', + HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', + HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', + HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', + HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', + HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', + HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', + HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', + HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', + HELP_12_Desc_15: 'Hvis du er på en Mac:', + HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', + HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', + HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', + HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', + HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', + HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C:`', + HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:\\ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', + HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', + + HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', + HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', + + HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', + HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', + + HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', + HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', + + HELP_18_Title: '18) Hvor er min geth lommebok-fil', + + HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', + HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', + + HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', + HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', + + HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', + HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', + HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', + HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', + HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', + HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', + HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', + HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', + HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', + + HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', + HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', + HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', + HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', + HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', + HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', + HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', + + HELP_Sec_Title: 'Sikring', + HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', + HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', + HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', + HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', + HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', + HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', + HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', + HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', + + HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', + HELP_Contact_Title: 'Måter å ta kontakt på' +}; + +module.exports = no; },{}],53:[function(require,module,exports){ -// Portuguese -'use strict'; -var pt = function() {} -pt.code = 'pt'; -pt.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = pt; +// Polish +'use strict'; +var pl = function() {} +pl.code = 'pl'; +pl.data = { + + /* Navigation*/ + NAV_YourWallets: 'Twoje Portfele', + NAV_AddWallet: 'Dodaj Portfel', + NAV_GenerateWallet: 'Wygeneruj Portfel', + NAV_BulkGenerate: 'Generuj Hurtowo', + NAV_SendEther: 'Wyślij Ether', + NAV_SendTokens: 'Wyślij Tokeny', + NAV_Offline: 'Wyślij Offline', + NAV_WithdrawDAO: 'Wypłać DAO', + DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', + NAV_ClaimDGD: 'Odbierz DGD', + DGD_TitleLong: 'Odbierz swoje Tokeny DGD', + NAV_MyWallets: 'Moje Portfele', + NAV_ViewWallet: 'Wyświetl informacje o portfelu', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Hasło', + x_Download: 'Pobierz', + x_Address: 'Twój Adres', + x_Save: 'Zapisz', + x_Cancel: 'Anuluj', + x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', + x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', + x_PrivKey2: 'Klucz Prywatny', + x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', + x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', + x_Keystore2: 'Plik Keystore/JSON', + x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', + x_Json: 'Plik JSON (nieszyfrowany)', + x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', + x_PrintShort: 'Drukuj', + x_Print: 'Drukuj Portfel Papierowy', + x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', + x_CSV: 'Plik CSV (nieszyfrowany)', + x_TXT: 'Plik TXT (nieszyfrowany)', + x_Wallet: 'Portfel', + + /* Header */ + MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', + CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', + MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', + CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', + + /* Footer */ + FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', + FOOTER_1b: 'Twórcy:', + FOOTER_2: 'Darowizny:', + FOOTER_3: 'Generowanie portfeli po stronie klienta przez', + FOOTER_4: 'Wyłączenie odpowiedzialności', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacje o Koncie: ', + sidebar_AccountAddr: 'Adres Konta: ', + sidebar_AccountBal: 'Stan Konta: ', + sidebar_TokenBal: 'Stan Tokenów: ', + sidebar_Equiv: 'Ekwiwalent: ', + sidebar_TransHistory: 'Historia Transakcji: ', + sidebar_DGDBal: 'Informacje o sprzedaży DGD:', + sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', + sidebar_donate: 'Prześlij darowiznę', + sidebar_thanks: 'DZIĘKUJEMY!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', + decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', + decrypt_Select: 'Wybierz Portfel:', + + /* Add Wallet */ + ADD_Label_1: 'Co chciałbyś zrobić?', + ADD_Radio_1: 'Generuj Nowy Portfel', + ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', + ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', + ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', + ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', + ADD_Radio_4: 'Dodaj Konto do Obserwacji', + ADD_Label_2: 'Utwórz Nazwę Użytkownika:', + ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', + ADD_Label_4: 'Dodaj Konto do Obserwacji', + ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', + ADD_Label_5: 'Wpisz Adres: ', + ADD_Label_6: 'Odblokuj Portfel', + ADD_Label_6_short: 'Odblokuj', + ADD_Label_7: 'Dodaj konto', + + /* Generate Wallets */ + GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', + GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', + GEN_Placeholder_1: 'NIE zapomnij tego hasła!', + GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', + GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', + GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', + GEN_Label_3: 'Zapisz swój adres.', + GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Ilość Portfeli do Wygenerowania', + BULK_Label_2: 'Generuj Portfele', + BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Do Adresu: ', + SEND_amount: 'Kwota do Wysłania: ', + SEND_amount_short: 'Kwota', + SEND_custom: 'Inny', + SEND_gas: 'Paliwo', + SEND_TransferTotal: 'Wyślij wszystkie środki', + SEND_generate: 'Wygeneruj Transakcję', + SEND_raw: 'Surowa Transakcja', + SEND_signed: 'Podpisana Transakcja', + SEND_trans: 'Wyślij Transakcję', + SENDModal_Title: 'Ostrzeżenie! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Wysyłasz', + SENDModal_Content_2: 'do adresu', + SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', + SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', + SENDModal_No: 'Nie, zabierz mnie stąd!', + SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Symbol Tokenu: ', + TOKEN_Dec: 'Miejsc po przecinku: ', + + /* Send Transaction */ + TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', + TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', + TRANS_standard: 'ETH (Standardowa Transakcja)', + TRANS_eth: 'Tylko ETH', + TRANS_etc: 'Tylko ETC', + TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', + TRANS_data: ' Dane: ', + TRANS_gas: ' Paliwo: ', + TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', + TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', + TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', + TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', + TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', + TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', + TRANSModal_Yes: 'Super, już rozumiem.', + TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', + OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', + OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', + OFFLINE_Step1_Button: 'Wygeneruj Informacje', + OFFLINE_Step1_Label_1: 'Od Adresu: ', + OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', + OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', + OFFLINE_Step2_Label_1: 'Do Adresu: ', + OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', + OFFLINE_Step2_Label_3: 'Cena Paliwa ', + OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_4: 'Limit Paliwa ', + OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', + OFFLINE_Step2_Label_5: 'Wyróżnik', + OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_6: 'Dane', + OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', + OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', + OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', + OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', + + /* DAO */ + DAO_bal1: 'w bloku 1,919,999', + DAO_bal2: 'aktualny', + DAO_TitleETH: 'Wypłać DAO do ETH', + DAO_TitleETC: 'Wypłać DAO do ETC', + DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', + DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', + DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', + DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', + DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', + DAOModal_Title: 'Tylko się upewniam...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Zamierzasz wypłacić', + DAOModal_2: 'DAO tokenów do', + DAOModal_3: 'za', // "w zamian za" + + /* Digix */ + DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', + DGD_Label_1: 'Szacunkowa Opłata:', + DGD_Label_2: 'Zapewniona Maksymalna Opłata:', + DGD_Label_3: 'Cena Paliwa:', + DGD_Generate: 'Wygeneruj Żądanie', + DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', + + /* Deploy Contracts */ + NAV_DeployContract: 'Wyślij Kontrakt', + DEP_generate: 'Wygeneruj Kod Bajtowy', + DEP_generated: 'Wygenerowany Kod Bajtowy', + DEP_signtx: 'Podpisz Transakcję', + DEP_interface: 'Wygeneruj Interfejs', + + /* My Wallet */ + MYWAL_Nick: 'Nazwa Portfela', + MYWAL_Address: 'Adres Portfela', + MYWAL_Bal: 'Środki', + MYWAL_Edit: 'Edytuj', + MYWAL_View: 'Podgląd', + MYWAL_Remove: 'Usuń', + MYWAL_RemoveWal: 'Usuń Portfel:', + MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', + MYWAL_Viewing: 'Podgląd Portfela: ', + MYWAL_Hide: 'Ukryj Dane Portfela', + MYWAL_Edit_2: 'Edytuj Portfel: ', + MYWAL_Name: 'Nazwa Portfela', + MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', + MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', + MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', + VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', + + /* Chrome Extension */ + CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Wyślij', + + /* Error Messages */ + ERROR_1: 'Wprowadź prawidłową kwotę.', + ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', + ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', + ERROR_4: 'To nie jest prawidłowy plik portfela. ', + ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', + ERROR_6: 'Błędny adres. ', + ERROR_7: 'Błędne hasło. ', + ERROR_8: 'Błędna wartość. ', + ERROR_9: 'Błędny limit paliwa. ', + ERROR_10: 'Błędne dane. ', + ERROR_11: 'Błędna ilość paliwa. ', + ERROR_12: 'Błędny wyróżnik. ', + ERROR_13: 'Błąd podpisu transakcji. ', + ERROR_14: 'Portfel z tą nazwą już istnieje. ', + ERROR_15: 'Nie znaleziono portfela. ', + ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', + ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', + ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', + ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', + ERROR_20: 'Nieprawidłowy symbol', + SUCCESS_1: 'Prawidłowy adres', + SUCCESS_2: 'Portfel został odszyfrowany', + SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', + SUCCESS_4: 'Twój portfel został dodany: ', + SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', + SUCCESS_6: 'Wybrany plik: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Nieprawidłowy nadawca', + GETH_Nonce: 'Wyróżnik transakcji za niski', + GETH_Cheap: 'Cena paliwa poniżej akceptacji', + GETH_Balance: 'Niewystarczająca ilość środków na koncie', + GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', + GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', + GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', + GETH_GasLimit: 'Przekroczono limit paliwa na blok', + GETH_NegativeValue: 'Ujemna wartość', + + /* Tranlsation Info */ + translate_version: '3.0 (0.3)', + Translator_Desc: 'Podziękowania tłumaczom: ', + TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', + TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: '', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', + HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', + HELP_Remind_Title: 'W ramach uściślenia', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', + HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', + + HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', + HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', + HELP_0_Desc_2: 'Wygeneruj nowy portfel.', + HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', + HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', + HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', + + HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', + HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', + HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', + HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', + HELP_1_Desc_4: 'Kliknij "GENERUJ".', + HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', + + HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', + HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', + HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', + HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', + HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', + HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', + HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', + + HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', + HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', + HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', + HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', + HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', + HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', + HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', + + HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', + HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', + HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', + HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', + HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', + + HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', + HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', + HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', + HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', + HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', + HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', + HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', + HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', + HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', + HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', + HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', + + HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', + HELP_4CX_Desc_2: 'Wyślij:', + HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', + HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', + HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', + HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', + HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', + HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', + HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', + HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', + HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', + + HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', + HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', + HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', + HELP_5_Desc_5: 'Rozpakuj paczkę.', + HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', + HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', + HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', + + HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', + HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', + HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', + HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', + HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', + HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', + HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', + HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', + + HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', + HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', + HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', + HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', + HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', + HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', + HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', + HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', + HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', + HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', + HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', + HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', + HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', + HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', + HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', + + HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', + HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', + HELP_7_Desc_2: 'Odblokuj portfel.', + HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', + HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', + HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', + HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', + HELP_7_Desc_7: 'Kliknij "Inny".', + HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', + HELP_7_Desc_9: 'Kliknij "Zapisz".', + HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', + HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', + HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', + HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', + HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', + HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', + + HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', + HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', + HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', + HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', + HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', + + HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', + HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', + HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', + HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', + + HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', + HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', + + HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', + HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', + HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', + HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', + HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', + HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', + HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', + HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', + HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', + + HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', + HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', + HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', + HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', + HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', + HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', + HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', + HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', + HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', + HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', + HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', + HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', + HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', + HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', + HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', + HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', + HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', + HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', + HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', + HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', + HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', + HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', + HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', + HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', + + HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', + HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', + HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', + HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', + + HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', + HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', + + HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', + HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', + + HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', + + HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', + HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', + + HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', + HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', + + HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', + HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', + HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', + HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', + HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', + HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', + HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', + HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', + HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', + + HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', + HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', + HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', + HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', + HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', + HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', + + HELP_Sec_Title: 'Bezpieczeństwo', + HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', + HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', + HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', + HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', + HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', + HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', + HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', + HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', + + HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', + HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' +}; + +module.exports = pl; },{}],54:[function(require,module,exports){ -// Portuguese -'use strict'; -var ptbr = function() {} -ptbr.code = 'ptbr'; -ptbr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ptbr; +// Portuguese +'use strict'; +var pt = function() {} +pt.code = 'pt'; +pt.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = pt; },{}],55:[function(require,module,exports){ -// Russian -'use strict'; -var ru = function() {} -ru.code = 'ru'; -ru.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ваши кошельки', - NAV_AddWallet: 'Добавить кошелёк', - NAV_GenerateWallet: 'Создать кошелёк', - NAV_BulkGenerate: 'Создать несколько кошельков', - NAV_SendEther: 'Перевести эфир (ether)', - NAV_SendTokens: 'Перевести токены', - NAV_Offline: 'Оффлайн-перевод', - NAV_WithdrawDAO: 'Обменять DAO', - DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', - NAV_ClaimDGD: 'Получить DGD', - DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', - NAV_DeployContract: 'Опубликовать контракт', - NAV_MyWallets: 'Мои кошельки', - NAV_ViewWallet: 'Информация о кошельке', - NAV_Help: 'Справка', - NAV_Contact: 'Контакты', - - /* General */ - x_Password: 'Пароль', - x_Download: 'Скачать', - x_Address: 'Ваш адрес', - x_Save: 'Сохранить', - x_Cancel: 'Отменить', - x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', - x_PrivKey: 'Закрытый ключ (не зашифрован)', - x_PrivKey2: 'Закрытый ключ', - x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', - x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', - x_Keystore2: 'Файл Keystore/JSON', - x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', - x_Json: 'Файл JSON (не зашифрован)', - x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', - x_PrintShort: 'Печать', - x_Print: 'Напечатать бумажный кошелёк', - x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', - x_CSV: 'Файл CSV (не зашифрован)', - x_TXT: 'Файл TXT (не зашифрован)', - x_Wallet: 'кошелёк', - - /* Header */ - MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', - CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', - MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', - CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', - - /* Footer */ - FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', - FOOTER_1b: 'Авторы:', - FOOTER_2: 'Пожертвования приветствуются:', - FOOTER_3: 'Создание кошелька на стороне клиента от', - FOOTER_4: 'Отказ от ответственности', - - /* Sidebar */ - sidebar_AccountInfo: 'Информация о счёте: ', - sidebar_AccountAddr: 'Адрес (номер) счёта: ', - sidebar_AccountBal: 'Баланс счёта: ', - sidebar_TokenBal: 'Балансы токенов: ', - sidebar_Equiv: 'Эквивалентные значения: ', - sidebar_TransHistory: 'История транзакций: ', - sidebar_DGDBal: 'Информация о распродаже DGD:', - sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', - sidebar_donate: 'Пожертвовать', - sidebar_thanks: 'СПАСИБО!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', - decrypt_Title: 'Выберите формат Вашего закрытого ключа:', - decrypt_Select: 'Выберите кошелёк:', - - /* Add Wallet */ - ADD_Label_1: 'Что Вы хотите сделать?', - ADD_Radio_1: 'Создать новый кошелёк', - ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', - ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', - ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', - ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', - ADD_Radio_4: 'Добавить счёт в список слежения', - ADD_Label_2: 'Присвоить название:', - ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', - ADD_Label_4: 'Добавить счёт в список слежения', - ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', - ADD_Label_5: 'Введите адрес: ', - ADD_Label_6: 'Отпереть кошелёк', - ADD_Label_6_short: 'Отпереть', - ADD_Label_7: 'Добавить счёт', - - /* Generate Wallets */ - GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', - GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', - GEN_Placeholder_1: 'Не забудьте сохранить это!', - GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', - GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', - GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', - GEN_Label_3: 'Сохраните Ваш адрес.', - GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Сколько кошельков создать', - BULK_Label_2: 'Создать кошельки', - BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Адрес получателя: ', - SEND_amount: 'Сумма перевода: ', - SEND_amount_short: 'Сумма', - SEND_custom: 'Другое', - SEND_gas: 'Газ', - SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter - SEND_generate: 'Сформировать транзакцию', - SEND_raw: 'Готовая транзакция', - SEND_signed: 'Подписанная транзакция', - SEND_trans: 'Отправить транзакцию', - SENDModal_Title: 'Внимание! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Вы собираетесь перевести', - SENDModal_Content_2: 'на адрес', - SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', - SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', - SENDModal_No: 'Нет, отменить транзакцию!', - SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', - - /* Tokens */ - TOKEN_Addr: 'Адрес: ', - TOKEN_Symbol: 'Символ токена: ', - TOKEN_Dec: 'Дробность (знаков после запятой): ', - - /* Send Transaction */ - TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', - TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', - TRANS_standard: 'Эфир (ether, обычная транзакция)', - TRANS_eth: 'Только ETH', - TRANS_etc: 'Только ETC', - TRANS_advanced: '+Дополнительно: добавить газ или данные ', - TRANS_data: ' Данные: ', - TRANS_gas: ' Газ: ', - TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', - TRANSModal_Content_0: 'О видах транзакций и сервисах:', - TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', - TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', - TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', - TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', - TRANSModal_Yes: 'Спасибо, я всё понял.', - TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', - - /* Offline Transaction */ - OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', - OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', - OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', - OFFLINE_Step1_Button: 'Подготовка информации', - OFFLINE_Step1_Label_1: 'Адрес отправителя: ', - OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', - OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', - OFFLINE_Step2_Label_1: 'Адрес получателя: ', - OFFLINE_Step2_Label_2: 'Сумма перевода', - OFFLINE_Step2_Label_3: 'Цена газа ', - OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_4: 'Лимит газа ', - OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', - OFFLINE_Step2_Label_5: '№ перевода (nonce)', - OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_6: 'Данные', - OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', - OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', - OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', - OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', - - /* DAO */ - DAO_bal1: 'на момент создания блока №1.919.999', - DAO_bal2: 'текущий', - DAO_TitleETH: 'Обменять DAO токены на ETH', - DAO_TitleETC: 'Обменять DAO токены на ETC', - DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', - DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', - DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', - DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', - DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', - DAOModal_Title: 'Просто чтобы убедиться...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Вы собираетесь обменять', - DAOModal_2: 'DAO токенов. На адрес', - DAOModal_3: 'будет зачислено', // "in return for" - - /* Digix */ - DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', - DGD_Label_1: 'Предположительный размер комиссии:', - DGD_Label_2: 'Максимальный размер комиссии:', - DGD_Label_3: 'Цена газа:', - DGD_Generate: 'Сформировать требование', - DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', - - /* Deploy Contracts */ - DEP_generate: 'Сформировать байткод', - DEP_generated: 'Сформированный байткод', - DEP_signtx: 'Подписать транзакцию', - DEP_interface: 'Сформированный интерфейс', - - /* My Wallet */ - MYWAL_Nick: 'Название кошелька', - MYWAL_Address: 'Адрес кошелька', - MYWAL_Bal: 'Баланс', - MYWAL_Edit: 'Редактировать', - MYWAL_View: 'Просмотреть', - MYWAL_Remove: 'Удалить', - MYWAL_RemoveWal: 'Удалить кошелёк:', - MYWAL_WatchOnly: 'Список слежения', - MYWAL_Viewing: 'Просматриваемый кошелёк: ', - MYWAL_Hide: 'Скрыть информацию о кошельке', - MYWAL_Edit_2: 'Редактировать кошелёк: ', - MYWAL_Name: 'Имя кошелька', - MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', - MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', - MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', - VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', - - /* Chrome Extension */ - CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" - - - /* Error Messages */ - ERROR_1: 'Пожалуйста, введите сумму корректно.', - ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', - ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', - ERROR_4: 'Этот файл не является файлом кошелька. ', - ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', - ERROR_6: 'Неправильный адрес. ', - ERROR_7: 'Неверный пароль. ', - ERROR_8: 'Некорректная сумма. ', - ERROR_9: 'Некорректно указан лимит газа. ', - ERROR_10: 'Недопустимые данные. ', - ERROR_11: 'Некорректно указано количество газа. ', - ERROR_12: 'Неверный номер перевода (nonce). ', - ERROR_13: 'Подписанная транзакция некорректна. ', - ERROR_14: 'Кошелёк с таким названием уже существует. ', - ERROR_15: 'Кошелёк не найден. ', - ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', - ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', - ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', - ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', - ERROR_20: 'Неправильный символ', - SUCCESS_1: 'Адрес указан верно', - SUCCESS_2: 'Кошелёк успешно расшифрован', - SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', - SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', - SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', - SUCCESS_6: 'Выбранный файл: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Спасибо нашим переводчикам: ', - TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Если вы используете ПК:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ru; +// Portuguese +'use strict'; +var ptbr = function() {} +ptbr.code = 'ptbr'; +ptbr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ptbr; },{}],56:[function(require,module,exports){ -// Slovak -'use strict'; -var sk = function() {} -sk.code = 'sk'; -sk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sk; +// Russian +'use strict'; +var ru = function() {} +ru.code = 'ru'; +ru.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Неверный адрес отправителя', + GETH_Nonce: 'Номер перевода (nonce) слишком мал', + GETH_Cheap: 'Цена газа слишком низкая', + GETH_Balance: 'Баланс недостаточен', + GETH_NonExistentAccount: 'Счёт не существует или баланс счёта слишком мал', + GETH_InsufficientFunds: 'Недостаточно средств для ГАЗ * ЦЕНА + СУММА', + GETH_IntrinsicGas: 'Недостаточно газа для выполнения транзакции', + GETH_GasLimit: 'Превышен лимит газа на блок', + GETH_NegativeValue: 'Отрицательная сумма', + + /* Navigation*/ + NAV_YourWallets: 'Ваши кошельки', + NAV_AddWallet: 'Добавить кошелёк', + NAV_GenerateWallet: 'Создать кошелёк', + NAV_BulkGenerate: 'Создать несколько кошельков', + NAV_SendEther: 'Перевести эфир (ether)', + NAV_SendTokens: 'Перевести токены', + NAV_Offline: 'Оффлайн-перевод', + NAV_WithdrawDAO: 'Обменять DAO', + DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', + NAV_ClaimDGD: 'Получить DGD', + DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', + NAV_DeployContract: 'Опубликовать контракт', + NAV_MyWallets: 'Мои кошельки', + NAV_ViewWallet: 'Информация о кошельке', + NAV_Help: 'Справка', + NAV_Contact: 'Контакты', + + /* General */ + x_Password: 'Пароль', + x_Download: 'Скачать', + x_Address: 'Ваш адрес', + x_Save: 'Сохранить', + x_Cancel: 'Отменить', + x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', + x_PrivKey: 'Закрытый ключ (не зашифрован)', + x_PrivKey2: 'Закрытый ключ', + x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', + x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', + x_Keystore2: 'Файл Keystore/JSON', + x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', + x_Json: 'Файл JSON (не зашифрован)', + x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', + x_PrintShort: 'Печать', + x_Print: 'Напечатать бумажный кошелёк', + x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', + x_CSV: 'Файл CSV (не зашифрован)', + x_TXT: 'Файл TXT (не зашифрован)', + x_Wallet: 'кошелёк', + + /* Header */ + MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', + CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', + MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', + CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', + + /* Footer */ + FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', + FOOTER_1b: 'Авторы:', + FOOTER_2: 'Пожертвования приветствуются:', + FOOTER_3: 'Создание кошелька на стороне клиента от', + FOOTER_4: 'Отказ от ответственности', + + /* Sidebar */ + sidebar_AccountInfo: 'Информация о счёте: ', + sidebar_AccountAddr: 'Адрес (номер) счёта: ', + sidebar_AccountBal: 'Баланс счёта: ', + sidebar_TokenBal: 'Балансы токенов: ', + sidebar_Equiv: 'Эквивалентные значения: ', + sidebar_TransHistory: 'История транзакций: ', + sidebar_DGDBal: 'Информация о распродаже DGD:', + sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', + sidebar_donate: 'Пожертвовать', + sidebar_thanks: 'СПАСИБО!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', + decrypt_Title: 'Выберите формат Вашего закрытого ключа:', + decrypt_Select: 'Выберите кошелёк:', + + /* Add Wallet */ + ADD_Label_1: 'Что Вы хотите сделать?', + ADD_Radio_1: 'Создать новый кошелёк', + ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', + ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', + ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', + ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', + ADD_Radio_4: 'Добавить счёт в список слежения', + ADD_Label_2: 'Присвоить название:', + ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', + ADD_Label_4: 'Добавить счёт в список слежения', + ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', + ADD_Label_5: 'Введите адрес: ', + ADD_Label_6: 'Отпереть кошелёк', + ADD_Label_6_short: 'Отпереть', + ADD_Label_7: 'Добавить счёт', + + /* Generate Wallets */ + GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', + GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', + GEN_Placeholder_1: 'Не забудьте сохранить это!', + GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', + GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', + GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', + GEN_Label_3: 'Сохраните Ваш адрес.', + GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Сколько кошельков создать', + BULK_Label_2: 'Создать кошельки', + BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Адрес получателя: ', + SEND_amount: 'Сумма перевода: ', + SEND_amount_short: 'Сумма', + SEND_custom: 'Другое', + SEND_gas: 'Газ', + SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter + SEND_generate: 'Сформировать транзакцию', + SEND_raw: 'Готовая транзакция', + SEND_signed: 'Подписанная транзакция', + SEND_trans: 'Отправить транзакцию', + SENDModal_Title: 'Внимание! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Вы собираетесь перевести', + SENDModal_Content_2: 'на адрес', + SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', + SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', + SENDModal_No: 'Нет, отменить транзакцию!', + SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', + + /* Tokens */ + TOKEN_Addr: 'Адрес: ', + TOKEN_Symbol: 'Символ токена: ', + TOKEN_Dec: 'Дробность (знаков после запятой): ', + + /* Send Transaction */ + TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', + TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', + TRANS_standard: 'Эфир (ether, обычная транзакция)', + TRANS_eth: 'Только ETH', + TRANS_etc: 'Только ETC', + TRANS_advanced: '+Дополнительно: добавить газ или данные ', + TRANS_data: ' Данные: ', + TRANS_gas: ' Газ: ', + TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', + TRANSModal_Content_0: 'О видах транзакций и сервисах:', + TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', + TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', + TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', + TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', + TRANSModal_Yes: 'Спасибо, я всё понял.', + TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', + + /* Offline Transaction */ + OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', + OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', + OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', + OFFLINE_Step1_Button: 'Подготовка информации', + OFFLINE_Step1_Label_1: 'Адрес отправителя: ', + OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', + OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', + OFFLINE_Step2_Label_1: 'Адрес получателя: ', + OFFLINE_Step2_Label_2: 'Сумма перевода', + OFFLINE_Step2_Label_3: 'Цена газа ', + OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_4: 'Лимит газа ', + OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', + OFFLINE_Step2_Label_5: '№ перевода (nonce)', + OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_6: 'Данные', + OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', + OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', + OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', + OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', + + /* DAO */ + DAO_bal1: 'на момент создания блока №1.919.999', + DAO_bal2: 'текущий', + DAO_TitleETH: 'Обменять DAO токены на ETH', + DAO_TitleETC: 'Обменять DAO токены на ETC', + DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', + DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', + DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', + DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', + DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', + DAOModal_Title: 'Просто чтобы убедиться...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Вы собираетесь обменять', + DAOModal_2: 'DAO токенов. На адрес', + DAOModal_3: 'будет зачислено', // "in return for" + + /* Digix */ + DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', + DGD_Label_1: 'Предположительный размер комиссии:', + DGD_Label_2: 'Максимальный размер комиссии:', + DGD_Label_3: 'Цена газа:', + DGD_Generate: 'Сформировать требование', + DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', + + /* Deploy Contracts */ + DEP_generate: 'Сформировать байткод', + DEP_generated: 'Сформированный байткод', + DEP_signtx: 'Подписать транзакцию', + DEP_interface: 'Сформированный интерфейс', + + /* My Wallet */ + MYWAL_Nick: 'Название кошелька', + MYWAL_Address: 'Адрес кошелька', + MYWAL_Bal: 'Баланс', + MYWAL_Edit: 'Редактировать', + MYWAL_View: 'Просмотреть', + MYWAL_Remove: 'Удалить', + MYWAL_RemoveWal: 'Удалить кошелёк:', + MYWAL_WatchOnly: 'Список слежения', + MYWAL_Viewing: 'Просматриваемый кошелёк: ', + MYWAL_Hide: 'Скрыть информацию о кошельке', + MYWAL_Edit_2: 'Редактировать кошелёк: ', + MYWAL_Name: 'Имя кошелька', + MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', + MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', + MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', + VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', + + /* Chrome Extension */ + CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Пожалуйста, введите сумму корректно.', + ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', + ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', + ERROR_4: 'Этот файл не является файлом кошелька. ', + ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', + ERROR_6: 'Неправильный адрес. ', + ERROR_7: 'Неверный пароль. ', + ERROR_8: 'Некорректная сумма. ', + ERROR_9: 'Некорректно указан лимит газа. ', + ERROR_10: 'Недопустимые данные. ', + ERROR_11: 'Некорректно указано количество газа. ', + ERROR_12: 'Неверный номер перевода (nonce). ', + ERROR_13: 'Подписанная транзакция некорректна. ', + ERROR_14: 'Кошелёк с таким названием уже существует. ', + ERROR_15: 'Кошелёк не найден. ', + ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', + ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', + ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', + ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', + ERROR_20: 'Неправильный символ', + SUCCESS_1: 'Адрес указан верно', + SUCCESS_2: 'Кошелёк успешно расшифрован', + SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', + SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', + SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', + SUCCESS_6: 'Выбранный файл: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Спасибо нашим переводчикам: ', + TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Если вы используете ПК:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ru; },{}],57:[function(require,module,exports){ -// Slovenian -'use strict'; -var sl = function() {} -sl.code = 'sl'; -sl.data = { - - /* Geth Error Messages */ - SUCCESS_6: 'File Selected: ', - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* New */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter - FOOTER_1b: 'Created by', - - /* Navigation*/ - NAV_YourWallets: 'Vaše Denarnice', - NAV_AddWallet: 'Dodaj Denarnico', - NAV_GenerateWallet: 'Ustvari Denarnico', - NAV_BulkGenerate: 'Ustvari Serijo Denarnic', - NAV_SendEther: 'Pošlji Ether', - NAV_SendTokens: 'Pošlji Žetone', - NAV_Offline: 'Pošlji Brez Povezave', - NAV_WithdrawDAO: 'Izplačaj DAO', - DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', - NAV_ClaimDGD: 'Zahtevaj DGD', - DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', - NAV_MyWallets: 'Moje Denarnice', - NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', - NAV_Help: 'Pomoč', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Geslo', - x_Download: 'Prenesi', - x_Address: 'Vaš Naslov', - x_Save: 'x_Shrani', - x_Cancel: 'x_Prekliči', - x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', - x_PrivKey: 'Osebni Ključ (nekriptiran)', - x_PrivKey2: 'Osebni Ključ', - x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', - x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', - x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', - x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', - x_Json: 'JSON Datoteka (nekriptirana)', - x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', - x_PrintShort: 'Natisni', - x_Print: 'Natisni Papirnato Denarnico', - x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', - x_CSV: 'CSV datoteka (nekriptirana)', - x_TXT: 'TXT datoteka (nekriptirana)', - x_Wallet: 'Denarnice', - - /* Header */ - MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', - CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', - MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', - CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', - - /* Footer */ - FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', - FOOTER_2: 'Donacije so zelo dobrodošle:', - FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacije o Računu: ', - sidebar_AccountAddr: 'Naslov Računa: ', - sidebar_AccountBal: 'Stanje Računa: ', - sidebar_TokenBal: 'Stanje Žetonov: ', - sidebar_Equiv: 'Ekvivalentne Vrednosti: ', - sidebar_TransHistory: 'Zgodovina Transakcij', - sidebar_DGDBal: 'Informacije o DGD Crowdsale:', - sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', - sidebar_donate: 'Doniraj', - sidebar_thanks: 'Najlepša vam hvala!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', - decrypt_Title: 'Izberite format vašega osebnega ključa:', - decrypt_Select: 'Izberite Denarnico:', - - /* Add Wallet */ - ADD_Label_1: 'Kaj želite storiti?', - ADD_Radio_1: 'Ustvari Novo Denarnico', - ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', - ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', - ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', - ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Label_2: 'Ustvari Vzdevek:', - ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', - ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', - ADD_Label_5: 'Vnestie Naslov: ', - ADD_Label_6: 'Odklenite vašo Denarnico', - ADD_Label_6_short: 'Odkleni', - ADD_Label_7: 'Dodaj Račun', - - /* Generate Wallets */ - GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', - GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', - GEN_Placeholder_1: 'NE pozabite shraniti tega!', - GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', - GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', - GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', - GEN_Label_3: 'Shranite Vaš Naslov.', - GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Signed Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet.', - MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'jkocjan', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sl; +// Slovak +'use strict'; +var sk = function() {} +sk.code = 'sk'; +sk.data = { + + NAV_DeployContract: 'Deploy Contract', + x_Keystore2: 'Keystore / JSON File', + x_PrivKey2: 'Private Key', + FOOTER_4: 'Disclaimer', + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Peňaženky', + NAV_AddWallet: 'Pridať peňaženku', + NAV_GenerateWallet: 'Vytvoriť peňaženku', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Poslať Ether', + NAV_SendTokens: 'Poslať Tokens', + NAV_Offline: 'Poslať Offline', + NAV_WithdrawDAO: 'Vybrať DAO', + DAO_TitleLong: 'Vymeniť Vaše Dao Tokens za ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_MyWallets: 'Moje peňaženky', + NAV_ViewWallet: 'Zobraziť detaily peňaženky', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Heslo', + x_Wallet: 'Peňaženka', + x_Download: 'Stiahnuť', + x_Address: 'Vaša Adresa', + x_Save: 'Uložiť', + x_Cancel: 'Zrušiť', + x_AddessDesc: 'Možno to poznate ako vaše "Konto #" alebo váš "Verejný Kľúč". Adresa je to, čo pošlete ľudom, aby vám mohli poslať ETH. Táto ikona vám pomôže rozpoznať vašu adresu.', + x_PrivKey: 'Súkromný Kľúč (nezašifrovaný)', + x_PrivKeyDesc: 'Toto je nezašifrovaná textova verzia vašho Súkromneho Kľuča, to znamená, že heslo nie je potrebné. Ak niekto získa vaš nezašifrovaný Súkromný Kľúč, môže získať prístup do vašej peňaženky bez hesla. Práve kvôli tomuto sú šifrované verzie odporúčané.', + x_Keystore: 'Keystore/JSON Súbor (Odporúčané · Šifrované · Mist/Geth Format)', + x_KeystoreDesc: 'Tento Keystore / JSON súbor je rovnakého formatu ako Mist & Geth takže ho budete môcť jednoducho importovať. Tento subor odporúčame stiahnuť a zálohovať.', + x_Json: 'JSON Súbor (nezašifrovaný)', + x_JsonDesc: 'Toto je nezašifrovaný JSON format vášho sukromného kľúča. To znamená, že nepotrebujete heslo, ale ak niekto získa váš JSON, je schopný sprístupniť vašu peňaženku a Ether bez hesla.', + x_PrintShort: 'Vytlačiť', + x_Print: 'Vytlačiť Papierovú Peňaženku', + x_PrintDesc: 'Rada: Ak nevlastnite tlačiareň, jednoducho kliknite tlačiť a uložte to ako PDF.', + x_CSV: 'CSV súbor (nezašifrovaný)', + x_TXT: 'TXT súbor (nezašifrovaný)', + + /* Header */ + MEW_Warning_1: 'Vždy skontrolujte URL adresu pred tým ako vytvoríte alebo sprístupnite vašu peňaženku. Davajte si pozor na Phisingové stránky!', + CX_Warning_1: 'Uistita sa, že máťe **externé zálohy** všetkych peňaženiek. Mnoho vecí može spôsobiť stratu dát tohoto Chrome rozširenia, vrátane odinštalovania a preinštalovania tohto rozšírenia. Toto rozšírenie pomáha jednoducho sprístupniť vašu peňaženku, **nie** ju zálohovať.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions.', + FOOTER_1b: 'Vytvorené', + FOOTER_2: 'Dotácie srdečne vítane:', + FOOTER_3: 'Client-side wallet generation by', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ETH to your account to cover the gas cost of sending tokens. Gas is paid in ETH.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + SEND_TransferTotal: 'Send Entire Balance', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* CX */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + +/* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sk; },{}],58:[function(require,module,exports){ -// Swedish -'use strict'; -var sv = function() {} -sv.code = 'sv'; -sv.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Dina Plånböcker', - NAV_AddWallet: 'Lägg till Plånbok', - NAV_GenerateWallet: 'Generera Plånbok', - NAV_BulkGenerate: 'Mass Generera', - NAV_SendEther: 'Skicka Ether', - NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ - NAV_Offline: 'Skicka Offline', - NAV_WithdrawDAO: 'Växla DAO', - DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', - NAV_ClaimDGD: 'Hämta DGD', - DGD_TitleLong: 'Hämta Dina DGD Tokens', - NAV_MyWallets: 'Mina Plånböcker', - NAV_ViewWallet: 'Visa Plånboks Info', - NAV_Help: 'Hjälp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Lösenord', - x_Download: 'Ladda Ner', - x_Address: 'Din Adress', - x_Save: 'Spara', - x_Cancel: 'Avbryt', - x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', - x_PrivKey: 'Privat Nyckel (okrypterad)', - x_PrivKey2: 'Privat Nyckel', - x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', - x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON Fil', - x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', - x_Json: 'JSON Fil (okrypterad)', - x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', - x_PrintShort: 'Skriv Ut', - x_Print: 'Skriv Ut Pappers Plånbok', - x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', - x_CSV: 'CSV fil (okrypterad)', - x_TXT: 'TXT fil (okrypterad)', - x_Wallet: 'Plånbok', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Konto Adress: ', - sidebar_AccountBal: 'Konto Saldo: ', - sidebar_TokenBal: 'Token Saldon: ', - sidebar_Equiv: 'Motsvarande Värden: ', - sidebar_TransHistory: 'Transaktionshistorik: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', - sidebar_donate: 'Donera', - sidebar_thanks: 'TACK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Adress: ', - ADD_Label_6: 'Unlock your Wallet', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Adress.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antal Plånböcker att Generera', - BULK_Label_2: 'Generera Plånböcker', - BULK_SuccessMsg: 'Dina plånböcker har genererats.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Adress: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SEND_TransferTotal: 'Send Entire Balance', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to adress', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adress: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimaler: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Adress: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Adress: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Plånboks Namn', - MYWAL_Address: 'Plånboks Adress', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Ändra', - MYWAL_View: 'Visa', - MYWAL_Remove: 'Ta Bort', - MYWAL_RemoveWal: 'Ta Bort Plånbok:', - MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ - MYWAL_Viewing: 'Visar Plånbok: ', - MYWAL_Hide: 'Dölj Plånboks Info', - MYWAL_Edit_2: 'Ändra Plånbok: ', - MYWAL_Name: 'Plånboks Namn', - MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', - MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', - MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', - TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sv; +// Slovenian +'use strict'; +var sl = function() {} +sl.code = 'sl'; +sl.data = { + + /* Geth Error Messages */ + SUCCESS_6: 'File Selected: ', + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* New */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter + FOOTER_1b: 'Created by', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Denarnice', + NAV_AddWallet: 'Dodaj Denarnico', + NAV_GenerateWallet: 'Ustvari Denarnico', + NAV_BulkGenerate: 'Ustvari Serijo Denarnic', + NAV_SendEther: 'Pošlji Ether', + NAV_SendTokens: 'Pošlji Žetone', + NAV_Offline: 'Pošlji Brez Povezave', + NAV_WithdrawDAO: 'Izplačaj DAO', + DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', + NAV_ClaimDGD: 'Zahtevaj DGD', + DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', + NAV_MyWallets: 'Moje Denarnice', + NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', + NAV_Help: 'Pomoč', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Geslo', + x_Download: 'Prenesi', + x_Address: 'Vaš Naslov', + x_Save: 'x_Shrani', + x_Cancel: 'x_Prekliči', + x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', + x_PrivKey: 'Osebni Ključ (nekriptiran)', + x_PrivKey2: 'Osebni Ključ', + x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', + x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', + x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', + x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', + x_Json: 'JSON Datoteka (nekriptirana)', + x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', + x_PrintShort: 'Natisni', + x_Print: 'Natisni Papirnato Denarnico', + x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', + x_CSV: 'CSV datoteka (nekriptirana)', + x_TXT: 'TXT datoteka (nekriptirana)', + x_Wallet: 'Denarnice', + + /* Header */ + MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', + CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', + MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', + CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', + + /* Footer */ + FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', + FOOTER_2: 'Donacije so zelo dobrodošle:', + FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacije o Računu: ', + sidebar_AccountAddr: 'Naslov Računa: ', + sidebar_AccountBal: 'Stanje Računa: ', + sidebar_TokenBal: 'Stanje Žetonov: ', + sidebar_Equiv: 'Ekvivalentne Vrednosti: ', + sidebar_TransHistory: 'Zgodovina Transakcij', + sidebar_DGDBal: 'Informacije o DGD Crowdsale:', + sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', + sidebar_donate: 'Doniraj', + sidebar_thanks: 'Najlepša vam hvala!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', + decrypt_Title: 'Izberite format vašega osebnega ključa:', + decrypt_Select: 'Izberite Denarnico:', + + /* Add Wallet */ + ADD_Label_1: 'Kaj želite storiti?', + ADD_Radio_1: 'Ustvari Novo Denarnico', + ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', + ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', + ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', + ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Label_2: 'Ustvari Vzdevek:', + ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', + ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', + ADD_Label_5: 'Vnestie Naslov: ', + ADD_Label_6: 'Odklenite vašo Denarnico', + ADD_Label_6_short: 'Odkleni', + ADD_Label_7: 'Dodaj Račun', + + /* Generate Wallets */ + GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', + GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', + GEN_Placeholder_1: 'NE pozabite shraniti tega!', + GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', + GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', + GEN_Label_3: 'Shranite Vaš Naslov.', + GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Signed Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet.', + MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Tranlsation Info */ + translate_version: '0.2', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'jkocjan', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sl; },{}],59:[function(require,module,exports){ -// Turkish -'use strict'; -var tr = function() {} -tr.code = 'tr'; -tr.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Cüzdanin', - NAV_AddWallet: 'Cüzdan ekle', - NAV_GenerateWallet: 'Cüzdan oluştur', - NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', - NAV_SendEther: 'Ether gönder', - NAV_SendTokens: 'Tokens gönder', - NAV_Offline: 'Offline gönder', - NAV_WithdrawDAO: 'DAO çek', - DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', - NAV_ClaimDGD: 'DGD talep et', - DGD_TitleLong: 'DGD tokenlerini talep et', - NAV_MyWallets: 'Cüzdanim', - NAV_ViewWallet: 'Cüzdan bilgilerni göster', - NAV_Help: 'Yardim et', - NAV_Contact: 'Iletişime geç', - - /* General */ - x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', - x_Address: 'Adresin', - x_Cancel: 'Iptal et', - x_Download: 'Indir', - x_Json: 'JSON dosya (şifrelenmemis)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', - x_Keystore2: 'Keystore/JSON dosya', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Parola', - x_Print: 'Cüzdanin kağıt versiyonunu yazdir', - x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', - x_PrintShort: 'Yazdir', - x_PrivKey: 'Özel anahtar (şifrelenmemis)', - x_PrivKey2: 'Özel anahtar', - x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', - x_Save: 'Indir', - x_TXT: 'TXT dosya (şifrelenmemis)', - x_CSV: 'CSV dosya (şifrelenmemis)', - x_Wallet: 'Cüzdan', - -/* Header */ - MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', - CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', - - /* Footer */ - FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', - FOOTER_1b: 'tarafından yaratıldı', - FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', - FOOTER_3: 'Client-side cüzdan olusturma', - FOOTER_4: 'Verzicht', - - /* Sidebar */ - sidebar_AccountInfo: 'Hesap bilgiler: ', - sidebar_AccountAddr: 'Hesap adres: ', - sidebar_AccountBal: 'Bakiye: ', - sidebar_TokenBal: 'Token bakiye: ', - sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ - sidebar_TransHistory: 'Işlem geçmişi: ', - sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', - sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', - sidebar_donate: 'Bağışta bulun', - sidebar_thanks: 'TEŞEKKÜRLER!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Cüzdanını nasıl acmak istersin?', - decrypt_Title: 'Özel anahtarinin formatini sec:', - decrypt_Select: 'Bir cüzdan sec:', - - /* Add Wallet */ - ADD_Label_1: 'Ne yapmak istiyorsun?', - ADD_Radio_1: 'Yeni cüzdan olustur', - ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', - ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', - ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', - ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', - ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ - ADD_Label_2: 'Bir nickname oluştur: ', - ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', - ADD_Label_4: 'Izlenecek hesap adresi ekle', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Adresi ekle: ', - ADD_Label_6: 'Cüzdani ac: ', - ADD_Label_6_short: 'Ac', - ADD_Label_7: 'Hesap ekle', - - /* Generate Wallets */ - GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', - GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', - GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', - GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', - GEN_Label_3: 'Adresini kaydet.', - GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Oluşturulacak cüzdan sayısı', - BULK_Label_2: 'Cüzdanlari olustur', - BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Bu Adrese gönder: ', - SEND_amount: 'Gönderilecek miktar: ', - SEND_amount_short: 'Miktar', - SEND_custom: 'Kullanici özel', /*maybe another word here too */ - SEND_gas: 'Gas', - SEND_TransferTotal: 'Tüm dengeyi gönder', - SEND_generate: 'Generate Transaction', - SEND_raw: 'İşlem oluştur', /* add Binär */ - SEND_signed: 'Imzali İşlem', - SEND_trans: 'Islemi gönder', - SENDModal_Title: 'Uyarı! ', - - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'şu an ', - SENDModal_Content_2: 'bu adresse', - SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'Hayir, cikar beni burdan!', - SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token symbolu: ', - TOKEN_Dec: 'Ondalık: ', - - /* Send Transaction */ - TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', - TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', - TRANS_standard: 'ETH (Standart işlem)', - TRANS_eth: 'Yalnızca ETH', - TRANS_etc: 'Yalnızca ETC', - TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', - TRANS_data: 'Veri: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', - TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', - TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ - TRANSModal_Yes: 'Güzel, şimdi anladım.', - TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', - - /* Offline Transaction */ - OFFLINE_Title: 'Olustur & offline islem', - OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', - OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', - OFFLINE_Step1_Button: 'Bilgileri olustur', - OFFLINE_Step1_Label_1: 'Adres\'den: ', - OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'Adrese: ', - OFFLINE_Step2_Label_2: 'Gönderilen miktar', - OFFLINE_Step2_Label_3: 'Gas fiyati ', - OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', - OFFLINE_Step2_Label_4: 'Gas limiti ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Veri', - OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', - OFFLINE_Step2_Label_6: 'Veri', - OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'block 1,919,999\'ta', - DAO_bal2: 'şimdiki', - DAO_TitleETH: 'DAO ETH olarak cek', - DAO_TitleETC: 'DAO ETC olarak cek', - DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', - DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Sadece emin olmak için...', - - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Cekmek üzeresin', - DAOModal_2: 'DAO token\'i ', - DAOModal_3: ' yerine', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Tahmini bedel:', - DGD_Label_2: 'Maximum bedel:', - DGD_Label_3: 'Gas fiyati:', - DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ - DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode oluştur', - DEP_generated: 'Oluşturulan Bytecode', - DEP_signtx: 'Islmemi Imzala', - DEP_interface: 'Interface oluştur', - - /* My Wallet */ - MYWAL_Nick: 'Cüzdan nickname', - MYWAL_Address: 'Cüzdan adres', - MYWAL_Bal: 'Bakiye', - MYWAL_Edit: 'Düzenle', - MYWAL_View: 'Göster', - MYWAL_Remove: 'Kaldir', - MYWAL_RemoveWal: 'Cüzdani kaldir:', - MYWAL_WatchOnly: 'Sadece izlenen hesaplar', - MYWAL_Viewing: 'Izlenen Cüzdan: ', - MYWAL_Hide: 'Cüzdan bilgilerini gizle', - MYWAL_Edit_2: 'Cüzdani düzenle: ', - MYWAL_Name: 'Cüzdan Ismi', - MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', - MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', - CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli - - /* Error Messages */ - ERROR_1: 'Geçerli tutar yaz.', - ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', - ERROR_6: 'Geçersiz adres. ', - ERROR_7: 'Geçersiz parola. ', - ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ - ERROR_9: 'Geçersiz gas limit. ', - ERROR_10: 'Geçersiz data value. ', - ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ - ERROR_12: 'Geçersiz veri. ', - ERROR_13: 'Geçersiz imzali isleme. ', - ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', - ERROR_15: 'Cüzdan bulunmadi. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Geçersiz sembol', - SUCCESS_1: 'Geçerli adres', - SUCCESS_2: 'Cüzdan basariyla desifre edildi', - SUCCESS_3: 'İşlem teslim edildi TX ID: ', - SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', - SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', - SUCCESS_6: 'Dosya secildi ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'ffidan61', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = tr; +// Swedish +'use strict'; +var sv = function() {} +sv.code = 'sv'; +sv.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Dina Plånböcker', + NAV_AddWallet: 'Lägg till Plånbok', + NAV_GenerateWallet: 'Generera Plånbok', + NAV_BulkGenerate: 'Mass Generera', + NAV_SendEther: 'Skicka Ether', + NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ + NAV_Offline: 'Skicka Offline', + NAV_WithdrawDAO: 'Växla DAO', + DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', + NAV_ClaimDGD: 'Hämta DGD', + DGD_TitleLong: 'Hämta Dina DGD Tokens', + NAV_MyWallets: 'Mina Plånböcker', + NAV_ViewWallet: 'Visa Plånboks Info', + NAV_Help: 'Hjälp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Lösenord', + x_Download: 'Ladda Ner', + x_Address: 'Din Adress', + x_Save: 'Spara', + x_Cancel: 'Avbryt', + x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', + x_PrivKey: 'Privat Nyckel (okrypterad)', + x_PrivKey2: 'Privat Nyckel', + x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', + x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON Fil', + x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', + x_Json: 'JSON Fil (okrypterad)', + x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', + x_PrintShort: 'Skriv Ut', + x_Print: 'Skriv Ut Pappers Plånbok', + x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', + x_CSV: 'CSV fil (okrypterad)', + x_TXT: 'TXT fil (okrypterad)', + x_Wallet: 'Plånbok', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Konto Adress: ', + sidebar_AccountBal: 'Konto Saldo: ', + sidebar_TokenBal: 'Token Saldon: ', + sidebar_Equiv: 'Motsvarande Värden: ', + sidebar_TransHistory: 'Transaktionshistorik: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', + sidebar_donate: 'Donera', + sidebar_thanks: 'TACK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Adress: ', + ADD_Label_6: 'Unlock your Wallet', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Adress.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antal Plånböcker att Generera', + BULK_Label_2: 'Generera Plånböcker', + BULK_SuccessMsg: 'Dina plånböcker har genererats.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Adress: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SEND_TransferTotal: 'Send Entire Balance', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to adress', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adress: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimaler: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Adress: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Adress: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Plånboks Namn', + MYWAL_Address: 'Plånboks Adress', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Ändra', + MYWAL_View: 'Visa', + MYWAL_Remove: 'Ta Bort', + MYWAL_RemoveWal: 'Ta Bort Plånbok:', + MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ + MYWAL_Viewing: 'Visar Plånbok: ', + MYWAL_Hide: 'Dölj Plånboks Info', + MYWAL_Edit_2: 'Ändra Plånbok: ', + MYWAL_Name: 'Plånboks Namn', + MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', + MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', + MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', + TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sv; },{}],60:[function(require,module,exports){ -'use strict'; -var ar = require('./ar'); -var bg = require('./bg'); -var de = require('./de'); -var el = require('./el'); -var en = require('./en'); -var es = require('./es'); -var et = require('./et'); -var fr = require('./fr'); -var he = require('./he'); -var hi = require('./hi'); -var hu = require('./hu'); -var id = require('./id'); -var it = require('./it'); -var ja = require('./ja'); -var ko = require('./ko'); -var nl = require('./nl'); -var no = require('./no'); -var pl = require('./pl'); -var pt = require('./pt'); -var ptbr = require('./ptbr'); -var ru = require('./ru'); -var sk = require('./sk'); -var sl = require('./sl'); -var sv = require('./sv'); -var tr = require('./tr'); -var uk = require('./uk'); -var vi = require('./vi'); -var zh = require('./zh'); - -var translate = function($translateProvider) { - $translateProvider.translations(ar.code, translate.marked(ar.data)); - $translateProvider.translations(bg.code, translate.marked(bg.data)); - $translateProvider.translations(de.code, translate.marked(de.data)); - $translateProvider.translations(el.code, translate.marked(el.data)); - $translateProvider.translations(en.code, translate.marked(en.data)); - $translateProvider.translations(es.code, translate.marked(es.data)); - $translateProvider.translations(et.code, translate.marked(et.data)); - $translateProvider.translations(fr.code, translate.marked(fr.data)); - $translateProvider.translations(he.code, translate.marked(he.data)); - $translateProvider.translations(hi.code, translate.marked(hi.data)); - $translateProvider.translations(hu.code, translate.marked(hu.data)); - $translateProvider.translations(id.code, translate.marked(id.data)); - $translateProvider.translations(it.code, translate.marked(it.data)); - $translateProvider.translations(ja.code, translate.marked(ja.data)); - $translateProvider.translations(ko.code, translate.marked(ko.data)); - $translateProvider.translations(nl.code, translate.marked(nl.data)); - $translateProvider.translations(no.code, translate.marked(no.data)); - $translateProvider.translations(pl.code, translate.marked(pl.data)); - $translateProvider.translations(pt.code, translate.marked(pt.data)); - $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); - $translateProvider.translations(ru.code, translate.marked(ru.data)); - $translateProvider.translations(sk.code, translate.marked(sk.data)); - $translateProvider.translations(sl.code, translate.marked(sl.data)); - $translateProvider.translations(sv.code, translate.marked(sv.data)); - $translateProvider.translations(tr.code, translate.marked(tr.data)); - $translateProvider.translations(uk.code, translate.marked(uk.data)); - $translateProvider.translations(vi.code, translate.marked(vi.data)); - $translateProvider.translations(zh.code, translate.marked(zh.data)); - $translateProvider.preferredLanguage('en'); - $translateProvider.useSanitizeValueStrategy(null); -} -translate.marked = function(data) { - var tData = data; - for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); - return tData; -} -module.exports = translate; - -},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fr":42,"./he":43,"./hi":44,"./hu":45,"./id":46,"./it":47,"./ja":48,"./ko":49,"./nl":50,"./no":51,"./pl":52,"./pt":53,"./ptbr":54,"./ru":55,"./sk":56,"./sl":57,"./sv":58,"./tr":59,"./uk":61,"./vi":62,"./zh":63}],61:[function(require,module,exports){ -// Ukranian -'use strict'; -var uk = function() {} -uk.code = 'uk'; -uk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = uk; - -},{}],62:[function(require,module,exports){ -// Vietnamese -'use strict'; -var vi = function() {} -vi.code = 'vi'; -vi.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Sai người nhận', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas quá thấp', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ví Của Bạn', - NAV_AddWallet: 'Thêm Ví', - NAV_GenerateWallet: 'Tạo Ví', - NAV_BulkGenerate: 'Tạo Nhiều Ví', - NAV_SendEther: 'Gửi Ether', - NAV_SendTokens: 'Gửi Token', - NAV_Offline: 'Giao Dịch Offline', - NAV_WithdrawDAO: 'Thu Hồi DAO Token', - DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', - NAV_ClaimDGD: 'Khiếu Nại Về DGD', - DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', - NAV_DeployContract: 'Phát Triển Hợp Đồng', - NAV_MyWallets: 'Ví Của Tôi', - NAV_ViewWallet: 'Thông Tin Ví', - NAV_Help: 'Trợ Giúp', - NAV_Contact: 'Liên Hệ', - - /* General */ - x_Address: 'Địa Chỉ Của Bạn', - x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', - x_CSV: 'Định Dạng CSV (Không mã hoá)', - x_Cancel: 'Huỷ', - x_Download: 'Tải Về Máy', - x_Json: 'Định Dạng JSON (Không mã hoá)', - x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', - x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', - x_Keystore2: 'Định Dạng Keystore / JSON', - x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', - x_Password: 'Mật Khẩu', - x_Print: 'Tạo Ví Giấy', - x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', - x_PrintShort: 'In Ví', - x_PrivKey: 'Private Key (Không mã hoá)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', - x_Save: 'Lưu', - x_TXT: 'Định Dạng TXT (Không mã Hoá)', - x_Wallet: 'Ví', - - /* Header */ - MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', - CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Nhà Phát Triển:', - FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Những Điều Cần Lưu Ý', - - /* Sidebar */ - sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', - sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', - sidebar_AccountBal: 'Số Dư Tài Khoản: ', - sidebar_TokenBal: 'Số Dư Token: ', - sidebar_Equiv: 'Giá Trị Tương Đương: ', - sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', - sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', - sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', - sidebar_donate: 'Quyên Góp', - sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', - decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', - decrypt_Select: 'Chọn ví:', - - /* Add Wallet */ - ADD_Label_1: 'Bạn đang cần làm gì?', - ADD_Radio_1: 'Tạo Ví Mới', - ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', - ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', - ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', - ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', - ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Label_2: 'Tạo Tên Gọi:', - ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', - ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', - ADD_Label_5: 'Điền Địa Chỉ Ví: ', - ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', - ADD_Label_6_short: 'Mở Khoá', - ADD_Label_7: 'Thêm Tài Khoản', - - /* Generate Wallets */ - GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', - GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', - GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', - GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', - GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', - GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', - GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Số Lượng Ví Cần Tạo', - BULK_Label_2: 'Tạo Ví', - BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Địa Chỉ Đến: ', - SEND_amount: 'Số Lượng Cần Gửi: ', - SEND_amount_short: 'Số Lượng', - SEND_custom: 'Tuỳ Chỉnh', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', - SEND_generate: 'Tạo Giao Dịch', - SEND_raw: 'Định Dạng Giao Dịch', - SEND_signed: 'Chữ Ký Giao Dich', - SEND_trans: 'Gửi Đi', - SENDModal_Title: 'Cảnh Báo! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Bạn muốn gửi đi', - SENDModal_Content_2: 'Địa chỉ đến', - SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', - SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', - SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', - SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', - - /* Tokens */ - TOKEN_Addr: 'Địa Chỉ: ', - TOKEN_Symbol: 'Ký Hiệu Token: ', - TOKEN_Dec: 'Phân Số Thập Phân: ', - - /* Send Transaction */ - TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', - TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', - TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', - TRANS_eth: 'Chỉ ETH', - TRANS_etc: 'Chỉ ETC', - TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', - TRANS_data: 'Dữ Liệu:', - TRANS_gas: 'Gas:', - TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', - TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', - TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', - TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', - TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', - TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', - TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', - - /* Offline Transaction */ - OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', - OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', - OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', - OFFLINE_Step1_Button: 'Tạo Thông Tin', - OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', - OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', - OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', - OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', - OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', - OFFLINE_Step2_Label_3: 'Giá Gas', - OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_4: 'Giới hạn Gas', - OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_6: 'Dữ Liệu', - OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', - OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', - OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', - OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', - - /* DAO */ - DAO_bal1: 'Tại Block 1,919,999', - DAO_bal2: 'Hiện Tại', - DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', - DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', - DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', - DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', - DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', - DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', - DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', - DAOModal_Title: 'Đảm bảo rằng...', - DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', - DAOModal_2: 'Số Dao Token đến', - DAOModal_3: 'Hoàn Lại', // "in return for" - - /* Digix */ - DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', - DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', - DGD_Label_2: 'Cung Cấp Phí Tối Đa:', - DGD_Label_3: 'Giá Gas:', - DGD_Generate: 'Tạo Khiếu Nại', - DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', - - /* Deploy Contracts */ - DEP_generate: 'Tạo Bytecode', - DEP_generated: 'Bytecode Đã Được Tạo', - DEP_signtx: 'Chữ Ký Giao Dịch', - DEP_interface: 'Đã Tạo Giao Diện', - - /* My Wallet */ - MYWAL_Nick: 'Tên Gọi Của Ví', - MYWAL_Address: 'Địa Chỉ Ví', - MYWAL_Bal: 'Số Dư', - MYWAL_Edit: 'Chỉnh Sửa', - MYWAL_View: 'Xem', - MYWAL_Remove: 'Gỡ Bỏ', - MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', - MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', - MYWAL_Viewing: 'Xem Ví: ', - MYWAL_Hide: 'Ẩn Thông Tin Ví', - MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', - MYWAL_Name: 'Tên Ví', - MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', - MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', - MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', - VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', - - /* Chrome Extension */ - CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', - CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vui lòng nhập số dư hợp lệ.', - ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', - ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', - ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', - ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', - ERROR_6: 'Địa chỉ không hợp lệ. ', - ERROR_7: 'Mật khẩu không hợp lệ. ', - ERROR_8: 'Tổng số không hợp lệ. ', - ERROR_9: 'Giới hạn gas không hợp lệ. ', - ERROR_10: 'Dữ liệu không hợp lệ. ', - ERROR_11: 'Tổng số gas không hợp lệ. ', - ERROR_12: 'Nonce không hợp lệ. ', - ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', - ERROR_14: 'Tên gọi này đã được sữ dụng. ', - ERROR_15: 'Không tìm thấy Ví. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', - ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', - ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', - ERROR_20: 'Biểu tượng không hợp lệ', - SUCCESS_1: 'Địa Chỉ Hợp Lệ', - SUCCESS_2: 'Ví đã được giải mã thành công', - SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', - SUCCESS_4: 'Ví của bạn đã được thêm thành công:', - SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', - SUCCESS_6: 'Tập Tin Được Chọn: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Chân Thành Cảm Ơn: ', - TranslatorName_1: 'Phạm Thế Vũ', - TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ - TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', - HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Lưu ý:', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', - HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', - - HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', - HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', - HELP_0_Desc_2: 'Tạo ví mới.', - HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', - HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', - HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', - - HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', - HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', - HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', - HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', - HELP_1_Desc_4: 'Bám "Tạo Ví', - HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', - - HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', - HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', - HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', - HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', - HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', - HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', - HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', - - HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', - HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', - HELP_2b_Desc_3: 'Tải tệp zip về máy.', - HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', - HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', - HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', - HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', - HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', - - HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', - HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', - HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', - HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', - HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', - HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_3_Desc_6: 'Bấm "Mở Khóa".', - HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', - HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - - HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', - HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', - HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', - HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_4_Desc_5: 'Bấm "Mở Khóa"', - HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', - HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', - HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', - HELP_4CX_Desc_11: 'Xác nhận giao dịch', - HELP_4CX_Desc_12: '', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = vi; +// Turkish +'use strict'; +var tr = function() {} +tr.code = 'tr'; +tr.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Cüzdanin', + NAV_AddWallet: 'Cüzdan ekle', + NAV_GenerateWallet: 'Cüzdan oluştur', + NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', + NAV_SendEther: 'Ether gönder', + NAV_SendTokens: 'Tokens gönder', + NAV_Offline: 'Offline gönder', + NAV_WithdrawDAO: 'DAO çek', + DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', + NAV_ClaimDGD: 'DGD talep et', + DGD_TitleLong: 'DGD tokenlerini talep et', + NAV_MyWallets: 'Cüzdanim', + NAV_ViewWallet: 'Cüzdan bilgilerni göster', + NAV_Help: 'Yardim et', + NAV_Contact: 'Iletişime geç', + + /* General */ + x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', + x_Address: 'Adresin', + x_Cancel: 'Iptal et', + x_Download: 'Indir', + x_Json: 'JSON dosya (şifrelenmemis)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', + x_Keystore2: 'Keystore/JSON dosya', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Parola', + x_Print: 'Cüzdanin kağıt versiyonunu yazdir', + x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', + x_PrintShort: 'Yazdir', + x_PrivKey: 'Özel anahtar (şifrelenmemis)', + x_PrivKey2: 'Özel anahtar', + x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', + x_Save: 'Indir', + x_TXT: 'TXT dosya (şifrelenmemis)', + x_CSV: 'CSV dosya (şifrelenmemis)', + x_Wallet: 'Cüzdan', + +/* Header */ + MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', + CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', + + /* Footer */ + FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', + FOOTER_1b: 'tarafından yaratıldı', + FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', + FOOTER_3: 'Client-side cüzdan olusturma', + FOOTER_4: 'Verzicht', + + /* Sidebar */ + sidebar_AccountInfo: 'Hesap bilgiler: ', + sidebar_AccountAddr: 'Hesap adres: ', + sidebar_AccountBal: 'Bakiye: ', + sidebar_TokenBal: 'Token bakiye: ', + sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ + sidebar_TransHistory: 'Işlem geçmişi: ', + sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', + sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', + sidebar_donate: 'Bağışta bulun', + sidebar_thanks: 'TEŞEKKÜRLER!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Cüzdanını nasıl acmak istersin?', + decrypt_Title: 'Özel anahtarinin formatini sec:', + decrypt_Select: 'Bir cüzdan sec:', + + /* Add Wallet */ + ADD_Label_1: 'Ne yapmak istiyorsun?', + ADD_Radio_1: 'Yeni cüzdan olustur', + ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', + ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', + ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', + ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', + ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ + ADD_Label_2: 'Bir nickname oluştur: ', + ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', + ADD_Label_4: 'Izlenecek hesap adresi ekle', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Adresi ekle: ', + ADD_Label_6: 'Cüzdani ac: ', + ADD_Label_6_short: 'Ac', + ADD_Label_7: 'Hesap ekle', + + /* Generate Wallets */ + GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', + GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', + GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', + GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', + GEN_Label_3: 'Adresini kaydet.', + GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Oluşturulacak cüzdan sayısı', + BULK_Label_2: 'Cüzdanlari olustur', + BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Bu Adrese gönder: ', + SEND_amount: 'Gönderilecek miktar: ', + SEND_amount_short: 'Miktar', + SEND_custom: 'Kullanici özel', /*maybe another word here too */ + SEND_gas: 'Gas', + SEND_TransferTotal: 'Tüm dengeyi gönder', + SEND_generate: 'Generate Transaction', + SEND_raw: 'İşlem oluştur', /* add Binär */ + SEND_signed: 'Imzali İşlem', + SEND_trans: 'Islemi gönder', + SENDModal_Title: 'Uyarı! ', + + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'şu an ', + SENDModal_Content_2: 'bu adresse', + SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'Hayir, cikar beni burdan!', + SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token symbolu: ', + TOKEN_Dec: 'Ondalık: ', + + /* Send Transaction */ + TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', + TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', + TRANS_standard: 'ETH (Standart işlem)', + TRANS_eth: 'Yalnızca ETH', + TRANS_etc: 'Yalnızca ETC', + TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', + TRANS_data: 'Veri: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', + TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', + TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ + TRANSModal_Yes: 'Güzel, şimdi anladım.', + TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', + + /* Offline Transaction */ + OFFLINE_Title: 'Olustur & offline islem', + OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', + OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', + OFFLINE_Step1_Button: 'Bilgileri olustur', + OFFLINE_Step1_Label_1: 'Adres\'den: ', + OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'Adrese: ', + OFFLINE_Step2_Label_2: 'Gönderilen miktar', + OFFLINE_Step2_Label_3: 'Gas fiyati ', + OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', + OFFLINE_Step2_Label_4: 'Gas limiti ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Veri', + OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', + OFFLINE_Step2_Label_6: 'Veri', + OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'block 1,919,999\'ta', + DAO_bal2: 'şimdiki', + DAO_TitleETH: 'DAO ETH olarak cek', + DAO_TitleETC: 'DAO ETC olarak cek', + DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', + DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Sadece emin olmak için...', + + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Cekmek üzeresin', + DAOModal_2: 'DAO token\'i ', + DAOModal_3: ' yerine', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Tahmini bedel:', + DGD_Label_2: 'Maximum bedel:', + DGD_Label_3: 'Gas fiyati:', + DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ + DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode oluştur', + DEP_generated: 'Oluşturulan Bytecode', + DEP_signtx: 'Islmemi Imzala', + DEP_interface: 'Interface oluştur', + + /* My Wallet */ + MYWAL_Nick: 'Cüzdan nickname', + MYWAL_Address: 'Cüzdan adres', + MYWAL_Bal: 'Bakiye', + MYWAL_Edit: 'Düzenle', + MYWAL_View: 'Göster', + MYWAL_Remove: 'Kaldir', + MYWAL_RemoveWal: 'Cüzdani kaldir:', + MYWAL_WatchOnly: 'Sadece izlenen hesaplar', + MYWAL_Viewing: 'Izlenen Cüzdan: ', + MYWAL_Hide: 'Cüzdan bilgilerini gizle', + MYWAL_Edit_2: 'Cüzdani düzenle: ', + MYWAL_Name: 'Cüzdan Ismi', + MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', + MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', + CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli + + /* Error Messages */ + ERROR_1: 'Geçerli tutar yaz.', + ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', + ERROR_6: 'Geçersiz adres. ', + ERROR_7: 'Geçersiz parola. ', + ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ + ERROR_9: 'Geçersiz gas limit. ', + ERROR_10: 'Geçersiz data value. ', + ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ + ERROR_12: 'Geçersiz veri. ', + ERROR_13: 'Geçersiz imzali isleme. ', + ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', + ERROR_15: 'Cüzdan bulunmadi. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Geçersiz sembol', + SUCCESS_1: 'Geçerli adres', + SUCCESS_2: 'Cüzdan basariyla desifre edildi', + SUCCESS_3: 'İşlem teslim edildi TX ID: ', + SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', + SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', + SUCCESS_6: 'Dosya secildi ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'ffidan61', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = tr; + +},{}],61:[function(require,module,exports){ + 'use strict'; + var ar = require('./ar'); + var bg = require('./bg'); + var de = require('./de'); + var de = require('./de'); + var el = require('./el'); + var en = require('./en'); + var es = require('./es'); + var et = require('./et'); + var fi = require('./fi'); + var fr = require('./fr'); + var he = require('./he'); + var hi = require('./hi'); + var hu = require('./hu'); + var id = require('./id'); + var it = require('./it'); + var ja = require('./ja'); + var ko = require('./ko'); + var nl = require('./nl'); + var no = require('./no'); + var pl = require('./pl'); + var pt = require('./pt'); + var ptbr = require('./ptbr'); + var ru = require('./ru'); + var sk = require('./sk'); + var sl = require('./sl'); + var sv = require('./sv'); + var tr = require('./tr'); + var uk = require('./uk'); + var vi = require('./vi'); + var zh = require('./zh'); + + var translate = function($translateProvider) { + $translateProvider.translations(ar.code, translate.marked(ar.data)); + $translateProvider.translations(bg.code, translate.marked(bg.data)); + $translateProvider.translations(de.code, translate.marked(de.data)); + $translateProvider.translations(el.code, translate.marked(el.data)); + $translateProvider.translations(en.code, translate.marked(en.data)); + $translateProvider.translations(es.code, translate.marked(es.data)); + $translateProvider.translations(et.code, translate.marked(et.data)); + $translateProvider.translations(fi.code, translate.marked(fi.data)); + $translateProvider.translations(fr.code, translate.marked(fr.data)); + $translateProvider.translations(he.code, translate.marked(he.data)); + $translateProvider.translations(hi.code, translate.marked(hi.data)); + $translateProvider.translations(hu.code, translate.marked(hu.data)); + $translateProvider.translations(id.code, translate.marked(id.data)); + $translateProvider.translations(it.code, translate.marked(it.data)); + $translateProvider.translations(ja.code, translate.marked(ja.data)); + $translateProvider.translations(ko.code, translate.marked(ko.data)); + $translateProvider.translations(nl.code, translate.marked(nl.data)); + $translateProvider.translations(no.code, translate.marked(no.data)); + $translateProvider.translations(pl.code, translate.marked(pl.data)); + $translateProvider.translations(pt.code, translate.marked(pt.data)); + $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); + $translateProvider.translations(ru.code, translate.marked(ru.data)); + $translateProvider.translations(sk.code, translate.marked(sk.data)); + $translateProvider.translations(sl.code, translate.marked(sl.data)); + $translateProvider.translations(sv.code, translate.marked(sv.data)); + $translateProvider.translations(tr.code, translate.marked(tr.data)); + $translateProvider.translations(uk.code, translate.marked(uk.data)); + $translateProvider.translations(vi.code, translate.marked(vi.data)); + $translateProvider.translations(zh.code, translate.marked(zh.data)); + $translateProvider.preferredLanguage('en'); + $translateProvider.useSanitizeValueStrategy(null); + } + +translate.marked = function(data) { + var tData = data; + for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); + return tData; +} +module.exports = translate; + +},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fi":42,"./fr":43,"./he":44,"./hi":45,"./hu":46,"./id":47,"./it":48,"./ja":49,"./ko":50,"./nl":51,"./no":52,"./pl":53,"./pt":54,"./ptbr":55,"./ru":56,"./sk":57,"./sl":58,"./sv":59,"./tr":60,"./uk":62,"./vi":63,"./zh":64}],62:[function(require,module,exports){ +// Ukranian +'use strict'; +var uk = function() {} +uk.code = 'uk'; +uk.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = uk; },{}],63:[function(require,module,exports){ -// Chinese -'use strict'; -var zh = function() {} -zh.code = 'zh'; -zh.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_2_success: 'File Selected: ', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = zh; +// Vietnamese +'use strict'; +var vi = function() {} +vi.code = 'vi'; +vi.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Sai người nhận', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas quá thấp', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Ví Của Bạn', + NAV_AddWallet: 'Thêm Ví', + NAV_GenerateWallet: 'Tạo Ví', + NAV_BulkGenerate: 'Tạo Nhiều Ví', + NAV_SendEther: 'Gửi Ether', + NAV_SendTokens: 'Gửi Token', + NAV_Offline: 'Giao Dịch Offline', + NAV_WithdrawDAO: 'Thu Hồi DAO Token', + DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', + NAV_ClaimDGD: 'Khiếu Nại Về DGD', + DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', + NAV_DeployContract: 'Phát Triển Hợp Đồng', + NAV_MyWallets: 'Ví Của Tôi', + NAV_ViewWallet: 'Thông Tin Ví', + NAV_Help: 'Trợ Giúp', + NAV_Contact: 'Liên Hệ', + + /* General */ + x_Address: 'Địa Chỉ Của Bạn', + x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', + x_CSV: 'Định Dạng CSV (Không mã hoá)', + x_Cancel: 'Huỷ', + x_Download: 'Tải Về Máy', + x_Json: 'Định Dạng JSON (Không mã hoá)', + x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', + x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', + x_Keystore2: 'Định Dạng Keystore / JSON', + x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', + x_Password: 'Mật Khẩu', + x_Print: 'Tạo Ví Giấy', + x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', + x_PrintShort: 'In Ví', + x_PrivKey: 'Private Key (Không mã hoá)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', + x_Save: 'Lưu', + x_TXT: 'Định Dạng TXT (Không mã Hoá)', + x_Wallet: 'Ví', + + /* Header */ + MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', + CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Nhà Phát Triển:', + FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Những Điều Cần Lưu Ý', + + /* Sidebar */ + sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', + sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', + sidebar_AccountBal: 'Số Dư Tài Khoản: ', + sidebar_TokenBal: 'Số Dư Token: ', + sidebar_Equiv: 'Giá Trị Tương Đương: ', + sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', + sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', + sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', + sidebar_donate: 'Quyên Góp', + sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', + decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', + decrypt_Select: 'Chọn ví:', + + /* Add Wallet */ + ADD_Label_1: 'Bạn đang cần làm gì?', + ADD_Radio_1: 'Tạo Ví Mới', + ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', + ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', + ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', + ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', + ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Label_2: 'Tạo Tên Gọi:', + ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', + ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', + ADD_Label_5: 'Điền Địa Chỉ Ví: ', + ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', + ADD_Label_6_short: 'Mở Khoá', + ADD_Label_7: 'Thêm Tài Khoản', + + /* Generate Wallets */ + GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', + GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', + GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', + GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', + GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', + GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', + GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Số Lượng Ví Cần Tạo', + BULK_Label_2: 'Tạo Ví', + BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Địa Chỉ Đến: ', + SEND_amount: 'Số Lượng Cần Gửi: ', + SEND_amount_short: 'Số Lượng', + SEND_custom: 'Tuỳ Chỉnh', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', + SEND_generate: 'Tạo Giao Dịch', + SEND_raw: 'Định Dạng Giao Dịch', + SEND_signed: 'Chữ Ký Giao Dich', + SEND_trans: 'Gửi Đi', + SENDModal_Title: 'Cảnh Báo! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Bạn muốn gửi đi', + SENDModal_Content_2: 'Địa chỉ đến', + SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', + SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', + SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', + SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', + + /* Tokens */ + TOKEN_Addr: 'Địa Chỉ: ', + TOKEN_Symbol: 'Ký Hiệu Token: ', + TOKEN_Dec: 'Phân Số Thập Phân: ', + + /* Send Transaction */ + TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', + TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', + TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', + TRANS_eth: 'Chỉ ETH', + TRANS_etc: 'Chỉ ETC', + TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', + TRANS_data: 'Dữ Liệu:', + TRANS_gas: 'Gas:', + TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', + TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', + TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', + TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', + TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', + TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', + TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', + + /* Offline Transaction */ + OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', + OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', + OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', + OFFLINE_Step1_Button: 'Tạo Thông Tin', + OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', + OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', + OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', + OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', + OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', + OFFLINE_Step2_Label_3: 'Giá Gas', + OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_4: 'Giới hạn Gas', + OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_6: 'Dữ Liệu', + OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', + OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', + OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', + OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', + + /* DAO */ + DAO_bal1: 'Tại Block 1,919,999', + DAO_bal2: 'Hiện Tại', + DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', + DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', + DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', + DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', + DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', + DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', + DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', + DAOModal_Title: 'Đảm bảo rằng...', + DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', + DAOModal_2: 'Số Dao Token đến', + DAOModal_3: 'Hoàn Lại', // "in return for" + + /* Digix */ + DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', + DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', + DGD_Label_2: 'Cung Cấp Phí Tối Đa:', + DGD_Label_3: 'Giá Gas:', + DGD_Generate: 'Tạo Khiếu Nại', + DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', + + /* Deploy Contracts */ + DEP_generate: 'Tạo Bytecode', + DEP_generated: 'Bytecode Đã Được Tạo', + DEP_signtx: 'Chữ Ký Giao Dịch', + DEP_interface: 'Đã Tạo Giao Diện', + + /* My Wallet */ + MYWAL_Nick: 'Tên Gọi Của Ví', + MYWAL_Address: 'Địa Chỉ Ví', + MYWAL_Bal: 'Số Dư', + MYWAL_Edit: 'Chỉnh Sửa', + MYWAL_View: 'Xem', + MYWAL_Remove: 'Gỡ Bỏ', + MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', + MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', + MYWAL_Viewing: 'Xem Ví: ', + MYWAL_Hide: 'Ẩn Thông Tin Ví', + MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', + MYWAL_Name: 'Tên Ví', + MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', + MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', + MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', + VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', + + /* Chrome Extension */ + CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', + CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vui lòng nhập số dư hợp lệ.', + ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', + ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', + ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', + ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', + ERROR_6: 'Địa chỉ không hợp lệ. ', + ERROR_7: 'Mật khẩu không hợp lệ. ', + ERROR_8: 'Tổng số không hợp lệ. ', + ERROR_9: 'Giới hạn gas không hợp lệ. ', + ERROR_10: 'Dữ liệu không hợp lệ. ', + ERROR_11: 'Tổng số gas không hợp lệ. ', + ERROR_12: 'Nonce không hợp lệ. ', + ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', + ERROR_14: 'Tên gọi này đã được sữ dụng. ', + ERROR_15: 'Không tìm thấy Ví. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', + ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', + ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', + ERROR_20: 'Biểu tượng không hợp lệ', + SUCCESS_1: 'Địa Chỉ Hợp Lệ', + SUCCESS_2: 'Ví đã được giải mã thành công', + SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', + SUCCESS_4: 'Ví của bạn đã được thêm thành công:', + SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', + SUCCESS_6: 'Tập Tin Được Chọn: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Chân Thành Cảm Ơn: ', + TranslatorName_1: 'Phạm Thế Vũ', + TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ + TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', + HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Lưu ý:', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', + HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', + + HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', + HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', + HELP_0_Desc_2: 'Tạo ví mới.', + HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', + HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', + HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', + + HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', + HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', + HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', + HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', + HELP_1_Desc_4: 'Bám "Tạo Ví', + HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', + + HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', + HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', + HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', + HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', + HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', + HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', + HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', + + HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', + HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', + HELP_2b_Desc_3: 'Tải tệp zip về máy.', + HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', + HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', + HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', + HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', + HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', + + HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', + HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', + HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', + HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', + HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', + HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_3_Desc_6: 'Bấm "Mở Khóa".', + HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', + HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + + HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', + HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', + HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', + HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_4_Desc_5: 'Bấm "Mở Khóa"', + HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', + HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', + HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', + HELP_4CX_Desc_11: 'Xác nhận giao dịch', + HELP_4CX_Desc_12: '', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = vi; },{}],64:[function(require,module,exports){ +// Chinese +'use strict'; +var zh = function() {} +zh.code = 'zh'; +zh.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_2_success: 'File Selected: ', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = zh; + +},{}],65:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var uiFuncs = function() {} -uiFuncs.getTxData = function($scope) { - return { - to: $scope.tx.to, - value: $scope.tx.value, - unit: $scope.tx.unit, - gasLimit: $scope.tx.gasLimit, - data: $scope.tx.data, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }; -} -uiFuncs.isTxDataValid = function(txData) { - if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; - if (txData.to == "0xCONTRACT") txData.to = ''; -} -uiFuncs.generateClassicTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getClassicTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendClassicTx = function(signedTx, callback) { - ajaxReq.sendClassicRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.generateTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendTx = function(signedTx, callback) { - ajaxReq.sendRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { - try { - ajaxReq.getTransactionData(fromAdd, function(data) { - if (data.error) throw data.msg; - data = data.data; - var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); - var maxVal = new BigNumber(data.balance).minus(gasPrice); - maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); - if (callback !== undefined) callback({ - isError: false, - unit: "ether", - value: maxVal - }); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} +'use strict'; +var uiFuncs = function() {} +uiFuncs.getTxData = function($scope) { + return { + to: $scope.tx.to, + value: $scope.tx.value, + unit: $scope.tx.unit, + gasLimit: $scope.tx.gasLimit, + data: $scope.tx.data, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }; +} +uiFuncs.isTxDataValid = function(txData) { + if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; + if (txData.to == "0xCONTRACT") txData.to = ''; +} +uiFuncs.generateClassicTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getClassicTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendClassicTx = function(signedTx, callback) { + ajaxReq.sendClassicRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.generateTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendTx = function(signedTx, callback) { + ajaxReq.sendRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { + try { + ajaxReq.getTransactionData(fromAdd, function(data) { + if (data.error) throw data.msg; + data = data.data; + var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); + var maxVal = new BigNumber(data.balance).minus(gasPrice); + maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); + if (callback !== undefined) callback({ + isError: false, + unit: "ether", + value: maxVal + }); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":121}],65:[function(require,module,exports){ -'use strict'; -var validator = function() {} -validator.isValidAddress = function(address){ - return ethFuncs.validateEtherAddress(address); -} -validator.isPositiveNumber = function(value){ - return globalFuncs.isNumeric(value) && parseFloat(value) > 0; -} -validator.isValidHex = function(hex){ - return ethFuncs.validateHexString(hex); -} -validator.isValidPrivKey = function(privkeyLen){ - return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; -} -validator.isPasswordLenValid = function(pass, len){ - if(pass === 'undefined' || pass == null ) return false; - return pass.length > len; -} +},{"buffer":122}],66:[function(require,module,exports){ +'use strict'; +var validator = function() {} +validator.isValidAddress = function(address){ + return ethFuncs.validateEtherAddress(address); +} +validator.isPositiveNumber = function(value){ + return globalFuncs.isNumeric(value) && parseFloat(value) >= 0; +} +validator.isValidHex = function(hex){ + return ethFuncs.validateHexString(hex); +} +validator.isValidPrivKey = function(privkeyLen){ + return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; +} +validator.isPasswordLenValid = function(pass, len){ + if(pass === 'undefined' || pass == null ) return false; + return pass.length > len; +} module.exports = validator; -},{}],66:[function(require,module,exports){ + +},{}],67:[function(require,module,exports){ /** * @license AngularJS v1.5.8 * (c) 2010-2016 Google, Inc. http://angularjs.org @@ -19053,11 +19580,11 @@ angular.module('ngSanitize').filter('linky', ['$sanitize', function($sanitize) { })(window, window.angular); -},{}],67:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":66}],68:[function(require,module,exports){ +},{"./angular-sanitize":67}],69:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -19109,7 +19636,7 @@ return 'pascalprecht.translate'; })); -},{}],69:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -22583,9 +23110,9 @@ return 'pascalprecht.translate'; })); -},{}],70:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ /** - * @license AngularJS v1.5.8 + * @license AngularJS v1.5.6 * (c) 2010-2016 Google, Inc. http://angularjs.org * License: MIT */ @@ -22643,7 +23170,7 @@ function minErr(module, ErrorConstructor) { return match; }); - message += '\nhttp://errors.angularjs.org/1.5.8/' + + message += '\nhttp://errors.angularjs.org/1.5.6/' + (module ? module + '/' : '') + code; for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') { @@ -22712,6 +23239,7 @@ function minErr(module, ErrorConstructor) { includes: true, arrayRemove: true, copy: true, + shallowCopy: true, equals: true, csp: true, jq: true, @@ -23407,13 +23935,7 @@ function arrayRemove(array, value) { * * If a destination is provided, all of its elements (for arrays) or properties (for objects) * are deleted and then all elements/properties from the source are copied to it. * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. - * * If `source` is identical to `destination` an exception will be thrown. - * - *
- *
- * Only enumerable properties are taken into account. Non-enumerable properties (both on `source` - * and on `destination`) will be ignored. - *
+ * * If `source` is identical to 'destination' an exception will be thrown. * * @param {*} source The source that will be used to make a copy. * Can be any type, including primitives, `null`, and `undefined`. @@ -23422,42 +23944,41 @@ function arrayRemove(array, value) { * @returns {*} The copy or updated `destination`, if `destination` was specified. * * @example - - -
-
-
-
- Gender: -
- - -
-
form = {{user | json}}
-
master = {{master | json}}
-
-
- - // Module: copyExample - angular. - module('copyExample', []). - controller('ExampleController', ['$scope', function($scope) { - $scope.master = {}; - - $scope.reset = function() { - // Example with 1 argument - $scope.user = angular.copy($scope.master); - }; + + +
+
+ Name:
+ E-mail:
+ Gender: male + female
+ + +
+
form = {{user | json}}
+
master = {{master | json}}
+
+ + +
+
*/ function copy(source, destination) { var stackSource = []; @@ -23564,7 +24085,7 @@ function copy(source, destination) { case '[object Uint8ClampedArray]': case '[object Uint16Array]': case '[object Uint32Array]': - return new source.constructor(copyElement(source.buffer), source.byteOffset, source.length); + return new source.constructor(copyElement(source.buffer)); case '[object ArrayBuffer]': //Support: IE10 @@ -23596,6 +24117,31 @@ function copy(source, destination) { } } +/** + * Creates a shallow copy of an object, an array or a primitive. + * + * Assumes that there are no proto properties for objects. + */ +function shallowCopy(src, dst) { + if (isArray(src)) { + dst = dst || []; + + for (var i = 0, ii = src.length; i < ii; i++) { + dst[i] = src[i]; + } + } else if (isObject(src)) { + dst = dst || {}; + + for (var key in src) { + if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { + dst[key] = src[key]; + } + } + } + + return dst || src; +} + /** * @ngdoc function @@ -24936,34 +25482,7 @@ function setupModuleLoader(window) { } -/* global shallowCopy: true */ - -/** - * Creates a shallow copy of an object, an array or a primitive. - * - * Assumes that there are no proto properties for objects. - */ -function shallowCopy(src, dst) { - if (isArray(src)) { - dst = dst || []; - - for (var i = 0, ii = src.length; i < ii; i++) { - dst[i] = src[i]; - } - } else if (isObject(src)) { - dst = dst || {}; - - for (var key in src) { - if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { - dst[key] = src[key]; - } - } - } - - return dst || src; -} - -/* global toDebugString: true */ +/* global: toDebugString: true */ function serializeObject(obj) { var seen = []; @@ -25067,7 +25586,6 @@ function toDebugString(obj) { $HttpParamSerializerJQLikeProvider, $HttpBackendProvider, $xhrFactoryProvider, - $jsonpCallbacksProvider, $LocationProvider, $LogProvider, $ParseProvider, @@ -25105,11 +25623,11 @@ function toDebugString(obj) { * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". */ var version = { - full: '1.5.8', // all of these placeholder strings will be replaced by grunt's + full: '1.5.6', // all of these placeholder strings will be replaced by grunt's major: 1, // package task minor: 5, - dot: 8, - codeName: 'arbitrary-fallbacks' + dot: 6, + codeName: 'arrow-stringification' }; @@ -25140,7 +25658,7 @@ function publishExternalAPI(angular) { 'isDate': isDate, 'lowercase': lowercase, 'uppercase': uppercase, - 'callbacks': {$$counter: 0}, + 'callbacks': {counter: 0}, 'getTestability': getTestability, '$$minErr': minErr, '$$csp': csp, @@ -25229,7 +25747,6 @@ function publishExternalAPI(angular) { $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider, $httpBackend: $HttpBackendProvider, $xhrFactory: $xhrFactoryProvider, - $jsonpCallbacks: $jsonpCallbacksProvider, $location: $LocationProvider, $log: $LogProvider, $parse: $ParseProvider, @@ -25306,7 +25823,7 @@ function publishExternalAPI(angular) { * ## Angular's jqLite * jqLite provides only the following jQuery methods: * - * - [`addClass()`](http://api.jquery.com/addClass/) - Does not support a function as first argument + * - [`addClass()`](http://api.jquery.com/addClass/) * - [`after()`](http://api.jquery.com/after/) * - [`append()`](http://api.jquery.com/append/) * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters @@ -25333,7 +25850,7 @@ function publishExternalAPI(angular) { * - [`ready()`](http://api.jquery.com/ready/) * - [`remove()`](http://api.jquery.com/remove/) * - [`removeAttr()`](http://api.jquery.com/removeAttr/) - * - [`removeClass()`](http://api.jquery.com/removeClass/) - Does not support a function as first argument + * - [`removeClass()`](http://api.jquery.com/removeClass/) * - [`removeData()`](http://api.jquery.com/removeData/) * - [`replaceWith()`](http://api.jquery.com/replaceWith/) * - [`text()`](http://api.jquery.com/text/) @@ -25468,7 +25985,7 @@ function jqLiteBuildFragment(html, context) { nodes.push(context.createTextNode(html)); } else { // Convert html into DOM nodes - tmp = fragment.appendChild(context.createElement("div")); + tmp = tmp || fragment.appendChild(context.createElement("div")); tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase(); wrap = wrapMap[tag] || wrapMap._default; tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1>") + wrap[2]; @@ -27281,10 +27798,10 @@ function createInjector(modulesToLoad, strictDi) { if (msie <= 11) { return false; } - // Support: Edge 12-13 only - // See: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/6156135/ + // Workaround for MS Edge. + // Check https://connect.microsoft.com/IE/Feedback/Details/2211653 return typeof func === 'function' - && /^(?:class\b|constructor\()/.test(stringifyFn(func)); + && /^(?:class\s|constructor\()/.test(stringifyFn(func)); } function invoke(fn, self, locals, serviceName) { @@ -28025,13 +28542,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28057,13 +28568,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28084,13 +28589,7 @@ var $AnimateProvider = ['$provide', function($provide) { * digest once the animation has completed. * * @param {DOMElement} element the element which will be removed from the DOM - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28114,13 +28613,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be added (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28144,13 +28637,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28175,13 +28662,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} add the CSS class(es) that will be added (multiple classes are separated via spaces) * @param {string} remove the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28222,13 +28703,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {string=} className an optional CSS class that will be applied to the element for the duration of the animation. If * this value is left as empty then a CSS class of `ng-inline-animate` will be applied to the element. * (Note that if no animation is detected then this value will not be applied to the element.) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -29316,9 +29791,8 @@ function $TemplateCacheProvider() { * There are many different options for a directive. * * The difference resides in the return value of the factory function. - * You can either return a {@link $compile#directive-definition-object Directive Definition Object (see below)} - * that defines the directive properties, or just the `postLink` function (all other properties will have - * the default values). + * You can either return a "Directive Definition Object" (see below) that defines the directive properties, + * or just the `postLink` function (all other properties will have the default values). * *
* **Best Practice:** It's recommended to use the "directive definition object" form. @@ -29382,125 +29856,6 @@ function $TemplateCacheProvider() { * }); * ``` * - * ### Life-cycle hooks - * Directive controllers can provide the following methods that are called by Angular at points in the life-cycle of the - * directive: - * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and - * had their bindings initialized (and before the pre & post linking functions for the directives on - * this element). This is a good place to put initialization code for your controller. - * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The - * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an - * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a - * component such as cloning the bound value to prevent accidental mutation of the outer value. - * * `$doCheck()` - Called on each turn of the digest cycle. Provides an opportunity to detect and act on - * changes. Any actions that you wish to take in response to the changes that you detect must be - * invoked from this hook; implementing this has no effect on when `$onChanges` is called. For example, this hook - * could be useful if you wish to perform a deep equality check, or to check a Date object, changes to which would not - * be detected by Angular's change detector and thus not trigger `$onChanges`. This hook is invoked with no arguments; - * if detecting changes, you must store the previous value(s) for comparison to the current values. - * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing - * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in - * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent - * components will have their `$onDestroy()` hook called before child components. - * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link - * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. - * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since - * they are waiting for their template to load asynchronously and their own compilation and linking has been - * suspended until that occurs. - * - * #### Comparison with Angular 2 life-cycle hooks - * Angular 2 also uses life-cycle hooks for its components. While the Angular 1 life-cycle hooks are similar there are - * some differences that you should be aware of, especially when it comes to moving your code from Angular 1 to Angular 2: - * - * * Angular 1 hooks are prefixed with `$`, such as `$onInit`. Angular 2 hooks are prefixed with `ng`, such as `ngOnInit`. - * * Angular 1 hooks can be defined on the controller prototype or added to the controller inside its constructor. - * In Angular 2 you can only define hooks on the prototype of the Component class. - * * Due to the differences in change-detection, you may get many more calls to `$doCheck` in Angular 1 than you would to - * `ngDoCheck` in Angular 2 - * * Changes to the model inside `$doCheck` will trigger new turns of the digest loop, which will cause the changes to be - * propagated throughout the application. - * Angular 2 does not allow the `ngDoCheck` hook to trigger a change outside of the component. It will either throw an - * error or do nothing depending upon the state of `enableProdMode()`. - * - * #### Life-cycle hook examples - * - * This example shows how you can check for mutations to a Date object even though the identity of the object - * has not changed. - * - * - * - * angular.module('do-check-module', []) - * .component('app', { - * template: - * 'Month: ' + - * 'Date: {{ $ctrl.date }}' + - * '', - * controller: function() { - * this.date = new Date(); - * this.month = this.date.getMonth(); - * this.updateDate = function() { - * this.date.setMonth(this.month); - * }; - * } - * }) - * .component('test', { - * bindings: { date: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * var previousValue; - * this.log = []; - * this.$doCheck = function() { - * var currentValue = this.date && this.date.valueOf(); - * if (previousValue !== currentValue) { - * this.log.push('doCheck: date mutated: ' + this.date); - * previousValue = currentValue; - * } - * }; - * } - * }); - *
- * - * - * - *
- * - * This example show how you might use `$doCheck` to trigger changes in your component's inputs even if the - * actual identity of the component doesn't change. (Be aware that cloning and deep equality checks on large - * arrays or objects can have a negative impact on your application performance) - * - * - * - *
- * - * - *
{{ items }}
- * - *
- *
- * - * angular.module('do-check-module', []) - * .component('test', { - * bindings: { items: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * this.log = []; - * - * this.$doCheck = function() { - * if (this.items_ref !== this.items) { - * this.log.push('doCheck: items changed'); - * this.items_ref = this.items; - * } - * if (!angular.equals(this.items_clone, this.items)) { - * this.log.push('doCheck: items mutated'); - * this.items_clone = angular.copy(this.items); - * } - * }; - * } - * }); - *
- *
* * * ### Directive Definition Object @@ -29676,6 +30031,25 @@ function $TemplateCacheProvider() { * The `$transclude` function also has a method on it, `$transclude.isSlotFilled(slotName)`, which returns * `true` if the specified slot contains content (i.e. one or more DOM nodes). * + * The controller can provide the following methods that act as life-cycle hooks: + * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and + * had their bindings initialized (and before the pre & post linking functions for the directives on + * this element). This is a good place to put initialization code for your controller. + * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The + * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an + * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a + * component such as cloning the bound value to prevent accidental mutation of the outer value. + * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing + * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in + * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent + * components will have their `$onDestroy()` hook called before child components. + * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link + * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. + * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since + * they are waiting for their template to load asynchronously and their own compilation and linking has been + * suspended until that occurs. + * + * * #### `require` * Require another directive and inject its controller as the fourth argument to the linking function. The * `require` property can be a string, an array or an object: @@ -29873,8 +30247,8 @@ function $TemplateCacheProvider() { * any other controller. * * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. - * This is the same as the `$transclude` parameter of directive controllers, - * see {@link ng.$compile#-controller- the controller section for details}. + * This is the same as the `$transclude` + * parameter of directive controllers, see there for details. * `function([scope], cloneLinkingFn, futureParentElement)`. * * #### Pre-linking function @@ -30676,19 +31050,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } // We must run this hook in an apply since the $$postDigest runs outside apply $rootScope.$apply(function() { - var errors = []; for (var i = 0, ii = onChangesQueue.length; i < ii; ++i) { - try { - onChangesQueue[i](); - } catch (e) { - errors.push(e); - } + onChangesQueue[i](); } // Reset the queue to trigger a new schedule next time there is a change onChangesQueue = undefined; - if (errors.length) { - throw errors; - } }); } finally { onChangesTtl++; @@ -31329,7 +31695,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { addTextInterpolateDirective(directives, node.nodeValue); break; case NODE_TYPE_COMMENT: /* Comment */ - collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective); + try { + match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); + if (match) { + nName = directiveNormalize(match[1]); + if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { + attrs[nName] = trim(match[2]); + } + } + } catch (e) { + // turns out that under some circumstances IE9 throws errors when one attempts to read + // comment's node value. + // Just ignore it and continue. (Can't seem to reproduce in test case.) + } break; } @@ -31337,24 +31715,6 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return directives; } - function collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective) { - // function created because of performance, try/catch disables - // the optimization of the whole function #14848 - try { - var match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); - if (match) { - var nName = directiveNormalize(match[1]); - if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[2]); - } - } - } catch (e) { - // turns out that under some circumstances IE9 throws errors when one attempts to read - // comment's node value. - // Just ignore it and continue. (Can't seem to reproduce in test case.) - } - } - /** * Given a node with an directive-start it collects all of the siblings until it finds * directive-end. @@ -31870,22 +32230,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(elementControllers, function(controller) { var controllerInstance = controller.instance; if (isFunction(controllerInstance.$onChanges)) { - try { - controllerInstance.$onChanges(controller.bindingInfo.initialChanges); - } catch (e) { - $exceptionHandler(e); - } + controllerInstance.$onChanges(controller.bindingInfo.initialChanges); } if (isFunction(controllerInstance.$onInit)) { - try { - controllerInstance.$onInit(); - } catch (e) { - $exceptionHandler(e); - } - } - if (isFunction(controllerInstance.$doCheck)) { - controllerScope.$watch(function() { controllerInstance.$doCheck(); }); - controllerInstance.$doCheck(); + controllerInstance.$onInit(); } if (isFunction(controllerInstance.$onDestroy)) { controllerScope.$on('$destroy', function callOnDestroyHook() { @@ -32149,16 +32497,18 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // copy the new attributes on the old attrs object forEach(src, function(value, key) { - // Check if we already set this attribute in the loop above. - // `dst` will never contain hasOwnProperty as DOM parser won't let it. - // You will get an "InvalidCharacterError: DOM Exception 5" error if you - // have an attribute like "has-own-property" or "data-has-own-property", etc. - if (!dst.hasOwnProperty(key) && key.charAt(0) !== '$') { + if (key == 'class') { + safeAddClass($element, value); + dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; + } else if (key == 'style') { + $element.attr('style', $element.attr('style') + ';' + value); + dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; + // `dst` will never contain hasOwnProperty as DOM parser won't let it. + // You will get an "InvalidCharacterError: DOM Exception 5" error if you + // have an attribute like "has-own-property" or "data-has-own-property", etc. + } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { dst[key] = value; - - if (key !== 'class' && key !== 'style') { - dstAttr[key] = srcAttr[key]; - } + dstAttr[key] = srcAttr[key]; } }); } @@ -32533,7 +32883,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(bindings, function initializeBinding(definition, scopeName) { var attrName = definition.attrName, optional = definition.optional, - mode = definition.mode, // @, =, <, or & + mode = definition.mode, // @, =, or & lastValue, parentGet, parentSet, compare, removeWatch; @@ -33019,21 +33369,18 @@ function $DocumentProvider() { * * ## Example: * - * The example below will overwrite the default `$exceptionHandler` in order to (a) log uncaught - * errors to the backend for later inspection by the developers and (b) to use `$log.warn()` instead - * of `$log.error()`. - * * ```js - * angular. - * module('exceptionOverwrite', []). - * factory('$exceptionHandler', ['$log', 'logErrorsToBackend', function($log, logErrorsToBackend) { - * return function myExceptionHandler(exception, cause) { - * logErrorsToBackend(exception, cause); - * $log.warn(exception, cause); - * }; - * }]); + * angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { + * return function(exception, cause) { + * exception.message += ' (caused by "' + cause + '")'; + * throw exception; + * }; + * }); * ``` * + * This example will override the normal action of `$exceptionHandler`, to make angular + * exceptions fail hard when they happen, instead of just logging to the console. + * *
* Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind` * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler} @@ -33043,7 +33390,7 @@ function $DocumentProvider() { * `try { ... } catch(e) { $exceptionHandler(e); }` * * @param {Error} exception Exception associated with the error. - * @param {string=} cause Optional information about the context in which + * @param {string=} cause optional information about the context in which * the error was thrown. * */ @@ -33113,7 +33460,7 @@ function $HttpParamSerializerProvider() { * * `{'foo': 'bar'}` results in `foo=bar` * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object) * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element) - * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object) + * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object) * * Note that serializer will sort the request parameters alphabetically. * */ @@ -33664,7 +34011,7 @@ function $HttpProvider() { * * ### Overriding the Default Transformations Per Request * - * If you wish to override the request/response transformations only for a single request then provide + * If you wish override the request/response transformations only for a single request then provide * `transformRequest` and/or `transformResponse` properties on the configuration object passed * into `$http`. * @@ -33707,7 +34054,7 @@ function $HttpProvider() { * * cache a specific response - set config.cache value to TRUE or to a cache object * * If caching is enabled, but neither the default cache nor config.cache are set to a cache object, - * then the default `$cacheFactory("$http")` object is used. + * then the default `$cacheFactory($http)` object is used. * * The default cache value can be set by updating the * {@link ng.$http#defaults `$http.defaults.cache`} property or the @@ -34035,25 +34382,48 @@ function $HttpProvider() { config.headers = mergeHeaders(requestConfig); config.method = uppercase(config.method); config.paramSerializer = isString(config.paramSerializer) ? - $injector.get(config.paramSerializer) : config.paramSerializer; + $injector.get(config.paramSerializer) : config.paramSerializer; - var requestInterceptors = []; - var responseInterceptors = []; + var serverRequest = function(config) { + var headers = config.headers; + var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); + + // strip content-type if data is undefined + if (isUndefined(reqData)) { + forEach(headers, function(value, header) { + if (lowercase(header) === 'content-type') { + delete headers[header]; + } + }); + } + + if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { + config.withCredentials = defaults.withCredentials; + } + + // send request + return sendReq(config, reqData).then(transformResponse, transformResponse); + }; + + var chain = [serverRequest, undefined]; var promise = $q.when(config); // apply interceptors forEach(reversedInterceptors, function(interceptor) { if (interceptor.request || interceptor.requestError) { - requestInterceptors.unshift(interceptor.request, interceptor.requestError); + chain.unshift(interceptor.request, interceptor.requestError); } if (interceptor.response || interceptor.responseError) { - responseInterceptors.push(interceptor.response, interceptor.responseError); + chain.push(interceptor.response, interceptor.responseError); } }); - promise = chainInterceptors(promise, requestInterceptors); - promise = promise.then(serverRequest); - promise = chainInterceptors(promise, responseInterceptors); + while (chain.length) { + var thenFn = chain.shift(); + var rejectFn = chain.shift(); + + promise = promise.then(thenFn, rejectFn); + } if (useLegacyPromise) { promise.success = function(fn) { @@ -34080,18 +34450,14 @@ function $HttpProvider() { return promise; - - function chainInterceptors(promise, interceptors) { - for (var i = 0, ii = interceptors.length; i < ii;) { - var thenFn = interceptors[i++]; - var rejectFn = interceptors[i++]; - - promise = promise.then(thenFn, rejectFn); - } - - interceptors.length = 0; - - return promise; + function transformResponse(response) { + // make a copy since the response must be cacheable + var resp = extend({}, response); + resp.data = transformData(response.data, response.headers, response.status, + config.transformResponse); + return (isSuccess(response.status)) + ? resp + : $q.reject(resp); } function executeHeaderFns(headers, config) { @@ -34135,37 +34501,6 @@ function $HttpProvider() { // execute if header value is a function for merged headers return executeHeaderFns(reqHeaders, shallowCopy(config)); } - - function serverRequest(config) { - var headers = config.headers; - var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); - - // strip content-type if data is undefined - if (isUndefined(reqData)) { - forEach(headers, function(value, header) { - if (lowercase(header) === 'content-type') { - delete headers[header]; - } - }); - } - - if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { - config.withCredentials = defaults.withCredentials; - } - - // send request - return sendReq(config, reqData).then(transformResponse, transformResponse); - } - - function transformResponse(response) { - // make a copy since the response must be cacheable - var resp = extend({}, response); - resp.data = transformData(response.data, response.headers, response.status, - config.transformResponse); - return (isSuccess(response.status)) - ? resp - : $q.reject(resp); - } } $http.pendingRequests = []; @@ -34212,8 +34547,6 @@ function $HttpProvider() { * * @description * Shortcut method to perform `JSONP` request. - * If you would like to customise where and how the callbacks are stored then try overriding - * or decorating the {@link $jsonpCallbacks} service. * * @param {string} url Relative or absolute URL specifying the destination of the request. * The name of the callback should be the string `JSON_CALLBACK`. @@ -34487,7 +34820,7 @@ function $xhrFactoryProvider() { /** * @ngdoc service * @name $httpBackend - * @requires $jsonpCallbacks + * @requires $window * @requires $document * @requires $xhrFactory * @@ -34502,8 +34835,8 @@ function $xhrFactoryProvider() { * $httpBackend} which can be trained with responses. */ function $HttpBackendProvider() { - this.$get = ['$browser', '$jsonpCallbacks', '$document', '$xhrFactory', function($browser, $jsonpCallbacks, $document, $xhrFactory) { - return createHttpBackend($browser, $xhrFactory, $browser.defer, $jsonpCallbacks, $document[0]); + this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) { + return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]); }]; } @@ -34513,13 +34846,17 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc $browser.$$incOutstandingRequestCount(); url = url || $browser.url(); - if (lowercase(method) === 'jsonp') { - var callbackPath = callbacks.createCallback(url); - var jsonpDone = jsonpReq(url, callbackPath, function(status, text) { - // jsonpReq only ever sets status to 200 (OK), 404 (ERROR) or -1 (WAITING) - var response = (status === 200) && callbacks.getResponse(callbackPath); - completeRequest(callback, status, response, "", text); - callbacks.removeCallback(callbackPath); + if (lowercase(method) == 'jsonp') { + var callbackId = '_' + (callbacks.counter++).toString(36); + callbacks[callbackId] = function(data) { + callbacks[callbackId].data = data; + callbacks[callbackId].called = true; + }; + + var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), + callbackId, function(status, text) { + completeRequest(callback, status, callbacks[callbackId].data, "", text); + callbacks[callbackId] = noop; }); } else { @@ -34621,8 +34958,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc } }; - function jsonpReq(url, callbackPath, done) { - url = url.replace('JSON_CALLBACK', callbackPath); + function jsonpReq(url, callbackId, done) { // we can't use jQuery/jqLite here because jQuery does crazy stuff with script elements, e.g.: // - fetches local scripts via XHR and evals them // - adds and immediately removes script elements from the document @@ -34640,7 +34976,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc var text = "unknown"; if (event) { - if (event.type === "load" && !callbacks.wasCalled(callbackPath)) { + if (event.type === "load" && !callbacks[callbackId].called) { event = { type: "error" }; } text = event.type; @@ -34839,7 +35175,7 @@ function $InterpolateProvider() { * * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior. * - * #### Escaped Interpolation + * ####Escaped Interpolation * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash). * It will be rendered as a regular start/end marker, and will not be interpreted as an expression @@ -35262,87 +35598,6 @@ function $IntervalProvider() { }]; } -/** - * @ngdoc service - * @name $jsonpCallbacks - * @requires $window - * @description - * This service handles the lifecycle of callbacks to handle JSONP requests. - * Override this service if you wish to customise where the callbacks are stored and - * how they vary compared to the requested url. - */ -var $jsonpCallbacksProvider = function() { - this.$get = ['$window', function($window) { - var callbacks = $window.angular.callbacks; - var callbackMap = {}; - - function createCallback(callbackId) { - var callback = function(data) { - callback.data = data; - callback.called = true; - }; - callback.id = callbackId; - return callback; - } - - return { - /** - * @ngdoc method - * @name $jsonpCallbacks#createCallback - * @param {string} url the url of the JSONP request - * @returns {string} the callback path to send to the server as part of the JSONP request - * @description - * {@link $httpBackend} calls this method to create a callback and get hold of the path to the callback - * to pass to the server, which will be used to call the callback with its payload in the JSONP response. - */ - createCallback: function(url) { - var callbackId = '_' + (callbacks.$$counter++).toString(36); - var callbackPath = 'angular.callbacks.' + callbackId; - var callback = createCallback(callbackId); - callbackMap[callbackPath] = callbacks[callbackId] = callback; - return callbackPath; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#wasCalled - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {boolean} whether the callback has been called, as a result of the JSONP response - * @description - * {@link $httpBackend} calls this method to find out whether the JSONP response actually called the - * callback that was passed in the request. - */ - wasCalled: function(callbackPath) { - return callbackMap[callbackPath].called; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#getResponse - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {*} the data received from the response via the registered callback - * @description - * {@link $httpBackend} calls this method to get hold of the data that was provided to the callback - * in the JSONP response. - */ - getResponse: function(callbackPath) { - return callbackMap[callbackPath].data; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#removeCallback - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @description - * {@link $httpBackend} calls this method to remove the callback after the JSONP request has - * completed or timed-out. - */ - removeCallback: function(callbackPath) { - var callback = callbackMap[callbackPath]; - delete callbacks[callback.id]; - delete callbackMap[callbackPath]; - } - }; - }]; -}; - /** * @ngdoc service * @name $locale @@ -35682,12 +35937,6 @@ function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) { var locationPrototype = { - /** - * Ensure absolute url is initialized. - * @private - */ - $$absUrl:'', - /** * Are we in html5 mode? * @private @@ -37061,7 +37310,7 @@ AST.prototype = { var args = []; if (this.peekToken().text !== ')') { do { - args.push(this.filterChain()); + args.push(this.expression()); } while (this.expect(',')); } return args; @@ -38788,7 +39037,7 @@ function $ParseProvider() { * * **Methods** * - * - `then(successCallback, [errorCallback], [notifyCallback])` – regardless of when the promise was or + * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously * as soon as the result is available. The callbacks are called with a single argument: the result * or rejection reason. Additionally, the notify callback may be called zero or more times to @@ -38799,8 +39048,7 @@ function $ParseProvider() { * with the value which is resolved in that promise using * [promise chaining](http://www.html5rocks.com/en/tutorials/es6/promises/#toc-promises-queues)). * It also notifies via the return value of the `notifyCallback` method. The promise cannot be - * resolved or rejected from the notifyCallback method. The errorCallback and notifyCallback - * arguments are optional. + * resolved or rejected from the notifyCallback method. * * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` * @@ -39215,30 +39463,6 @@ function qFactory(nextTick, exceptionHandler) { return deferred.promise; } - /** - * @ngdoc method - * @name $q#race - * @kind function - * - * @description - * Returns a promise that resolves or rejects as soon as one of those promises - * resolves or rejects, with the value or reason from that promise. - * - * @param {Array.|Object.} promises An array or hash of promises. - * @returns {Promise} a promise that resolves or rejects as soon as one of the `promises` - * resolves or rejects, with the value or reason from that promise. - */ - - function race(promises) { - var deferred = defer(); - - forEach(promises, function(promise) { - when(promise).then(deferred.resolve, deferred.reject); - }); - - return deferred.promise; - } - var $Q = function Q(resolver) { if (!isFunction(resolver)) { throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver); @@ -39268,7 +39492,6 @@ function qFactory(nextTick, exceptionHandler) { $Q.when = when; $Q.resolve = resolve; $Q.all = all; - $Q.race = race; return $Q; } @@ -42620,11 +42843,10 @@ function $FilterProvider($provide) { * - `Object`: A pattern object can be used to filter specific properties on objects contained * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items * which have property `name` containing "M" and property `phone` containing "1". A special - * property name (`$` by default) can be used (e.g. as in `{$: "text"}`) to accept a match - * against any property of the object or its nested object properties. That's equivalent to the - * simple substring match with a `string` as described above. The special property name can be - * overwritten, using the `anyPropertyKey` parameter. - * The predicate can be negated by prefixing the string with `!`. + * property name `$` can be used (as in `{$:"text"}`) to accept a match against any + * property of the object or its nested object properties. That's equivalent to the simple + * substring match with a `string` as described above. The predicate can be negated by prefixing + * the string with `!`. * For example `{name: "!M"}` predicate will return an array of items which have property `name` * not containing "M". * @@ -42658,9 +42880,6 @@ function $FilterProvider($provide) { * Primitive values are converted to strings. Objects are not compared against primitives, * unless they have a custom `toString` method (e.g. `Date` objects). * - * @param {string=} anyPropertyKey The special property name that matches against any property. - * By default `$`. - * * @example @@ -42729,9 +42948,8 @@ function $FilterProvider($provide) { */ - function filterFilter() { - return function(array, expression, comparator, anyPropertyKey) { + return function(array, expression, comparator) { if (!isArrayLike(array)) { if (array == null) { return array; @@ -42740,7 +42958,6 @@ function filterFilter() { } } - anyPropertyKey = anyPropertyKey || '$'; var expressionType = getTypeForFilter(expression); var predicateFn; var matchAgainstAnyProp; @@ -42757,7 +42974,7 @@ function filterFilter() { //jshint -W086 case 'object': //jshint +W086 - predicateFn = createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp); + predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp); break; default: return array; @@ -42768,8 +42985,8 @@ function filterFilter() { } // Helper functions for `filterFilter` -function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp) { - var shouldMatchPrimitives = isObject(expression) && (anyPropertyKey in expression); +function createPredicateFn(expression, comparator, matchAgainstAnyProp) { + var shouldMatchPrimitives = isObject(expression) && ('$' in expression); var predicateFn; if (comparator === true) { @@ -42797,25 +43014,25 @@ function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstA predicateFn = function(item) { if (shouldMatchPrimitives && !isObject(item)) { - return deepCompare(item, expression[anyPropertyKey], comparator, anyPropertyKey, false); + return deepCompare(item, expression.$, comparator, false); } - return deepCompare(item, expression, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expression, comparator, matchAgainstAnyProp); }; return predicateFn; } -function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstAnyProp, dontMatchWholeObject) { +function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) { var actualType = getTypeForFilter(actual); var expectedType = getTypeForFilter(expected); if ((expectedType === 'string') && (expected.charAt(0) === '!')) { - return !deepCompare(actual, expected.substring(1), comparator, anyPropertyKey, matchAgainstAnyProp); + return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp); } else if (isArray(actual)) { // In case `actual` is an array, consider it a match // if ANY of it's items matches `expected` return actual.some(function(item) { - return deepCompare(item, expected, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expected, comparator, matchAgainstAnyProp); }); } @@ -42824,11 +43041,11 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA var key; if (matchAgainstAnyProp) { for (key in actual) { - if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, anyPropertyKey, true)) { + if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) { return true; } } - return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, anyPropertyKey, false); + return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false); } else if (expectedType === 'object') { for (key in expected) { var expectedVal = expected[key]; @@ -42836,9 +43053,9 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA continue; } - var matchAnyProperty = key === anyPropertyKey; + var matchAnyProperty = key === '$'; var actualVal = matchAnyProperty ? actual : actual[key]; - if (!deepCompare(actualVal, expectedVal, comparator, anyPropertyKey, matchAnyProperty, matchAnyProperty)) { + if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) { return false; } } @@ -43576,22 +43793,21 @@ var uppercaseFilter = valueFn(uppercase); * @kind function * * @description - * Creates a new array or string containing only a specified number of elements. The elements are - * taken from either the beginning or the end of the source array, string or number, as specified by - * the value and sign (positive or negative) of `limit`. Other array-like objects are also supported - * (e.g. array subclasses, NodeLists, jqLite/jQuery collections etc). If a number is used as input, - * it is converted to a string. - * - * @param {Array|ArrayLike|string|number} input - Array/array-like, string or number to be limited. - * @param {string|number} limit - The length of the returned array or string. If the `limit` number + * Creates a new array or string containing only a specified number of elements. The elements + * are taken from either the beginning or the end of the source array, string or number, as specified by + * the value and sign (positive or negative) of `limit`. If a number is used as input, it is + * converted to a string. + * + * @param {Array|string|number} input Source array, string or number to be limited. + * @param {string|number} limit The length of the returned array or string. If the `limit` number * is positive, `limit` number of items from the beginning of the source array/string are copied. * If the number is negative, `limit` number of items from the end of the source array/string * are copied. The `limit` will be trimmed if it exceeds `array.length`. If `limit` is undefined, * the input will be returned unchanged. - * @param {(string|number)=} begin - Index at which to begin limitation. As a negative index, - * `begin` indicates an offset from the end of `input`. Defaults to `0`. - * @returns {Array|string} A new sub-array or substring of length `limit` or less if the input had - * less than `limit` elements. + * @param {(string|number)=} begin Index at which to begin limitation. As a negative index, `begin` + * indicates an offset from the end of `input`. Defaults to `0`. + * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array + * had less than `limit` elements. * * @example @@ -43679,157 +43895,67 @@ function limitToFilter() { if (isNaN(limit)) return input; if (isNumber(input)) input = input.toString(); - if (!isArrayLike(input)) return input; + if (!isArray(input) && !isString(input)) return input; begin = (!begin || isNaN(begin)) ? 0 : toInt(begin); begin = (begin < 0) ? Math.max(0, input.length + begin) : begin; if (limit >= 0) { - return sliceFn(input, begin, begin + limit); + return input.slice(begin, begin + limit); } else { if (begin === 0) { - return sliceFn(input, limit, input.length); + return input.slice(limit, input.length); } else { - return sliceFn(input, Math.max(0, begin + limit), begin); + return input.slice(Math.max(0, begin + limit), begin); } } }; } -function sliceFn(input, begin, end) { - if (isString(input)) return input.slice(begin, end); - - return slice.call(input, begin, end); -} - /** * @ngdoc filter * @name orderBy * @kind function * * @description - * Returns an array containing the items from the specified `collection`, ordered by a `comparator` - * function based on the values computed using the `expression` predicate. - * - * For example, `[{id: 'foo'}, {id: 'bar'}] | orderBy:'id'` would result in - * `[{id: 'bar'}, {id: 'foo'}]`. - * - * The `collection` can be an Array or array-like object (e.g. NodeList, jQuery object, TypedArray, - * String, etc). + * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically + * for strings and numerically for numbers. Note: if you notice numbers are not being sorted + * as expected, make sure they are actually being saved as numbers and not strings. + * Array-like values (e.g. NodeLists, jQuery objects, TypedArrays, Strings, etc) are also supported. * - * The `expression` can be a single predicate, or a list of predicates each serving as a tie-breaker - * for the preceeding one. The `expression` is evaluated against each item and the output is used - * for comparing with other items. - * - * You can change the sorting order by setting `reverse` to `true`. By default, items are sorted in - * ascending order. - * - * The comparison is done using the `comparator` function. If none is specified, a default, built-in - * comparator is used (see below for details - in a nutshell, it compares numbers numerically and - * strings alphabetically). - * - * ### Under the hood - * - * Ordering the specified `collection` happens in two phases: - * - * 1. All items are passed through the predicate (or predicates), and the returned values are saved - * along with their type (`string`, `number` etc). For example, an item `{label: 'foo'}`, passed - * through a predicate that extracts the value of the `label` property, would be transformed to: - * ``` - * { - * value: 'foo', - * type: 'string', - * index: ... - * } - * ``` - * 2. The comparator function is used to sort the items, based on the derived values, types and - * indices. - * - * If you use a custom comparator, it will be called with pairs of objects of the form - * `{value: ..., type: '...', index: ...}` and is expected to return `0` if the objects are equal - * (as far as the comparator is concerned), `-1` if the 1st one should be ranked higher than the - * second, or `1` otherwise. - * - * In order to ensure that the sorting will be deterministic across platforms, if none of the - * specified predicates can distinguish between two items, `orderBy` will automatically introduce a - * dummy predicate that returns the item's index as `value`. - * (If you are using a custom comparator, make sure it can handle this predicate as well.) - * - * Finally, in an attempt to simplify things, if a predicate returns an object as the extracted - * value for an item, `orderBy` will try to convert that object to a primitive value, before passing - * it to the comparator. The following rules govern the conversion: - * - * 1. If the object has a `valueOf()` method that returns a primitive, its return value will be - * used instead.
- * (If the object has a `valueOf()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 2. If the object has a custom `toString()` method (i.e. not the one inherited from `Object`) that - * returns a primitive, its return value will be used instead.
- * (If the object has a `toString()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 3. No conversion; the object itself is used. - * - * ### The default comparator - * - * The default, built-in comparator should be sufficient for most usecases. In short, it compares - * numbers numerically, strings alphabetically (and case-insensitively), for objects falls back to - * using their index in the original collection, and sorts values of different types by type. - * - * More specifically, it follows these steps to determine the relative order of items: - * - * 1. If the compared values are of different types, compare the types themselves alphabetically. - * 2. If both values are of type `string`, compare them alphabetically in a case- and - * locale-insensitive way. - * 3. If both values are objects, compare their indices instead. - * 4. Otherwise, return: - * - `0`, if the values are equal (by strict equality comparison, i.e. using `===`). - * - `-1`, if the 1st value is "less than" the 2nd value (compared using the `<` operator). - * - `1`, otherwise. - * - * **Note:** If you notice numbers not being sorted as expected, make sure they are actually being - * saved as numbers and not strings. - * - * @param {Array|ArrayLike} collection - The collection (array or array-like object) to sort. - * @param {(Function|string|Array.)=} expression - A predicate (or list of - * predicates) to be used by the comparator to determine the order of elements. + * @param {Array} array The array (or array-like object) to sort. + * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be + * used by the comparator to determine the order of elements. * * Can be one of: * - * - `Function`: A getter function. This function will be called with each item as argument and - * the return value will be used for sorting. - * - `string`: An Angular expression. This expression will be evaluated against each item and the - * result will be used for sorting. For example, use `'label'` to sort by a property called - * `label` or `'label.substring(0, 3)'` to sort by the first 3 characters of the `label` - * property.
- * (The result of a constant expression is interpreted as a property name to be used for - * comparison. For example, use `'"special name"'` (note the extra pair of quotes) to sort by a - * property called `special name`.)
- * An expression can be optionally prefixed with `+` or `-` to control the sorting direction, - * ascending or descending. For example, `'+label'` or `'-label'`. If no property is provided, - * (e.g. `'+'` or `'-'`), the collection element itself is used in comparisons. - * - `Array`: An array of function and/or string predicates. If a predicate cannot determine the - * relative order of two items, the next predicate is used as a tie-breaker. + * - `function`: Getter function. The result of this function will be sorted using the + * `<`, `===`, `>` operator. + * - `string`: An Angular expression. The result of this expression is used to compare elements + * (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by + * 3 first characters of a property called `name`). The result of a constant expression + * is interpreted as a property name to be used in comparisons (for example `"special name"` + * to sort object by the value of their `special name` property). An expression can be + * optionally prefixed with `+` or `-` to control ascending or descending sort order + * (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array + * element itself is used to compare where sorting. + * - `Array`: An array of function or string predicates. The first predicate in the array + * is used for sorting, but when two items are equivalent, the next predicate is used. * - * **Note:** If the predicate is missing or empty then it defaults to `'+'`. + * If the predicate is missing or empty then it defaults to `'+'`. * - * @param {boolean=} reverse - If `true`, reverse the sorting order. - * @param {(Function)=} comparator - The comparator function used to determine the relative order of - * value pairs. If omitted, the built-in comparator will be used. - * - * @returns {Array} - The sorted array. + * @param {boolean=} reverse Reverse the order of the array. + * @returns {Array} Sorted copy of the source array. * * * @example - * ### Ordering a table with `ngRepeat` - * - * The example below demonstrates a simple {@link ngRepeat ngRepeat}, where the data is sorted by - * age in descending order (expression is set to `'-age'`). The `comparator` is not set, which means - * it defaults to the built-in comparator. - * - + * The example below demonstrates a simple ngRepeat, where the data is sorted + * by age in descending order (predicate is set to `'-age'`). + * `reverse` is not set, which means it defaults to `false`. +
- +
@@ -43844,77 +43970,43 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample1', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; }]); - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - - - // Element locators - var names = element.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by age in reverse order', function() { - expect(names.get(0).getText()).toBe('Adam'); - expect(names.get(1).getText()).toBe('Julie'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('John'); - }); - - *
* + * The predicate and reverse parameters can be controlled dynamically through scope properties, + * as shown in the next example. * @example - * ### Changing parameters dynamically - * - * All parameters can be changed dynamically. The next example shows how you can make the columns of - * a table sortable, by binding the `expression` and `reverse` parameters to scope properties. - * - +
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- +
Sorting predicate = {{predicate}}; reverse = {{reverse}}

-
Name Phone Number
+ +
- - - + + + - + @@ -43923,335 +44015,100 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample2', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + $scope.predicate = 'age'; $scope.reverse = true; - $scope.friends = friends; - - $scope.sortBy = function(propertyName) { - $scope.reverse = ($scope.propertyName === propertyName) ? !$scope.reverse : false; - $scope.propertyName = propertyName; + $scope.order = function(predicate) { + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.predicate = predicate; }; }]); - + - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE + content: '\25bc'; } - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - - *
* - * @example - * ### Using `orderBy` inside a controller + * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the + * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the + * desired parameters. * - * It is also possible to call the `orderBy` filter manually, by injecting `orderByFilter`, and - * calling it with the desired parameters. (Alternatively, you could inject the `$filter` factory - * and retrieve the `orderBy` filter with `$filter('orderBy')`.) + * Example: * - - -
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- -
-
- - - - - - - - - + + + + + + + + +
{{friend.name}} {{friend.phone}} {{friend.age}}
- - - - - - - - - - -
- - - - - - - - -
{{friend.name}}{{friend.phone}}{{friend.age}}
-
-
- - angular.module('orderByExample3', []) - .controller('ExampleController', ['$scope', 'orderByFilter', function($scope, orderBy) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; - $scope.reverse = true; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - - $scope.sortBy = function(propertyName) { - $scope.reverse = (propertyName !== null && $scope.propertyName === propertyName) - ? !$scope.reverse : false; - $scope.propertyName = propertyName; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - }; - }]); - - - .friends { - border-collapse: collapse; - } + * @example + + +
+
Sorting predicate = {{predicate}}; reverse = {{reverse}}
+ + + + + + + + + + + +
+ + + + + + + + +
{{friend.name}}{{friend.phone}}{{friend.age}}
+
+
- .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) { + var orderBy = $filter('orderBy'); + $scope.friends = [ + { name: 'John', phone: '555-1212', age: 10 }, + { name: 'Mary', phone: '555-9876', age: 19 }, + { name: 'Mike', phone: '555-4321', age: 21 }, + { name: 'Adam', phone: '555-5678', age: 35 }, + { name: 'Julie', phone: '555-8765', age: 29 } + ]; + $scope.order = function(predicate) { + $scope.predicate = predicate; + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.friends = orderBy($scope.friends, predicate, $scope.reverse); + }; + $scope.order('age', true); + }]); + + .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE - } - - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - -
- *
- * - * @example - * ### Using a custom comparator - * - * If you have very specific requirements about the way items are sorted, you can pass your own - * comparator function. For example, you might need to compare some strings in a locale-sensitive - * way. (When specifying a custom comparator, you also need to pass a value for the `reverse` - * argument - passing `false` retains the default sorting order, i.e. ascending.) - * - - -
-
-

Locale-sensitive Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-

Default Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-
- - angular.module('orderByExample4', []) - .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', favoriteLetter: 'Ä'}, - {name: 'Mary', favoriteLetter: 'Ü'}, - {name: 'Mike', favoriteLetter: 'Ö'}, - {name: 'Adam', favoriteLetter: 'H'}, - {name: 'Julie', favoriteLetter: 'Z'} - ]; - - $scope.localeSensitiveComparator = function(v1, v2) { - // If we don't get strings, just compare by index - if (v1.type !== 'string' || v2.type !== 'string') { - return (v1.index < v2.index) ? -1 : 1; - } - - // Compare strings alphabetically, taking locale into account - return v1.value.localeCompare(v2.value); - }; - }]); - - - .friends-container { - display: inline-block; - margin: 0 30px; - } - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; + content: '\25bc'; } - - - // Element locators - var container = element(by.css('.custom-comparator')); - var names = container.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by favorite letter (in correct alphabetical order)', function() { - expect(names.get(0).getText()).toBe('John'); - expect(names.get(1).getText()).toBe('Adam'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('Julie'); - }); - -
- * +
+
*/ orderByFilter.$inject = ['$parse']; function orderByFilter($parse) { - return function(array, sortPredicate, reverseOrder, compareFn) { + return function(array, sortPredicate, reverseOrder) { if (array == null) return array; if (!isArrayLike(array)) { @@ -44261,12 +44118,11 @@ function orderByFilter($parse) { if (!isArray(sortPredicate)) { sortPredicate = [sortPredicate]; } if (sortPredicate.length === 0) { sortPredicate = ['+']; } - var predicates = processPredicates(sortPredicate); - - var descending = reverseOrder ? -1 : 1; - - // Define the `compare()` function. Use a default comparator if none is specified. - var compare = isFunction(compareFn) ? compareFn : defaultCompare; + var predicates = processPredicates(sortPredicate, reverseOrder); + // Add a predicate at the end that evaluates to the element index. This makes the + // sort stable as it works as a tie-breaker when all the input predicates cannot + // distinguish between two elements. + predicates.push({ get: function() { return {}; }, descending: reverseOrder ? -1 : 1}); // The next three lines are a version of a Swartzian Transform idiom from Perl // (sometimes called the Decorate-Sort-Undecorate idiom) @@ -44278,12 +44134,8 @@ function orderByFilter($parse) { return array; function getComparisonObject(value, index) { - // NOTE: We are adding an extra `tieBreaker` value based on the element's index. - // This will be used to keep the sort stable when none of the input predicates can - // distinguish between two elements. return { value: value, - tieBreaker: {value: index, type: 'number', index: index}, predicateValues: predicates.map(function(predicate) { return getPredicateValue(predicate.get(value), index); }) @@ -44291,19 +44143,18 @@ function orderByFilter($parse) { } function doComparison(v1, v2) { - for (var i = 0, ii = predicates.length; i < ii; i++) { - var result = compare(v1.predicateValues[i], v2.predicateValues[i]); - if (result) { - return result * predicates[i].descending * descending; - } + var result = 0; + for (var index=0, length = predicates.length; index < length; ++index) { + result = compare(v1.predicateValues[index], v2.predicateValues[index]) * predicates[index].descending; + if (result) break; } - - return compare(v1.tieBreaker, v2.tieBreaker) * descending; + return result; } }; - function processPredicates(sortPredicates) { - return sortPredicates.map(function(predicate) { + function processPredicates(sortPredicate, reverseOrder) { + reverseOrder = reverseOrder ? -1 : 1; + return sortPredicate.map(function(predicate) { var descending = 1, get = identity; if (isFunction(predicate)) { @@ -44321,7 +44172,7 @@ function orderByFilter($parse) { } } } - return {get: get, descending: descending}; + return { get: get, descending: descending * reverseOrder }; }); } @@ -44336,9 +44187,9 @@ function orderByFilter($parse) { } } - function objectValue(value) { + function objectValue(value, index) { // If `valueOf` is a valid function use that - if (isFunction(value.valueOf)) { + if (typeof value.valueOf === 'function') { value = value.valueOf(); if (isPrimitive(value)) return value; } @@ -44347,8 +44198,8 @@ function orderByFilter($parse) { value = value.toString(); if (isPrimitive(value)) return value; } - - return value; + // We have a basic object so we use the position of the object in the collection + return index; } function getPredicateValue(value, index) { @@ -44356,39 +44207,23 @@ function orderByFilter($parse) { if (value === null) { type = 'string'; value = 'null'; + } else if (type === 'string') { + value = value.toLowerCase(); } else if (type === 'object') { - value = objectValue(value); + value = objectValue(value, index); } - return {value: value, type: type, index: index}; + return { value: value, type: type }; } - function defaultCompare(v1, v2) { + function compare(v1, v2) { var result = 0; - var type1 = v1.type; - var type2 = v2.type; - - if (type1 === type2) { - var value1 = v1.value; - var value2 = v2.value; - - if (type1 === 'string') { - // Compare strings case-insensitively - value1 = value1.toLowerCase(); - value2 = value2.toLowerCase(); - } else if (type1 === 'object') { - // For basic objects, use the position of the object - // in the collection instead of the value - if (isObject(value1)) value1 = v1.index; - if (isObject(value2)) value2 = v2.index; - } - - if (value1 !== value2) { - result = value1 < value2 ? -1 : 1; + if (v1.type === v2.type) { + if (v1.value !== v2.value) { + result = v1.value < v2.value ? -1 : 1; } } else { - result = type1 < type2 ? -1 : 1; + result = v1.type < v2.type ? -1 : 1; } - return result; } } @@ -44668,11 +44503,9 @@ var htmlAnchorDirective = valueFn({ * * @description * - * Sets the `readonly` attribute on the element, if the expression inside `ngReadonly` is truthy. - * Note that `readonly` applies only to `input` elements with specific types. [See the input docs on - * MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly) for more information. + * Sets the `readOnly` attribute on the element, if the expression inside `ngReadonly` is truthy. * - * A special directive is necessary because we cannot use interpolation inside the `readonly` + * A special directive is necessary because we cannot use interpolation inside the `readOnly` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * * @example @@ -44709,13 +44542,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `selected` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - *
- * **Note:** `ngSelected` does not interact with the `select` and `ngModel` directives, it only - * sets the `selected` attribute on the element. If you are using `ngModel` on the select, you - * should not use `ngSelected` on the options, as `ngModel` will set the select value and - * selected options. - *
- * * @example @@ -44752,11 +44578,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `open` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - * ## A note about browser compatibility - * - * Edge, Firefox, and Internet Explorer do not support the `details` element, it is - * recommended to use {@link ng.ngShow} and {@link ng.ngHide} instead. - * * @example @@ -45447,9 +45268,7 @@ var ISO_DATE_REGEXP = /^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+- // 9. Fragment // 1111111111111111 222 333333 44444 555555555555555555555555 666 77777777 8888888 999 var URL_REGEXP = /^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i; -/* jshint maxlen:220 */ -var EMAIL_REGEXP = /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/; -/* jshint maxlen:200 */ +var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4,})-(\d{2})-(\d{2})$/; var DATETIMELOCAL_REGEXP = /^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; @@ -46834,7 +46653,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('min', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } minVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -46850,7 +46669,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('max', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } maxVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -47657,11 +47476,6 @@ function classDirective(name, selector) { * When the expression changes, the previously added classes are removed and only then are the * new classes added. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `class` - * attribute, when using the `ngClass` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @animations * | Animation | Occurs | * |----------------------------------|-------------------------------------| @@ -51607,7 +51421,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, for (var i = options.items.length - 1; i >= 0; i--) { var option = options.items[i]; - if (isDefined(option.group)) { + if (option.group) { jqLiteRemove(option.element.parentNode); } else { jqLiteRemove(option.element); @@ -51639,8 +51453,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, listFragment.appendChild(groupElement); // Update the label on the group element - // "null" is special cased because of Safari - groupElement.label = option.group === null ? 'null' : option.group; + groupElement.label = option.group; // Store it for use later groupElementMap[option.group] = groupElement; @@ -51976,7 +51789,7 @@ var ngPluralizeDirective = ['$locale', '$interpolate', '$log', function($locale, * it's a prefix used by Angular for public (`$`) and private (`$$`) properties. * * - The built-in filters {@link ng.orderBy orderBy} and {@link ng.filter filter} do not work with - * objects, and will throw an error if used with one. + * objects, and will throw if used with one. * * If you are hitting any of these limitations, the recommended workaround is to convert your object into an array * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could @@ -52825,11 +52638,6 @@ var ngHideDirective = ['$animate', function($animate) { * @description * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `style` - * attribute, when using the `ngStyle` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @element ANY * @param {expression} ngStyle * @@ -53241,63 +53049,37 @@ var ngSwitchDefaultDirective = ngDirective({ * */ var ngTranscludeMinErr = minErr('ngTransclude'); -var ngTranscludeDirective = ['$compile', function($compile) { - return { - restrict: 'EAC', - terminal: true, - compile: function ngTranscludeCompile(tElement) { - - // Remove and cache any original content to act as a fallback - var fallbackLinkFn = $compile(tElement.contents()); - tElement.empty(); - - return function ngTranscludePostLink($scope, $element, $attrs, controller, $transclude) { - - if (!$transclude) { - throw ngTranscludeMinErr('orphan', - 'Illegal use of ngTransclude directive in the template! ' + - 'No parent directive that requires a transclusion found. ' + - 'Element: {0}', - startingTag($element)); - } - - - // If the attribute is of the form: `ng-transclude="ng-transclude"` then treat it like the default - if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { - $attrs.ngTransclude = ''; - } - var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; +var ngTranscludeDirective = ngDirective({ + restrict: 'EAC', + link: function($scope, $element, $attrs, controller, $transclude) { - // If the slot is required and no transclusion content is provided then this call will throw an error - $transclude(ngTranscludeCloneAttachFn, null, slotName); - - // If the slot is optional and no transclusion content is provided then use the fallback content - if (slotName && !$transclude.isSlotFilled(slotName)) { - useFallbackContent(); - } + if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { + // If the attribute is of the form: `ng-transclude="ng-transclude"` + // then treat it like the default + $attrs.ngTransclude = ''; + } - function ngTranscludeCloneAttachFn(clone, transcludedScope) { - if (clone.length) { - $element.append(clone); - } else { - useFallbackContent(); - // There is nothing linked against the transcluded scope since no content was available, - // so it should be safe to clean up the generated scope. - transcludedScope.$destroy(); - } - } + function ngTranscludeCloneAttachFn(clone) { + if (clone.length) { + $element.empty(); + $element.append(clone); + } + } - function useFallbackContent() { - // Since this is the fallback content rather than the transcluded content, - // we link against the scope of this directive rather than the transcluded scope - fallbackLinkFn($scope, function(clone) { - $element.append(clone); - }); - } - }; + if (!$transclude) { + throw ngTranscludeMinErr('orphan', + 'Illegal use of ngTransclude directive in the template! ' + + 'No parent directive that requires a transclusion found. ' + + 'Element: {0}', + startingTag($element)); } - }; -}]; + + // If there is no slot name defined or the slot name is not optional + // then transclude the slot + var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; + $transclude(ngTranscludeCloneAttachFn, null, slotName); + } +}); /** * @ngdoc directive @@ -54352,11 +54134,11 @@ $provide.value("$locale", { })(window); !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],71:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ require('./angular'); module.exports = angular; -},{"./angular":70}],72:[function(require,module,exports){ +},{"./angular":71}],73:[function(require,module,exports){ var asn1 = exports; asn1.bignum = require('bn.js'); @@ -54367,7 +54149,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":73,"./asn1/base":75,"./asn1/constants":79,"./asn1/decoders":81,"./asn1/encoders":84,"bn.js":91}],73:[function(require,module,exports){ +},{"./asn1/api":74,"./asn1/base":76,"./asn1/constants":80,"./asn1/decoders":82,"./asn1/encoders":85,"bn.js":92}],74:[function(require,module,exports){ var asn1 = require('../asn1'); var inherits = require('inherits'); @@ -54430,7 +54212,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":72,"inherits":465,"vm":521}],74:[function(require,module,exports){ +},{"../asn1":73,"inherits":467,"vm":523}],75:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -54548,7 +54330,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":75,"buffer":121,"inherits":465}],75:[function(require,module,exports){ +},{"../base":76,"buffer":122,"inherits":467}],76:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -54556,7 +54338,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":74,"./node":76,"./reporter":77}],76:[function(require,module,exports){ +},{"./buffer":75,"./node":77,"./reporter":78}],77:[function(require,module,exports){ var Reporter = require('../base').Reporter; var EncoderBuffer = require('../base').EncoderBuffer; var DecoderBuffer = require('../base').DecoderBuffer; @@ -54622,7 +54404,7 @@ module.exports = Node; var stateProps = [ 'enc', 'parent', 'children', 'tag', 'args', 'reverseArgs', 'choice', 'optional', 'any', 'obj', 'use', 'alteredUse', 'key', 'default', 'explicit', - 'implicit', 'contains' + 'implicit' ]; Node.prototype.clone = function clone() { @@ -54827,17 +54609,17 @@ Node.prototype.contains = function contains(item) { // Decoding // -Node.prototype._decode = function decode(input, options) { +Node.prototype._decode = function decode(input) { var state = this._baseState; // Decode root node if (state.parent === null) - return input.wrapResult(state.children[0]._decode(input, options)); + return input.wrapResult(state.children[0]._decode(input)); var result = state['default']; var present = true; - var prevKey = null; + var prevKey; if (state.key !== null) prevKey = input.enterKey(state.key); @@ -54856,9 +54638,9 @@ Node.prototype._decode = function decode(input, options) { var save = input.save(); try { if (state.choice === null) - this._decodeGeneric(state.tag, input, options); + this._decodeGeneric(state.tag, input); else - this._decodeChoice(input, options); + this._decodeChoice(input); present = true; } catch (e) { present = false; @@ -54886,8 +54668,6 @@ Node.prototype._decode = function decode(input, options) { input = explicit; } - var start = input.offset; - // Unwrap implicit and normal values if (state.use === null && state.choice === null) { if (state.any) @@ -54906,19 +54686,13 @@ Node.prototype._decode = function decode(input, options) { input = body; } - if (options && options.track && state.tag !== null) - options.track(input.path(), start, input.length, 'tagged'); - - if (options && options.track && state.tag !== null) - options.track(input.path(), input.offset, input.length, 'content'); - // Select proper method for tag if (state.any) result = result; else if (state.choice === null) - result = this._decodeGeneric(state.tag, input, options); + result = this._decodeGeneric(state.tag, input); else - result = this._decodeChoice(input, options); + result = this._decodeChoice(input); if (input.isError(result)) return result; @@ -54928,15 +54702,14 @@ Node.prototype._decode = function decode(input, options) { state.children.forEach(function decodeChildren(child) { // NOTE: We are ignoring errors here, to let parser continue with other // parts of encoded data - child._decode(input, options); + child._decode(input); }); } // Decode contained/encoded by schema, only in bit or octet strings if (state.contains && (state.tag === 'octstr' || state.tag === 'bitstr')) { var data = new DecoderBuffer(result); - result = this._getUse(state.contains, input._reporterState.obj) - ._decode(data, options); + result = this._getUse(state.contains, input._reporterState.obj)._decode(data); } } @@ -54947,40 +54720,35 @@ Node.prototype._decode = function decode(input, options) { // Set key if (state.key !== null && (result !== null || present === true)) input.leaveKey(prevKey, state.key, result); - else if (prevKey !== null) - input.exitKey(prevKey); return result; }; -Node.prototype._decodeGeneric = function decodeGeneric(tag, input, options) { +Node.prototype._decodeGeneric = function decodeGeneric(tag, input) { var state = this._baseState; if (tag === 'seq' || tag === 'set') return null; if (tag === 'seqof' || tag === 'setof') - return this._decodeList(input, tag, state.args[0], options); + return this._decodeList(input, tag, state.args[0]); else if (/str$/.test(tag)) - return this._decodeStr(input, tag, options); + return this._decodeStr(input, tag); else if (tag === 'objid' && state.args) - return this._decodeObjid(input, state.args[0], state.args[1], options); + return this._decodeObjid(input, state.args[0], state.args[1]); else if (tag === 'objid') - return this._decodeObjid(input, null, null, options); + return this._decodeObjid(input, null, null); else if (tag === 'gentime' || tag === 'utctime') - return this._decodeTime(input, tag, options); + return this._decodeTime(input, tag); else if (tag === 'null_') - return this._decodeNull(input, options); + return this._decodeNull(input); else if (tag === 'bool') - return this._decodeBool(input, options); + return this._decodeBool(input); else if (tag === 'int' || tag === 'enum') - return this._decodeInt(input, state.args && state.args[0], options); - - if (state.use !== null) { - return this._getUse(state.use, input._reporterState.obj) - ._decode(input, options); - } else { + return this._decodeInt(input, state.args && state.args[0]); + else if (state.use !== null) + return this._getUse(state.use, input._reporterState.obj)._decode(input); + else return input.error('unknown tag: ' + tag); - } }; Node.prototype._getUse = function _getUse(entity, obj) { @@ -54997,7 +54765,7 @@ Node.prototype._getUse = function _getUse(entity, obj) { return state.useDecoder; }; -Node.prototype._decodeChoice = function decodeChoice(input, options) { +Node.prototype._decodeChoice = function decodeChoice(input) { var state = this._baseState; var result = null; var match = false; @@ -55006,7 +54774,7 @@ Node.prototype._decodeChoice = function decodeChoice(input, options) { var save = input.save(); var node = state.choice[key]; try { - var value = node._decode(input, options); + var value = node._decode(input); if (input.isError(value)) return false; @@ -55187,7 +54955,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":75,"minimalistic-assert":472}],77:[function(require,module,exports){ +},{"../base":76,"minimalistic-assert":474}],78:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -55221,24 +54989,14 @@ Reporter.prototype.enterKey = function enterKey(key) { return this._reporterState.path.push(key); }; -Reporter.prototype.exitKey = function exitKey(index) { - var state = this._reporterState; - - state.path = state.path.slice(0, index - 1); -}; - Reporter.prototype.leaveKey = function leaveKey(index, key, value) { var state = this._reporterState; - this.exitKey(index); + state.path = state.path.slice(0, index - 1); if (state.obj !== null) state.obj[key] = value; }; -Reporter.prototype.path = function path() { - return this._reporterState.path.join('/'); -}; - Reporter.prototype.enterObject = function enterObject() { var state = this._reporterState; @@ -55310,7 +55068,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":465}],78:[function(require,module,exports){ +},{"inherits":467}],79:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -55354,7 +55112,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":79}],79:[function(require,module,exports){ +},{"../constants":80}],80:[function(require,module,exports){ var constants = exports; // Helper @@ -55375,7 +55133,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":78}],80:[function(require,module,exports){ +},{"./der":79}],81:[function(require,module,exports){ var inherits = require('inherits'); var asn1 = require('../../asn1'); @@ -55486,15 +55244,14 @@ DERNode.prototype._skipUntilEnd = function skipUntilEnd(buffer, fail) { } }; -DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder, - options) { +DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder) { var result = []; while (!buffer.isEmpty()) { var possibleEnd = this._peekTag(buffer, 'end'); if (buffer.isError(possibleEnd)) return possibleEnd; - var res = decoder.decode(buffer, 'der', options); + var res = decoder.decode(buffer, 'der'); if (buffer.isError(res) && possibleEnd) break; result.push(res); @@ -55699,13 +55456,13 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":72,"inherits":465}],81:[function(require,module,exports){ +},{"../../asn1":73,"inherits":467}],82:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":80,"./pem":82}],82:[function(require,module,exports){ +},{"./der":81,"./pem":83}],83:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -55756,7 +55513,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":80,"buffer":121,"inherits":465}],83:[function(require,module,exports){ +},{"./der":81,"buffer":122,"inherits":467}],84:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -56051,13 +55808,13 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":72,"buffer":121,"inherits":465}],84:[function(require,module,exports){ +},{"../../asn1":73,"buffer":122,"inherits":467}],85:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":83,"./pem":85}],85:[function(require,module,exports){ +},{"./der":84,"./pem":86}],86:[function(require,module,exports){ var inherits = require('inherits'); var DEREncoder = require('./der'); @@ -56080,7 +55837,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":83,"inherits":465}],86:[function(require,module,exports){ +},{"./der":84,"inherits":467}],87:[function(require,module,exports){ // http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8! @@ -56441,7 +56198,7 @@ var objectKeys = Object.keys || function (obj) { return keys; }; -},{"util/":518}],87:[function(require,module,exports){ +},{"util/":520}],88:[function(require,module,exports){ (function (global){ "use strict"; @@ -56476,7 +56233,7 @@ define(String.prototype, "padRight", "".padEnd); [][key] && define(Array, key, Function.call.bind([][key])); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":123,"core-js/shim":416,"regenerator-runtime/runtime":497}],88:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":124,"core-js/shim":418,"regenerator-runtime/runtime":499}],89:[function(require,module,exports){ 'use strict' exports.toByteArray = toByteArray @@ -56587,14 +56344,14 @@ function fromByteArray (uint8) { return parts.join('') } -},{}],89:[function(require,module,exports){ -/*! bignumber.js v2.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ +},{}],90:[function(require,module,exports){ +/*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ ;(function (globalObj) { 'use strict'; /* - bignumber.js v2.4.0 + bignumber.js v2.3.0 A JavaScript library for arbitrary-precision arithmetic. https://github.com/MikeMcl/bignumber.js Copyright (c) 2016 Michael Mclaughlin @@ -56602,7 +56359,7 @@ function fromByteArray (uint8) { */ - var BigNumber, cryptoObj, parseNumeric, + var cryptoObj, parseNumeric, isNumeric = /^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, mathceil = Math.ceil, mathfloor = Math.floor, @@ -59304,17 +59061,13 @@ function fromByteArray (uint8) { // EXPORT - BigNumber = constructorFactory(); - BigNumber.default = BigNumber.BigNumber = BigNumber; - - - // AMD. + // AMD. if ( typeof define == 'function' && define.amd ) { - define( function () { return BigNumber; } ); + define( function () { return constructorFactory(); } ); // Node.js and other environments that support module.exports. } else if ( typeof module != 'undefined' && module.exports ) { - module.exports = BigNumber; + module.exports = constructorFactory(); // Split string stops browserify adding crypto shim. if ( !cryptoObj ) try { cryptoObj = require('cry' + 'pto'); } catch (e) {} @@ -59322,11 +59075,11 @@ function fromByteArray (uint8) { // Browser. } else { if ( !globalObj ) globalObj = typeof self != 'undefined' ? self : Function('return this')(); - globalObj.BigNumber = BigNumber; + globalObj.BigNumber = constructorFactory(); } })(this); -},{}],90:[function(require,module,exports){ +},{}],91:[function(require,module,exports){ (function (Buffer){ // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] @@ -59441,7 +59194,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],91:[function(require,module,exports){ +},{"buffer":122}],92:[function(require,module,exports){ (function (module, exports) { 'use strict'; @@ -59499,12 +59252,8 @@ module.exports = { } BN.isBN = function isBN (num) { - if (num instanceof BN) { - return true; - } - return num !== null && typeof num === 'object' && - num.constructor.wordSize === BN.wordSize && Array.isArray(num.words); + num.constructor.name === 'BN' && Array.isArray(num.words); }; BN.max = function max (left, right) { @@ -61545,10 +61294,6 @@ module.exports = { assert(this.negative === 0, 'imaskn works only with positive numbers'); - if (this.length <= s) { - return this; - } - if (r !== 0) { s++; } @@ -62870,7 +62615,7 @@ module.exports = { }; })(typeof module === 'undefined' || module, this); -},{}],92:[function(require,module,exports){ +},{}],93:[function(require,module,exports){ var r; module.exports = function rand(len) { @@ -62929,9 +62674,9 @@ if (typeof window === 'object') { } } -},{}],93:[function(require,module,exports){ - },{}],94:[function(require,module,exports){ + +},{}],95:[function(require,module,exports){ (function (Buffer){ // based on the aes implimentation in triple sec // https://github.com/keybase/triplesec @@ -63112,7 +62857,7 @@ AES.prototype._doCryptBlock = function (M, keySchedule, SUB_MIX, SBOX) { exports.AES = AES }).call(this,require("buffer").Buffer) -},{"buffer":121}],95:[function(require,module,exports){ +},{"buffer":122}],96:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63213,7 +62958,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"./ghash":99,"buffer":121,"buffer-xor":120,"cipher-base":122,"inherits":465}],96:[function(require,module,exports){ +},{"./aes":95,"./ghash":100,"buffer":122,"buffer-xor":121,"cipher-base":123,"inherits":467}],97:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -63226,7 +62971,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"./decrypter":97,"./encrypter":98,"./modes":100}],97:[function(require,module,exports){ +},{"./decrypter":98,"./encrypter":99,"./modes":101}],98:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63367,7 +63112,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],98:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],99:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63493,7 +63238,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],99:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],100:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -63595,7 +63340,7 @@ function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],100:[function(require,module,exports){ +},{"buffer":122}],101:[function(require,module,exports){ exports['aes-128-ecb'] = { cipher: 'AES', key: 128, @@ -63768,7 +63513,7 @@ exports['aes-256-gcm'] = { type: 'auth' } -},{}],101:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ var xor = require('buffer-xor') exports.encrypt = function (self, block) { @@ -63787,7 +63532,7 @@ exports.decrypt = function (self, block) { return xor(out, pad) } -},{"buffer-xor":120}],102:[function(require,module,exports){ +},{"buffer-xor":121}],103:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63822,7 +63567,7 @@ function encryptStart (self, data, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],103:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],104:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad @@ -63860,7 +63605,7 @@ function shiftIn (buffer, value) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],104:[function(require,module,exports){ +},{"buffer":122}],105:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad = self._cipher.encryptBlock(self._prev) @@ -63879,7 +63624,7 @@ exports.encrypt = function (self, chunk, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],105:[function(require,module,exports){ +},{"buffer":122}],106:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63914,7 +63659,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],106:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],107:[function(require,module,exports){ exports.encrypt = function (self, block) { return self._cipher.encryptBlock(block) } @@ -63922,7 +63667,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block) } -},{}],107:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63942,7 +63687,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],108:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],109:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63971,7 +63716,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"buffer":121,"cipher-base":122,"inherits":465}],109:[function(require,module,exports){ +},{"./aes":95,"buffer":122,"cipher-base":123,"inherits":467}],110:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -64046,7 +63791,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"browserify-aes/browser":96,"browserify-aes/modes":100,"browserify-des":110,"browserify-des/modes":111,"evp_bytestokey":456}],110:[function(require,module,exports){ +},{"browserify-aes/browser":97,"browserify-aes/modes":101,"browserify-des":111,"browserify-des/modes":112,"evp_bytestokey":458}],111:[function(require,module,exports){ (function (Buffer){ var CipherBase = require('cipher-base') var des = require('des.js') @@ -64093,7 +63838,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"cipher-base":122,"des.js":424,"inherits":465}],111:[function(require,module,exports){ +},{"buffer":122,"cipher-base":123,"des.js":426,"inherits":467}],112:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -64119,7 +63864,7 @@ exports['des-ede'] = { iv: 0 } -},{}],112:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); var randomBytes = require('randombytes'); @@ -64163,7 +63908,7 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":91,"buffer":121,"randombytes":486}],113:[function(require,module,exports){ +},{"bn.js":92,"buffer":122,"randombytes":488}],114:[function(require,module,exports){ (function (Buffer){ const Sha3 = require('js-sha3') @@ -64201,7 +63946,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"js-sha3":468}],114:[function(require,module,exports){ +},{"buffer":122,"js-sha3":470}],115:[function(require,module,exports){ (function (Buffer){ 'use strict' exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { @@ -64277,7 +64022,7 @@ exports['RSA-MD5'] = exports.md5WithRSAEncryption = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],115:[function(require,module,exports){ +},{"buffer":122}],116:[function(require,module,exports){ (function (Buffer){ var _algos = require('./algos') var createHash = require('create-hash') @@ -64384,7 +64129,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":114,"./sign":117,"./verify":118,"buffer":121,"create-hash":419,"inherits":465,"stream":514}],116:[function(require,module,exports){ +},{"./algos":115,"./sign":118,"./verify":119,"buffer":122,"create-hash":421,"inherits":467,"stream":516}],117:[function(require,module,exports){ 'use strict' exports['1.3.132.0.10'] = 'secp256k1' @@ -64398,7 +64143,7 @@ exports['1.3.132.0.34'] = 'p384' exports['1.3.132.0.35'] = 'p521' -},{}],117:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') @@ -64587,7 +64332,7 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"browserify-rsa":112,"buffer":121,"create-hmac":422,"elliptic":434,"parse-asn1":476}],118:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"browserify-rsa":113,"buffer":122,"create-hmac":424,"elliptic":436,"parse-asn1":478}],119:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var curves = require('./curves') @@ -64694,7 +64439,7 @@ function checkValue (b, q) { module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"buffer":121,"elliptic":434,"parse-asn1":476}],119:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"buffer":122,"elliptic":436,"parse-asn1":478}],120:[function(require,module,exports){ (function (global){ 'use strict'; @@ -64806,7 +64551,7 @@ exports.allocUnsafeSlow = function allocUnsafeSlow(size) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":121}],120:[function(require,module,exports){ +},{"buffer":122}],121:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -64820,7 +64565,7 @@ module.exports = function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],121:[function(require,module,exports){ +},{"buffer":122}],122:[function(require,module,exports){ (function (global){ /*! * The buffer module from node.js, for the browser. @@ -64876,7 +64621,7 @@ exports.kMaxLength = kMaxLength() function typedArraySupport () { try { var arr = new Uint8Array(1) - arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }} + arr.foo = function () { return 42 } return arr.foo() === 42 && // typed array instances can be augmented typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` @@ -65020,7 +64765,7 @@ function allocUnsafe (that, size) { assertSize(size) that = createBuffer(that, size < 0 ? 0 : checked(size) | 0) if (!Buffer.TYPED_ARRAY_SUPPORT) { - for (var i = 0; i < size; ++i) { + for (var i = 0; i < size; i++) { that[i] = 0 } } @@ -65076,9 +64821,7 @@ function fromArrayBuffer (that, array, byteOffset, length) { throw new RangeError('\'length\' is out of bounds') } - if (byteOffset === undefined && length === undefined) { - array = new Uint8Array(array) - } else if (length === undefined) { + if (length === undefined) { array = new Uint8Array(array, byteOffset) } else { array = new Uint8Array(array, byteOffset, length) @@ -65200,14 +64943,14 @@ Buffer.concat = function concat (list, length) { var i if (length === undefined) { length = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { length += list[i].length } } var buffer = Buffer.allocUnsafe(length) var pos = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { var buf = list[i] if (!Buffer.isBuffer(buf)) { throw new TypeError('"list" argument must be an Array of Buffers') @@ -65239,6 +64982,7 @@ function byteLength (string, encoding) { switch (encoding) { case 'ascii': case 'binary': + // Deprecated case 'raw': case 'raws': return len @@ -65476,16 +65220,15 @@ function arrayIndexOf (arr, val, byteOffset, encoding) { } var foundIndex = -1 - for (var i = byteOffset; i < arrLength; ++i) { - if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + for (var i = 0; byteOffset + i < arrLength; i++) { + if (read(arr, byteOffset + i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { if (foundIndex === -1) foundIndex = i - if (i - foundIndex + 1 === valLength) return foundIndex * indexSize + if (i - foundIndex + 1 === valLength) return (byteOffset + foundIndex) * indexSize } else { if (foundIndex !== -1) i -= i - foundIndex foundIndex = -1 } } - return -1 } @@ -65550,7 +65293,7 @@ function hexWrite (buf, string, offset, length) { if (length > strLen / 2) { length = strLen / 2 } - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { var parsed = parseInt(string.substr(i * 2, 2), 16) if (isNaN(parsed)) return i buf[offset + i] = parsed @@ -65764,7 +65507,7 @@ function asciiSlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i] & 0x7F) } return ret @@ -65774,7 +65517,7 @@ function binarySlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i]) } return ret @@ -65787,7 +65530,7 @@ function hexSlice (buf, start, end) { if (!end || end < 0 || end > len) end = len var out = '' - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { out += toHex(buf[i]) } return out @@ -65830,7 +65573,7 @@ Buffer.prototype.slice = function slice (start, end) { } else { var sliceLen = end - start newBuf = new Buffer(sliceLen, undefined) - for (var i = 0; i < sliceLen; ++i) { + for (var i = 0; i < sliceLen; i++) { newBuf[i] = this[i + start] } } @@ -66057,7 +65800,7 @@ Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { function objectWriteUInt16 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> (littleEndian ? i : 1 - i) * 8 } @@ -66091,7 +65834,7 @@ Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert function objectWriteUInt32 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffffffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff } } @@ -66306,12 +66049,12 @@ Buffer.prototype.copy = function copy (target, targetStart, start, end) { if (this === target && start < targetStart && targetStart < end) { // descending copy from end - for (i = len - 1; i >= 0; --i) { + for (i = len - 1; i >= 0; i--) { target[i + targetStart] = this[i + start] } } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { // ascending copy from start - for (i = 0; i < len; ++i) { + for (i = 0; i < len; i++) { target[i + targetStart] = this[i + start] } } else { @@ -66372,7 +66115,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { var i if (typeof val === 'number') { - for (i = start; i < end; ++i) { + for (i = start; i < end; i++) { this[i] = val } } else { @@ -66380,7 +66123,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { ? val : utf8ToBytes(new Buffer(val, encoding).toString()) var len = bytes.length - for (i = 0; i < end - start; ++i) { + for (i = 0; i < end - start; i++) { this[i + start] = bytes[i % len] } } @@ -66422,7 +66165,7 @@ function utf8ToBytes (string, units) { var leadSurrogate = null var bytes = [] - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { codePoint = string.charCodeAt(i) // is surrogate component @@ -66497,7 +66240,7 @@ function utf8ToBytes (string, units) { function asciiToBytes (str) { var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { // Node's code seems to be doing this and not & 0x7F.. byteArray.push(str.charCodeAt(i) & 0xFF) } @@ -66507,7 +66250,7 @@ function asciiToBytes (str) { function utf16leToBytes (str, units) { var c, hi, lo var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { if ((units -= 2) < 0) break c = str.charCodeAt(i) @@ -66525,7 +66268,7 @@ function base64ToBytes (str) { } function blitBuffer (src, dst, offset, length) { - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { if ((i + offset >= dst.length) || (i >= src.length)) break dst[i + offset] = src[i] } @@ -66537,7 +66280,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":88,"ieee754":463,"isarray":467}],122:[function(require,module,exports){ +},{"base64-js":89,"ieee754":465,"isarray":469}],123:[function(require,module,exports){ (function (Buffer){ var Transform = require('stream').Transform var inherits = require('inherits') @@ -66631,21 +66374,21 @@ CipherBase.prototype._toString = function (value, enc, final) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"inherits":465,"stream":514,"string_decoder":515}],123:[function(require,module,exports){ +},{"buffer":122,"inherits":467,"stream":516,"string_decoder":517}],124:[function(require,module,exports){ require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":144,"../../modules/core.regexp.escape":240}],124:[function(require,module,exports){ +},{"../../modules/_core":145,"../../modules/core.regexp.escape":242}],125:[function(require,module,exports){ module.exports = function(it){ if(typeof it != 'function')throw TypeError(it + ' is not a function!'); return it; }; -},{}],125:[function(require,module,exports){ -var cof = require('./_cof'); -module.exports = function(it, msg){ - if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); - return +it; +},{}],126:[function(require,module,exports){ +var cof = require('./_cof'); +module.exports = function(it, msg){ + if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); + return +it; }; -},{"./_cof":139}],126:[function(require,module,exports){ +},{"./_cof":140}],127:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables') , ArrayProto = Array.prototype; @@ -66653,19 +66396,19 @@ if(ArrayProto[UNSCOPABLES] == undefined)require('./_hide')(ArrayProto, UNSCOPABL module.exports = function(key){ ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":161,"./_wks":238}],127:[function(require,module,exports){ +},{"./_hide":162,"./_wks":239}],128:[function(require,module,exports){ module.exports = function(it, Constructor, name, forbiddenField){ if(!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)){ throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],128:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function(it){ if(!isObject(it))throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":170}],129:[function(require,module,exports){ +},{"./_is-object":171}],130:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66692,7 +66435,7 @@ module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, from += inc; } return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],130:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],131:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66708,7 +66451,7 @@ module.exports = function fill(value /*, start = 0, end = @length */){ while(endPos > index)O[index++] = value; return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],131:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],132:[function(require,module,exports){ var forOf = require('./_for-of'); module.exports = function(iter, ITERATOR){ @@ -66717,7 +66460,7 @@ module.exports = function(iter, ITERATOR){ return result; }; -},{"./_for-of":158}],132:[function(require,module,exports){ +},{"./_for-of":159}],133:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject') @@ -66739,7 +66482,7 @@ module.exports = function(IS_INCLUDES){ } return !IS_INCLUDES && -1; }; }; -},{"./_to-index":226,"./_to-iobject":228,"./_to-length":229}],133:[function(require,module,exports){ +},{"./_to-index":227,"./_to-iobject":229,"./_to-length":230}],134:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -66784,60 +66527,60 @@ module.exports = function(TYPE, $create){ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result; }; }; -},{"./_array-species-create":136,"./_ctx":146,"./_iobject":166,"./_to-length":229,"./_to-object":230}],134:[function(require,module,exports){ -var aFunction = require('./_a-function') - , toObject = require('./_to-object') - , IObject = require('./_iobject') - , toLength = require('./_to-length'); - -module.exports = function(that, callbackfn, aLen, memo, isRight){ - aFunction(callbackfn); - var O = toObject(that) - , self = IObject(O) - , length = toLength(O.length) - , index = isRight ? length - 1 : 0 - , i = isRight ? -1 : 1; - if(aLen < 2)for(;;){ - if(index in self){ - memo = self[index]; - index += i; - break; - } - index += i; - if(isRight ? index < 0 : length <= index){ - throw TypeError('Reduce of empty array with no initial value'); - } - } - for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ - memo = callbackfn(memo, self[index], index, O); - } - return memo; +},{"./_array-species-create":137,"./_ctx":147,"./_iobject":167,"./_to-length":230,"./_to-object":231}],135:[function(require,module,exports){ +var aFunction = require('./_a-function') + , toObject = require('./_to-object') + , IObject = require('./_iobject') + , toLength = require('./_to-length'); + +module.exports = function(that, callbackfn, aLen, memo, isRight){ + aFunction(callbackfn); + var O = toObject(that) + , self = IObject(O) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(aLen < 2)for(;;){ + if(index in self){ + memo = self[index]; + index += i; + break; + } + index += i; + if(isRight ? index < 0 : length <= index){ + throw TypeError('Reduce of empty array with no initial value'); + } + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ + memo = callbackfn(memo, self[index], index, O); + } + return memo; +}; +},{"./_a-function":125,"./_iobject":167,"./_to-length":230,"./_to-object":231}],136:[function(require,module,exports){ +var isObject = require('./_is-object') + , isArray = require('./_is-array') + , SPECIES = require('./_wks')('species'); + +module.exports = function(original){ + var C; + if(isArray(original)){ + C = original.constructor; + // cross-realm fallback + if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; + if(isObject(C)){ + C = C[SPECIES]; + if(C === null)C = undefined; + } + } return C === undefined ? Array : C; }; -},{"./_a-function":124,"./_iobject":166,"./_to-length":229,"./_to-object":230}],135:[function(require,module,exports){ -var isObject = require('./_is-object') - , isArray = require('./_is-array') - , SPECIES = require('./_wks')('species'); - -module.exports = function(original){ - var C; - if(isArray(original)){ - C = original.constructor; - // cross-realm fallback - if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; - if(isObject(C)){ - C = C[SPECIES]; - if(C === null)C = undefined; - } - } return C === undefined ? Array : C; -}; -},{"./_is-array":168,"./_is-object":170,"./_wks":238}],136:[function(require,module,exports){ +},{"./_is-array":169,"./_is-object":171,"./_wks":239}],137:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); module.exports = function(original, length){ return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":135}],137:[function(require,module,exports){ +},{"./_array-species-constructor":136}],138:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function') , isObject = require('./_is-object') @@ -66862,7 +66605,7 @@ module.exports = Function.bind || function bind(that /*, args... */){ if(isObject(fn.prototype))bound.prototype = fn.prototype; return bound; }; -},{"./_a-function":124,"./_invoke":165,"./_is-object":170}],138:[function(require,module,exports){ +},{"./_a-function":125,"./_invoke":166,"./_is-object":171}],139:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof') , TAG = require('./_wks')('toStringTag') @@ -66886,16 +66629,17 @@ module.exports = function(it){ // ES3 arguments fallback : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":139,"./_wks":238}],139:[function(require,module,exports){ +},{"./_cof":140,"./_wks":239}],140:[function(require,module,exports){ var toString = {}.toString; module.exports = function(it){ return toString.call(it).slice(8, -1); }; -},{}],140:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f , create = require('./_object-create') + , hide = require('./_hide') , redefineAll = require('./_redefine-all') , ctx = require('./_ctx') , anInstance = require('./_an-instance') @@ -67035,7 +66779,7 @@ module.exports = { setSpecies(NAME); } }; -},{"./_an-instance":127,"./_ctx":146,"./_defined":148,"./_descriptors":149,"./_for-of":158,"./_iter-define":174,"./_iter-step":176,"./_meta":183,"./_object-create":187,"./_object-dp":188,"./_redefine-all":207,"./_set-species":212}],141:[function(require,module,exports){ +},{"./_an-instance":128,"./_ctx":147,"./_defined":149,"./_descriptors":150,"./_for-of":159,"./_hide":162,"./_iter-define":175,"./_iter-step":177,"./_meta":184,"./_object-create":188,"./_object-dp":189,"./_redefine-all":208,"./_set-species":213}],142:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var classof = require('./_classof') , from = require('./_array-from-iterable'); @@ -67045,7 +66789,7 @@ module.exports = function(NAME){ return from(this); }; }; -},{"./_array-from-iterable":131,"./_classof":138}],142:[function(require,module,exports){ +},{"./_array-from-iterable":132,"./_classof":139}],143:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all') , getWeak = require('./_meta').getWeak @@ -67129,7 +66873,7 @@ module.exports = { }, ufstore: uncaughtFrozenStore }; -},{"./_an-instance":127,"./_an-object":128,"./_array-methods":133,"./_for-of":158,"./_has":160,"./_is-object":170,"./_meta":183,"./_redefine-all":207}],143:[function(require,module,exports){ +},{"./_an-instance":128,"./_an-object":129,"./_array-methods":134,"./_for-of":159,"./_has":161,"./_is-object":171,"./_meta":184,"./_redefine-all":208}],144:[function(require,module,exports){ 'use strict'; var global = require('./_global') , $export = require('./_export') @@ -67215,19 +66959,19 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){ return C; }; -},{"./_an-instance":127,"./_export":153,"./_fails":155,"./_for-of":158,"./_global":159,"./_inherit-if-required":164,"./_is-object":170,"./_iter-detect":175,"./_meta":183,"./_redefine":208,"./_redefine-all":207,"./_set-to-string-tag":213}],144:[function(require,module,exports){ +},{"./_an-instance":128,"./_export":154,"./_fails":156,"./_for-of":159,"./_global":160,"./_inherit-if-required":165,"./_is-object":171,"./_iter-detect":176,"./_meta":184,"./_redefine":209,"./_redefine-all":208,"./_set-to-string-tag":214}],145:[function(require,module,exports){ var core = module.exports = {version: '2.4.0'}; if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef -},{}],145:[function(require,module,exports){ -'use strict'; -var $defineProperty = require('./_object-dp') - , createDesc = require('./_property-desc'); - -module.exports = function(object, index, value){ - if(index in object)$defineProperty.f(object, index, createDesc(0, value)); - else object[index] = value; +},{}],146:[function(require,module,exports){ +'use strict'; +var $defineProperty = require('./_object-dp') + , createDesc = require('./_property-desc'); + +module.exports = function(object, index, value){ + if(index in object)$defineProperty.f(object, index, createDesc(0, value)); + else object[index] = value; }; -},{"./_object-dp":188,"./_property-desc":206}],146:[function(require,module,exports){ +},{"./_object-dp":189,"./_property-desc":207}],147:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function(fn, that, length){ @@ -67248,28 +66992,28 @@ module.exports = function(fn, that, length){ return fn.apply(that, arguments); }; }; -},{"./_a-function":124}],147:[function(require,module,exports){ -'use strict'; -var anObject = require('./_an-object') - , toPrimitive = require('./_to-primitive') - , NUMBER = 'number'; - -module.exports = function(hint){ - if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); - return toPrimitive(anObject(this), hint != NUMBER); +},{"./_a-function":125}],148:[function(require,module,exports){ +'use strict'; +var anObject = require('./_an-object') + , toPrimitive = require('./_to-primitive') + , NUMBER = 'number'; + +module.exports = function(hint){ + if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); + return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":128,"./_to-primitive":231}],148:[function(require,module,exports){ +},{"./_an-object":129,"./_to-primitive":232}],149:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function(it){ if(it == undefined)throw TypeError("Can't call method on " + it); return it; }; -},{}],149:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function(){ return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_fails":155}],150:[function(require,module,exports){ +},{"./_fails":156}],151:[function(require,module,exports){ var isObject = require('./_is-object') , document = require('./_global').document // in old IE typeof document.createElement is 'object' @@ -67277,12 +67021,12 @@ var isObject = require('./_is-object') module.exports = function(it){ return is ? document.createElement(it) : {}; }; -},{"./_global":159,"./_is-object":170}],151:[function(require,module,exports){ -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' +},{"./_global":160,"./_is-object":171}],152:[function(require,module,exports){ +// IE 8- don't enum bug keys +module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],152:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys') , gOPS = require('./_object-gops') @@ -67298,7 +67042,7 @@ module.exports = function(it){ while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key); } return result; }; -},{"./_object-gops":194,"./_object-keys":197,"./_object-pie":198}],153:[function(require,module,exports){ +},{"./_object-gops":195,"./_object-keys":198,"./_object-pie":199}],154:[function(require,module,exports){ var global = require('./_global') , core = require('./_core') , hide = require('./_hide') @@ -67342,7 +67086,7 @@ $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":144,"./_ctx":146,"./_global":159,"./_hide":161,"./_redefine":208}],154:[function(require,module,exports){ +},{"./_core":145,"./_ctx":147,"./_global":160,"./_hide":162,"./_redefine":209}],155:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function(KEY){ var re = /./; @@ -67355,7 +67099,7 @@ module.exports = function(KEY){ } catch(f){ /* empty */ } } return true; }; -},{"./_wks":238}],155:[function(require,module,exports){ +},{"./_wks":239}],156:[function(require,module,exports){ module.exports = function(exec){ try { return !!exec(); @@ -67363,7 +67107,7 @@ module.exports = function(exec){ return true; } }; -},{}],156:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ 'use strict'; var hide = require('./_hide') , redefine = require('./_redefine') @@ -67392,7 +67136,7 @@ module.exports = function(KEY, length, exec){ ); } }; -},{"./_defined":148,"./_fails":155,"./_hide":161,"./_redefine":208,"./_wks":238}],157:[function(require,module,exports){ +},{"./_defined":149,"./_fails":156,"./_hide":162,"./_redefine":209,"./_wks":239}],158:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -67406,7 +67150,7 @@ module.exports = function(){ if(that.sticky) result += 'y'; return result; }; -},{"./_an-object":128}],158:[function(require,module,exports){ +},{"./_an-object":129}],159:[function(require,module,exports){ var ctx = require('./_ctx') , call = require('./_iter-call') , isArrayIter = require('./_is-array-iter') @@ -67432,17 +67176,17 @@ var exports = module.exports = function(iterable, entries, fn, that, ITERATOR){ }; exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":128,"./_ctx":146,"./_is-array-iter":167,"./_iter-call":172,"./_to-length":229,"./core.get-iterator-method":239}],159:[function(require,module,exports){ +},{"./_an-object":129,"./_ctx":147,"./_is-array-iter":168,"./_iter-call":173,"./_to-length":230,"./core.get-iterator-method":240}],160:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef -},{}],160:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function(it, key){ return hasOwnProperty.call(it, key); }; -},{}],161:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ var dP = require('./_object-dp') , createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function(object, key, value){ @@ -67451,22 +67195,22 @@ module.exports = require('./_descriptors') ? function(object, key, value){ object[key] = value; return object; }; -},{"./_descriptors":149,"./_object-dp":188,"./_property-desc":206}],162:[function(require,module,exports){ +},{"./_descriptors":150,"./_object-dp":189,"./_property-desc":207}],163:[function(require,module,exports){ module.exports = require('./_global').document && document.documentElement; -},{"./_global":159}],163:[function(require,module,exports){ -module.exports = !require('./_descriptors') && !require('./_fails')(function(){ - return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; +},{"./_global":160}],164:[function(require,module,exports){ +module.exports = !require('./_descriptors') && !require('./_fails')(function(){ + return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_descriptors":149,"./_dom-create":150,"./_fails":155}],164:[function(require,module,exports){ -var isObject = require('./_is-object') - , setPrototypeOf = require('./_set-proto').set; -module.exports = function(that, target, C){ - var P, S = target.constructor; - if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ - setPrototypeOf(that, P); - } return that; -}; -},{"./_is-object":170,"./_set-proto":211}],165:[function(require,module,exports){ +},{"./_descriptors":150,"./_dom-create":151,"./_fails":156}],165:[function(require,module,exports){ +var isObject = require('./_is-object') + , setPrototypeOf = require('./_set-proto').set; +module.exports = function(that, target, C){ + var P, S = target.constructor; + if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ + setPrototypeOf(that, P); + } return that; +}; +},{"./_is-object":171,"./_set-proto":212}],166:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function(fn, args, that){ var un = that === undefined; @@ -67483,13 +67227,13 @@ module.exports = function(fn, args, that){ : fn.call(that, args[0], args[1], args[2], args[3]); } return fn.apply(that, args); }; -},{}],166:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":139}],167:[function(require,module,exports){ +},{"./_cof":140}],168:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators') , ITERATOR = require('./_wks')('iterator') @@ -67498,24 +67242,24 @@ var Iterators = require('./_iterators') module.exports = function(it){ return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":177,"./_wks":238}],168:[function(require,module,exports){ +},{"./_iterators":178,"./_wks":239}],169:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg){ return cof(arg) == 'Array'; }; -},{"./_cof":139}],169:[function(require,module,exports){ +},{"./_cof":140}],170:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object') , floor = Math.floor; module.exports = function isInteger(it){ return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":170}],170:[function(require,module,exports){ +},{"./_is-object":171}],171:[function(require,module,exports){ module.exports = function(it){ return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],171:[function(require,module,exports){ +},{}],172:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object') , cof = require('./_cof') @@ -67524,7 +67268,7 @@ module.exports = function(it){ var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":139,"./_is-object":170,"./_wks":238}],172:[function(require,module,exports){ +},{"./_cof":140,"./_is-object":171,"./_wks":239}],173:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function(iterator, fn, value, entries){ @@ -67537,7 +67281,7 @@ module.exports = function(iterator, fn, value, entries){ throw e; } }; -},{"./_an-object":128}],173:[function(require,module,exports){ +},{"./_an-object":129}],174:[function(require,module,exports){ 'use strict'; var create = require('./_object-create') , descriptor = require('./_property-desc') @@ -67551,7 +67295,7 @@ module.exports = function(Constructor, NAME, next){ Constructor.prototype = create(IteratorPrototype, {next: descriptor(1, next)}); setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":161,"./_object-create":187,"./_property-desc":206,"./_set-to-string-tag":213,"./_wks":238}],174:[function(require,module,exports){ +},{"./_hide":162,"./_object-create":188,"./_property-desc":207,"./_set-to-string-tag":214,"./_wks":239}],175:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library') , $export = require('./_export') @@ -67622,7 +67366,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED } return methods; }; -},{"./_export":153,"./_has":160,"./_hide":161,"./_iter-create":173,"./_iterators":177,"./_library":179,"./_object-gpo":195,"./_redefine":208,"./_set-to-string-tag":213,"./_wks":238}],175:[function(require,module,exports){ +},{"./_export":154,"./_has":161,"./_hide":162,"./_iter-create":174,"./_iterators":178,"./_library":180,"./_object-gpo":196,"./_redefine":209,"./_set-to-string-tag":214,"./_wks":239}],176:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator') , SAFE_CLOSING = false; @@ -67644,13 +67388,13 @@ module.exports = function(exec, skipClosing){ } catch(e){ /* empty */ } return safe; }; -},{"./_wks":238}],176:[function(require,module,exports){ +},{"./_wks":239}],177:[function(require,module,exports){ module.exports = function(done, value){ return {value: value, done: !!done}; }; -},{}],177:[function(require,module,exports){ -module.exports = {}; },{}],178:[function(require,module,exports){ +module.exports = {}; +},{}],179:[function(require,module,exports){ var getKeys = require('./_object-keys') , toIObject = require('./_to-iobject'); module.exports = function(object, el){ @@ -67661,9 +67405,9 @@ module.exports = function(object, el){ , key; while(length > index)if(O[key = keys[index++]] === el)return key; }; -},{"./_object-keys":197,"./_to-iobject":228}],179:[function(require,module,exports){ +},{"./_object-keys":198,"./_to-iobject":229}],180:[function(require,module,exports){ module.exports = false; -},{}],180:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -67674,17 +67418,17 @@ module.exports = (!$expm1 ) ? function expm1(x){ return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],181:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x){ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],182:[function(require,module,exports){ +},{}],183:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x){ return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],183:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ var META = require('./_uid')('meta') , isObject = require('./_is-object') , has = require('./_has') @@ -67738,7 +67482,7 @@ var meta = module.exports = { getWeak: getWeak, onFreeze: onFreeze }; -},{"./_fails":155,"./_has":160,"./_is-object":170,"./_object-dp":188,"./_uid":235}],184:[function(require,module,exports){ +},{"./_fails":156,"./_has":161,"./_is-object":171,"./_object-dp":189,"./_uid":236}],185:[function(require,module,exports){ var Map = require('./es6.map') , $export = require('./_export') , shared = require('./_shared')('metadata') @@ -67790,7 +67534,7 @@ module.exports = { key: toMetaKey, exp: exp }; -},{"./_export":153,"./_shared":215,"./es6.map":270,"./es6.weak-map":376}],185:[function(require,module,exports){ +},{"./_export":154,"./_shared":216,"./es6.map":272,"./es6.weak-map":378}],186:[function(require,module,exports){ var global = require('./_global') , macrotask = require('./_task').set , Observer = global.MutationObserver || global.WebKitMutationObserver @@ -67859,7 +67603,7 @@ module.exports = function(){ } last = task; }; }; -},{"./_cof":139,"./_global":159,"./_task":225}],186:[function(require,module,exports){ +},{"./_cof":140,"./_global":160,"./_task":226}],187:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys') @@ -67893,50 +67637,48 @@ module.exports = !$assign || require('./_fails')(function(){ while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key]; } return T; } : $assign; -},{"./_fails":155,"./_iobject":166,"./_object-gops":194,"./_object-keys":197,"./_object-pie":198,"./_to-object":230}],187:[function(require,module,exports){ -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = require('./_an-object') - , dPs = require('./_object-dps') - , enumBugKeys = require('./_enum-bug-keys') - , IE_PROTO = require('./_shared-key')('IE_PROTO') - , Empty = function(){ /* empty */ } - , PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function(){ - // Thrash, waste and sodomy: IE GC bug - var iframe = require('./_dom-create')('iframe') - , i = enumBugKeys.length - , lt = '<' - , gt = '>' - , iframeDocument; - iframe.style.display = 'none'; - require('./_html').appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while(i--)delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties){ - var result; - if(O !== null){ - Empty[PROTOTYPE] = anObject(O); - result = new Empty; - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - -},{"./_an-object":128,"./_dom-create":150,"./_enum-bug-keys":151,"./_html":162,"./_object-dps":189,"./_shared-key":214}],188:[function(require,module,exports){ +},{"./_fails":156,"./_iobject":167,"./_object-gops":195,"./_object-keys":198,"./_object-pie":199,"./_to-object":231}],188:[function(require,module,exports){ +// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) +var anObject = require('./_an-object') + , dPs = require('./_object-dps') + , enumBugKeys = require('./_enum-bug-keys') + , IE_PROTO = require('./_shared-key')('IE_PROTO') + , Empty = function(){ /* empty */ } + , PROTOTYPE = 'prototype'; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var createDict = function(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = require('./_dom-create')('iframe') + , i = enumBugKeys.length + , gt = '>' + , iframeDocument; + iframe.style.display = 'none'; + require('./_html').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write('"); -} -globalFuncs.getBlob = function(mime, str) { - var str = (typeof str === 'object') ? JSON.stringify(str) : str; - if (str == null) return ''; - var blob = new Blob([str], { - type: mime - }); - return window.URL.createObjectURL(blob); -} -globalFuncs.getSuccessText = function(str) { - return '

' + str + '

' -} -globalFuncs.getDangerText = function(str) { - return '

' + str + '

' -} -globalFuncs.errorMsgs = [ - "Please enter valid amount.", - "Your password must be at least 9 characters. Please ensure it is a strong password. ", - "Sorry! We don\'t recognize this type of wallet file. ", - "This is not a valid wallet file. ", - "This unit doesn\'t exists, please use the one of the following units ", - "Invalid address. ", - "Invalid password. ", - "Invalid amount. ", - "Invalid gas limit. ", - "Invalid data value. ", - "Invalid gas amount. ", - "Invalid nonce. ", - "Invalid signed transaction. ", - "A wallet with this nickname already exists. ", - "Wallet not found. ", - "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", - "A wallet with this address already exists in storage. Please check your wallets page. ", - "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", - "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", - "Invalid symbol"]; -globalFuncs.successMsgs = [ - "Valid address", - "Wallet successfully decrypted", - "Transaction submitted. TX ID: ", - "Your wallet was successfully added: ", - "You have successfully voted. Thank you for being an active participant in The DAO.", - "File Selected: "]; -globalFuncs.gethErrors = { - "Invalid sender": "GETH_InvalidSender", - "Nonce too low": "GETH_Nonce", - "Gas price too low for acceptance": "GETH_Cheap", - "Insufficient balance": "GETH_Balance", - "Account does not exist or account balance too low": "GETH_NonExistentAccount", - "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", - "Intrinsic gas too low": "GETH_IntrinsicGas", - "Exceeds block gas limit": "GETH_GasLimit", - "Negative value": "GETH_NegativeValue"}; -globalFuncs.gethErrorMsgs = {}; -globalFuncs.getGethMsg = function(str) { - if (str in this.gethErrors) { - var key = this.gethErrors[str]; - if (key in this.gethErrorMsgs) { - return this.gethErrorMsgs[key]; - } - } - return str; -} -globalFuncs.scrypt = { - n: 1024 -}; -globalFuncs.postDelay = 300; -globalFuncs.kdf = "scrypt"; -globalFuncs.defaultTxGasLimit = 21000; -globalFuncs.digixClaimTxGasLimit = 150000; -globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; -globalFuncs.isNumeric = function(n) { - return !isNaN(parseFloat(n)) && isFinite(n); -} -globalFuncs.urlGet = function(name) { - if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); -} -globalFuncs.stripTags = function(str) { - var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; - while (SCRIPT_REGEX.test(str)) { - str = str.replace(SCRIPT_REGEX, ""); - } - return str; -} -globalFuncs.checkAndRedirectHTTPS = function() { - var host = "myetherwallet.com"; - var githost = "kvhnuke.github.io"; - var githostw = "www.kvhnuke.github.io"; - var hostw = "www.myetherwallet.com"; - if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; -} -globalFuncs.isStrongPass = function(password) { - return password.length > 8; -} -globalFuncs.hexToAscii = function(hex) { - return hex.match(/.{1,2}/g).map(function(v) { - return String.fromCharCode(parseInt(v, 16)); - }).join(''); -} -globalFuncs.isAlphaNumeric = function(value){ - return !/[^a-zA-Z0-9]/.test(value); -} -module.exports = globalFuncs; +'use strict'; +var globalFuncs = function() {} +globalFuncs.getBlockie = function(address) { + return blockies.create({ + seed: address.toLowerCase(), + size: 8, + scale: 16 + }).toDataURL(); +} +globalFuncs.printPaperWallets = function(strJson) { + var win = window.open("about:blank", "_blank"); + var data = ""); +} +globalFuncs.getBlob = function(mime, str) { + var str = (typeof str === 'object') ? JSON.stringify(str) : str; + if (str == null) return ''; + var blob = new Blob([str], { + type: mime + }); + return window.URL.createObjectURL(blob); +} +globalFuncs.getSuccessText = function(str) { + return '

' + str + '

' +} +globalFuncs.getDangerText = function(str) { + return '

' + str + '

' +} +globalFuncs.errorMsgs = [ + "Please enter valid amount.", + "Your password must be at least 9 characters. Please ensure it is a strong password. ", + "Sorry! We don\'t recognize this type of wallet file. ", + "This is not a valid wallet file. ", + "This unit doesn\'t exists, please use the one of the following units ", + "Invalid address. ", + "Invalid password. ", + "Invalid amount. ", + "Invalid gas limit. ", + "Invalid data value. ", + "Invalid gas amount. ", + "Invalid nonce. ", + "Invalid signed transaction. ", + "A wallet with this nickname already exists. ", + "Wallet not found. ", + "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", + "A wallet with this address already exists in storage. Please check your wallets page. ", + "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", + "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", + "Invalid symbol"]; +globalFuncs.successMsgs = [ + "Valid address", + "Wallet successfully decrypted", + "Transaction submitted. TX ID: ", + "Your wallet was successfully added: ", + "You have successfully voted. Thank you for being an active participant in The DAO.", + "File Selected: "]; +globalFuncs.gethErrors = { + "Invalid sender": "GETH_InvalidSender", + "Nonce too low": "GETH_Nonce", + "Gas price too low for acceptance": "GETH_Cheap", + "Insufficient balance": "GETH_Balance", + "Account does not exist or account balance too low": "GETH_NonExistentAccount", + "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", + "Intrinsic gas too low": "GETH_IntrinsicGas", + "Exceeds block gas limit": "GETH_GasLimit", + "Negative value": "GETH_NegativeValue"}; +globalFuncs.gethErrorMsgs = {}; +globalFuncs.getGethMsg = function(str) { + if (str in this.gethErrors) { + var key = this.gethErrors[str]; + if (key in this.gethErrorMsgs) { + return this.gethErrorMsgs[key]; + } + } + return str; +} +globalFuncs.scrypt = { + n: 1024 +}; +globalFuncs.postDelay = 300; +globalFuncs.kdf = "scrypt"; +globalFuncs.defaultTxGasLimit = 21000; +globalFuncs.digixClaimTxGasLimit = 150000; +globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; +globalFuncs.isNumeric = function(n) { + return !isNaN(parseFloat(n)) && isFinite(n); +} +globalFuncs.urlGet = function(name) { + if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); +} +globalFuncs.stripTags = function(str) { + var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; + while (SCRIPT_REGEX.test(str)) { + str = str.replace(SCRIPT_REGEX, ""); + } + return str; +} +globalFuncs.checkAndRedirectHTTPS = function() { + var host = "myetherwallet.com"; + var githost = "kvhnuke.github.io"; + var githostw = "www.kvhnuke.github.io"; + var hostw = "www.myetherwallet.com"; + if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; +} +globalFuncs.isStrongPass = function(password) { + return password.length > 8; +} +globalFuncs.hexToAscii = function(hex) { + return hex.match(/.{1,2}/g).map(function(v) { + return String.fromCharCode(parseInt(v, 16)); + }).join(''); +} +globalFuncs.isAlphaNumeric = function(value){ + return !/[^a-zA-Z0-9]/.test(value); +} +module.exports = globalFuncs; },{}],30:[function(require,module,exports){ -'use strict'; -var IS_CX = false; -if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; -require("babel-polyfill"); -var angular = require('angular'); -var angularTranslate = require('angular-translate'); -var angularTranslateErrorLog = require('angular-translate-handler-log'); -var angularSanitize = require('angular-sanitize'); -var BigNumber = require('bignumber.js'); -window.BigNumber = BigNumber; -var marked = require('./customMarked'); -window.marked = marked; -var ethUtil = require('ethereumjs-util'); -ethUtil.crypto = require('crypto'); -ethUtil.Tx = require('ethereumjs-tx'); -ethUtil.scrypt = require('scryptsy'); -ethUtil.uuid = require('uuid'); -window.ethUtil = ethUtil; -var Wallet = require('./myetherwallet'); -window.Wallet = Wallet; -var Token = require('./tokens'); -window.Token = Token; -var globalFuncs = require('./globalFuncs'); -window.globalFuncs = globalFuncs; -var uiFuncs = require('./uiFuncs'); -window.uiFuncs = uiFuncs; -var etherUnits = require('./etherUnits'); -window.etherUnits = etherUnits; -var ajaxReq = require('./ajaxReq'); -window.ajaxReq = ajaxReq; -var ethFuncs = require('./ethFuncs'); -window.ethFuncs = ethFuncs; -var Validator = require('./validator'); -window.Validator = Validator; -var translate = require('./translations/translate.js'); -if (IS_CX) { - var cxFuncs = require('./cxFuncs'); - window.cxFuncs = cxFuncs; -} -var tabsCtrl = require('./controllers/tabsCtrl'); -var viewCtrl = require('./controllers/viewCtrl'); -var walletGenCtrl = require('./controllers/walletGenCtrl'); -var bulkGenCtrl = require('./controllers/bulkGenCtrl'); -var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); -var viewWalletCtrl = require('./controllers/viewWalletCtrl'); -var sendTxCtrl = require('./controllers/sendTxCtrl'); -var deployContractCtrl = require('./controllers/deployContractCtrl'); -var digixCtrl = require('./controllers/digixCtrl'); -var theDaoCtrl = require('./controllers/theDaoCtrl'); -var tokenCtrl = require('./controllers/tokenCtrl'); -var footerCtrl = require('./controllers/footerCtrl'); -var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); -var globalService = require('./services/globalService'); -var walletService = require('./services/walletService'); -var blockiesDrtv = require('./directives/blockiesDrtv'); -var QRCodeDrtv = require('./directives/QRCodeDrtv'); -var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); -var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); -var fileReaderDrtv = require('./directives/fileReaderDrtv'); -if (IS_CX) { - var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); - var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); - var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); - var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); - var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); -} -var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); -app.config(['$compileProvider', function($compileProvider) { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); -}]); -app.config(['$translateProvider', function($translateProvider) { - $translateProvider.useMissingTranslationHandlerLog(); - new translate($translateProvider); -}]); -app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); -app.factory('walletService', walletService); -app.directive('blockieAddress', blockiesDrtv); -app.directive('qrCode', QRCodeDrtv); -app.directive('onReadFile', fileReaderDrtv); -app.directive('walletDecryptDrtv', walletDecryptDrtv); -app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); -app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); -app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); -app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); -app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); -app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); -app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); -app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); -app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); -app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); -app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); -app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); -app.controller('footerCtrl', ['$scope', footerCtrl]); -app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); -if (IS_CX) { - app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); - app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); - app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); - app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); - app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); -} - -},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":60,"./uiFuncs":64,"./validator":65,"angular":71,"angular-sanitize":67,"angular-translate":69,"angular-translate-handler-log":68,"babel-polyfill":87,"bignumber.js":89,"crypto":423,"ethereumjs-tx":453,"ethereumjs-util":454,"scryptsy":500,"uuid":520}],31:[function(require,module,exports){ +'use strict'; +var IS_CX = false; +if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; +require("babel-polyfill"); +var angular = require('angular'); +var angularTranslate = require('angular-translate'); +var angularTranslateErrorLog = require('angular-translate-handler-log'); +var angularSanitize = require('angular-sanitize'); +var BigNumber = require('bignumber.js'); +window.BigNumber = BigNumber; +var marked = require('./customMarked'); +window.marked = marked; +var ethUtil = require('ethereumjs-util'); +ethUtil.crypto = require('crypto'); +ethUtil.Tx = require('ethereumjs-tx'); +ethUtil.scrypt = require('scryptsy'); +ethUtil.uuid = require('uuid'); +window.ethUtil = ethUtil; +var Wallet = require('./myetherwallet'); +window.Wallet = Wallet; +var Token = require('./tokens'); +window.Token = Token; +var globalFuncs = require('./globalFuncs'); +window.globalFuncs = globalFuncs; +var uiFuncs = require('./uiFuncs'); +window.uiFuncs = uiFuncs; +var etherUnits = require('./etherUnits'); +window.etherUnits = etherUnits; +var ajaxReq = require('./ajaxReq'); +window.ajaxReq = ajaxReq; +var ethFuncs = require('./ethFuncs'); +window.ethFuncs = ethFuncs; +var Validator = require('./validator'); +window.Validator = Validator; +var translate = require('./translations/translate.js'); +if (IS_CX) { + var cxFuncs = require('./cxFuncs'); + window.cxFuncs = cxFuncs; +} +var tabsCtrl = require('./controllers/tabsCtrl'); +var viewCtrl = require('./controllers/viewCtrl'); +var walletGenCtrl = require('./controllers/walletGenCtrl'); +var bulkGenCtrl = require('./controllers/bulkGenCtrl'); +var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); +var viewWalletCtrl = require('./controllers/viewWalletCtrl'); +var sendTxCtrl = require('./controllers/sendTxCtrl'); +var deployContractCtrl = require('./controllers/deployContractCtrl'); +var digixCtrl = require('./controllers/digixCtrl'); +var theDaoCtrl = require('./controllers/theDaoCtrl'); +var tokenCtrl = require('./controllers/tokenCtrl'); +var footerCtrl = require('./controllers/footerCtrl'); +var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); +var globalService = require('./services/globalService'); +var walletService = require('./services/walletService'); +var blockiesDrtv = require('./directives/blockiesDrtv'); +var QRCodeDrtv = require('./directives/QRCodeDrtv'); +var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); +var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); +var fileReaderDrtv = require('./directives/fileReaderDrtv'); +if (IS_CX) { + var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); + var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); + var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); + var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); + var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); +} +var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); +app.config(['$compileProvider', function($compileProvider) { + $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); +}]); +app.config(['$translateProvider', function($translateProvider) { + $translateProvider.useMissingTranslationHandlerLog(); + new translate($translateProvider); +}]); +app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); +app.factory('walletService', walletService); +app.directive('blockieAddress', blockiesDrtv); +app.directive('qrCode', QRCodeDrtv); +app.directive('onReadFile', fileReaderDrtv); +app.directive('walletDecryptDrtv', walletDecryptDrtv); +app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); +app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); +app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); +app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); +app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); +app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); +app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); +app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); +app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); +app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); +app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); +app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); +app.controller('footerCtrl', ['$scope', footerCtrl]); +app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); +if (IS_CX) { + app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); + app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); + app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); + app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); + app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); +} + +},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":61,"./uiFuncs":65,"./validator":66,"angular":72,"angular-sanitize":68,"angular-translate":70,"angular-translate-handler-log":69,"babel-polyfill":88,"bignumber.js":90,"crypto":425,"ethereumjs-tx":455,"ethereumjs-util":456,"scryptsy":502,"uuid":522}],31:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var Wallet = function(priv) { - this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') -} -Wallet.generate = function(icapDirect) { - if (icapDirect) { - while (true) { - var privKey = ethUtil.crypto.randomBytes(32) - if (ethUtil.privateToAddress(privKey)[0] === 0) { - return new Wallet(privKey) - } - } - } else { - return new Wallet(ethUtil.crypto.randomBytes(32)) - } -} -Wallet.prototype.getPrivateKey = function() { - return this.privKey -} -Wallet.prototype.getPrivateKeyString = function() { - return this.getPrivateKey().toString('hex') -} -Wallet.prototype.getPublicKey = function() { - return ethUtil.privateToPublic(this.privKey) -} -Wallet.prototype.getPublicKeyString = function() { - return '0x' + this.getPublicKey().toString('hex') -} -Wallet.prototype.getAddress = function() { - return ethUtil.privateToAddress(this.privKey) -} -Wallet.prototype.getAddressString = function() { - return '0x' + this.getAddress().toString('hex') -} -Wallet.prototype.getChecksumAddressString = function() { - return ethUtil.toChecksumAddress(this.getAddressString()) -} -Wallet.fromPrivateKey = function(priv) { - return new Wallet(priv) -} -Wallet.prototype.toV3 = function(password, opts) { - opts = opts || {} - var salt = opts.salt || ethUtil.crypto.randomBytes(32) - var iv = opts.iv || ethUtil.crypto.randomBytes(16) - var derivedKey - var kdf = opts.kdf || 'scrypt' - var kdfparams = { - dklen: opts.dklen || 32, - salt: salt.toString('hex') - } - if (kdf === 'pbkdf2') { - kdfparams.c = opts.c || 262144 - kdfparams.prf = 'hmac-sha256' - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') - } else if (kdf === 'scrypt') { - // FIXME: support progress reporting callback - kdfparams.n = opts.n || 262144 - kdfparams.r = opts.r || 8 - kdfparams.p = opts.p || 1 - derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else { - throw new Error('Unsupported kdf') - } - var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) - if (!cipher) { - throw new Error('Unsupported cipher') - } - var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) - return { - version: 3, - id: ethUtil.uuid.v4({ - random: opts.uuid || ethUtil.crypto.randomBytes(16) - }), - address: this.getAddress().toString('hex'), - Crypto: { - ciphertext: ciphertext.toString('hex'), - cipherparams: { - iv: iv.toString('hex') - }, - cipher: opts.cipher || 'aes-128-ctr', - kdf: kdf, - kdfparams: kdfparams, - mac: mac.toString('hex') - } - } -} -Wallet.prototype.toJSON = function() { - return { - address: this.getAddressString(), - checksumAddress: this.getChecksumAddressString(), - privKey: this.getPrivateKeyString(), - pubKey: this.getPublicKeyString(), - publisher:"MyEtherWallet", - encrypted:false, - version:2 - } -} -Wallet.fromMyEtherWallet = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var privKey - if (!json.locked) { - if (json.private.length !== 64) { - throw new Error('Invalid private key length') - } - privKey = new Buffer(json.private, 'hex') - } else { - if (typeof password !== 'string') { - throw new Error('Password required') - } - if (password.length < 7) { - throw new Error('Password must be at least 7 characters') - } - var cipher = json.encrypted ? json.private.slice(0, 128) : json.private - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - } - var wallet = new Wallet(privKey) - if (wallet.getAddressString() !== json.address) { - throw new Error('Invalid private key or address') - } - return wallet -} -Wallet.fromMyEtherWalletV2 = function (input){ - var json = (typeof input === 'object') ? input : JSON.parse(input); - if (json.privKey.length !== 64) { - throw new Error('Invalid private key length'); - }; - var privKey = new Buffer(json.privKey, 'hex'); - return new Wallet(privKey); -} -Wallet.fromEthSale = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var encseed = new Buffer(json.encseed, 'hex') - var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) - var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) - var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) - var wallet = new Wallet(ethUtil.sha3(seed)) - if (wallet.getAddress().toString('hex') !== json.ethaddr) { - throw new Error('Decoded key mismatch - possibly wrong passphrase') - } - return wallet -} -Wallet.fromMyEtherWalletKey = function(input, password) { - var cipher = input.slice(0, 128) - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - return new Wallet(privKey) -} -Wallet.fromV3 = function(input, password, nonStrict) { - var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) - if (json.version !== 3) { - throw new Error('Not a V3 wallet') - } - var derivedKey - var kdfparams - if (json.crypto.kdf === 'scrypt') { - kdfparams = json.crypto.kdfparams - derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else if (json.crypto.kdf === 'pbkdf2') { - kdfparams = json.crypto.kdfparams - if (kdfparams.prf !== 'hmac-sha256') { - throw new Error('Unsupported parameters to PBKDF2') - } - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') - } else { - throw new Error('Unsupported key derivation scheme') - } - var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) - if (mac.toString('hex') !== json.crypto.mac) { - throw new Error('Key derivation failed - possibly wrong passphrase') - } - var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) - var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') - return new Wallet(seed) -} -Wallet.prototype.toV3String = function(password, opts) { - return JSON.stringify(this.toV3(password, opts)) -} -Wallet.prototype.getV3Filename = function (timestamp) { - var ts = timestamp ? new Date(timestamp) : new Date() - return [ - 'UTC--', - ts.toJSON().replace(/:/g, '-'), - '--', - this.getAddress().toString('hex') - ].join('') -} -Wallet.decipherBuffer = function(decipher, data) { - return Buffer.concat([decipher.update(data), decipher.final()]) -} -Wallet.decodeCryptojsSalt = function(input) { - var ciphertext = new Buffer(input, 'base64') - if (ciphertext.slice(0, 8).toString() === 'Salted__') { - return { - salt: ciphertext.slice(8, 16), - ciphertext: ciphertext.slice(16) - } - } else { - return { - ciphertext: ciphertext - } - } -} -Wallet.evp_kdf = function(data, salt, opts) { - // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` - - function iter(block) { - var hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - hash.update(data) - hash.update(salt) - block = hash.digest() - for (var i = 1; i < (opts.count || 1); i++) { - hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - block = hash.digest() - } - return block - } - var keysize = opts.keysize || 16 - var ivsize = opts.ivsize || 16 - var ret = [] - var i = 0 - while (Buffer.concat(ret).length < (keysize + ivsize)) { - ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) - i++ - } - var tmp = Buffer.concat(ret) - return { - key: tmp.slice(0, keysize), - iv: tmp.slice(keysize, keysize + ivsize) - } -} -Wallet.walletRequirePass = function(ethjson) { - var jsonArr; - try { - jsonArr = JSON.parse(ethjson); - } catch (err) { - throw globalFuncs.errorMsgs[3]; - } - if (jsonArr.encseed != null) return true; - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true - else if (jsonArr.hash != null && jsonArr.locked) return true; - else if (jsonArr.hash != null && !jsonArr.locked) return false; - else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; - else - throw globalFuncs.errorMsgs[2]; -} -Wallet.getWalletFromPrivKeyFile = function(strjson, password) { - var jsonArr = JSON.parse(strjson); - if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); - else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); - else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); - else - throw globalFuncs.errorMsgs[2]; -} +'use strict'; +var Wallet = function(priv) { + this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') +} +Wallet.generate = function(icapDirect) { + if (icapDirect) { + while (true) { + var privKey = ethUtil.crypto.randomBytes(32) + if (ethUtil.privateToAddress(privKey)[0] === 0) { + return new Wallet(privKey) + } + } + } else { + return new Wallet(ethUtil.crypto.randomBytes(32)) + } +} +Wallet.prototype.getPrivateKey = function() { + return this.privKey +} +Wallet.prototype.getPrivateKeyString = function() { + return this.getPrivateKey().toString('hex') +} +Wallet.prototype.getPublicKey = function() { + return ethUtil.privateToPublic(this.privKey) +} +Wallet.prototype.getPublicKeyString = function() { + return '0x' + this.getPublicKey().toString('hex') +} +Wallet.prototype.getAddress = function() { + return ethUtil.privateToAddress(this.privKey) +} +Wallet.prototype.getAddressString = function() { + return '0x' + this.getAddress().toString('hex') +} +Wallet.prototype.getChecksumAddressString = function() { + return ethUtil.toChecksumAddress(this.getAddressString()) +} +Wallet.fromPrivateKey = function(priv) { + return new Wallet(priv) +} +Wallet.prototype.toV3 = function(password, opts) { + opts = opts || {} + var salt = opts.salt || ethUtil.crypto.randomBytes(32) + var iv = opts.iv || ethUtil.crypto.randomBytes(16) + var derivedKey + var kdf = opts.kdf || 'scrypt' + var kdfparams = { + dklen: opts.dklen || 32, + salt: salt.toString('hex') + } + if (kdf === 'pbkdf2') { + kdfparams.c = opts.c || 262144 + kdfparams.prf = 'hmac-sha256' + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') + } else if (kdf === 'scrypt') { + // FIXME: support progress reporting callback + kdfparams.n = opts.n || 262144 + kdfparams.r = opts.r || 8 + kdfparams.p = opts.p || 1 + derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else { + throw new Error('Unsupported kdf') + } + var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) + if (!cipher) { + throw new Error('Unsupported cipher') + } + var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) + return { + version: 3, + id: ethUtil.uuid.v4({ + random: opts.uuid || ethUtil.crypto.randomBytes(16) + }), + address: this.getAddress().toString('hex'), + Crypto: { + ciphertext: ciphertext.toString('hex'), + cipherparams: { + iv: iv.toString('hex') + }, + cipher: opts.cipher || 'aes-128-ctr', + kdf: kdf, + kdfparams: kdfparams, + mac: mac.toString('hex') + } + } +} +Wallet.prototype.toJSON = function() { + return { + address: this.getAddressString(), + checksumAddress: this.getChecksumAddressString(), + privKey: this.getPrivateKeyString(), + pubKey: this.getPublicKeyString(), + publisher:"MyEtherWallet", + encrypted:false, + version:2 + } +} +Wallet.fromMyEtherWallet = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var privKey + if (!json.locked) { + if (json.private.length !== 64) { + throw new Error('Invalid private key length') + } + privKey = new Buffer(json.private, 'hex') + } else { + if (typeof password !== 'string') { + throw new Error('Password required') + } + if (password.length < 7) { + throw new Error('Password must be at least 7 characters') + } + var cipher = json.encrypted ? json.private.slice(0, 128) : json.private + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + } + var wallet = new Wallet(privKey) + if (wallet.getAddressString() !== json.address) { + throw new Error('Invalid private key or address') + } + return wallet +} +Wallet.fromMyEtherWalletV2 = function (input){ + var json = (typeof input === 'object') ? input : JSON.parse(input); + if (json.privKey.length !== 64) { + throw new Error('Invalid private key length'); + }; + var privKey = new Buffer(json.privKey, 'hex'); + return new Wallet(privKey); +} +Wallet.fromEthSale = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var encseed = new Buffer(json.encseed, 'hex') + var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) + var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) + var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) + var wallet = new Wallet(ethUtil.sha3(seed)) + if (wallet.getAddress().toString('hex') !== json.ethaddr) { + throw new Error('Decoded key mismatch - possibly wrong passphrase') + } + return wallet +} +Wallet.fromMyEtherWalletKey = function(input, password) { + var cipher = input.slice(0, 128) + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + return new Wallet(privKey) +} +Wallet.fromV3 = function(input, password, nonStrict) { + var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) + if (json.version !== 3) { + throw new Error('Not a V3 wallet') + } + var derivedKey + var kdfparams + if (json.crypto.kdf === 'scrypt') { + kdfparams = json.crypto.kdfparams + derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else if (json.crypto.kdf === 'pbkdf2') { + kdfparams = json.crypto.kdfparams + if (kdfparams.prf !== 'hmac-sha256') { + throw new Error('Unsupported parameters to PBKDF2') + } + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') + } else { + throw new Error('Unsupported key derivation scheme') + } + var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) + if (mac.toString('hex') !== json.crypto.mac) { + throw new Error('Key derivation failed - possibly wrong passphrase') + } + var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) + var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') + return new Wallet(seed) +} +Wallet.prototype.toV3String = function(password, opts) { + return JSON.stringify(this.toV3(password, opts)) +} +Wallet.prototype.getV3Filename = function (timestamp) { + var ts = timestamp ? new Date(timestamp) : new Date() + return [ + 'UTC--', + ts.toJSON().replace(/:/g, '-'), + '--', + this.getAddress().toString('hex') + ].join('') +} +Wallet.decipherBuffer = function(decipher, data) { + return Buffer.concat([decipher.update(data), decipher.final()]) +} +Wallet.decodeCryptojsSalt = function(input) { + var ciphertext = new Buffer(input, 'base64') + if (ciphertext.slice(0, 8).toString() === 'Salted__') { + return { + salt: ciphertext.slice(8, 16), + ciphertext: ciphertext.slice(16) + } + } else { + return { + ciphertext: ciphertext + } + } +} +Wallet.evp_kdf = function(data, salt, opts) { + // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` + + function iter(block) { + var hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + hash.update(data) + hash.update(salt) + block = hash.digest() + for (var i = 1; i < (opts.count || 1); i++) { + hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + block = hash.digest() + } + return block + } + var keysize = opts.keysize || 16 + var ivsize = opts.ivsize || 16 + var ret = [] + var i = 0 + while (Buffer.concat(ret).length < (keysize + ivsize)) { + ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) + i++ + } + var tmp = Buffer.concat(ret) + return { + key: tmp.slice(0, keysize), + iv: tmp.slice(keysize, keysize + ivsize) + } +} +Wallet.walletRequirePass = function(ethjson) { + var jsonArr; + try { + jsonArr = JSON.parse(ethjson); + } catch (err) { + throw globalFuncs.errorMsgs[3]; + } + if (jsonArr.encseed != null) return true; + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true + else if (jsonArr.hash != null && jsonArr.locked) return true; + else if (jsonArr.hash != null && !jsonArr.locked) return false; + else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; + else + throw globalFuncs.errorMsgs[2]; +} +Wallet.getWalletFromPrivKeyFile = function(strjson, password) { + var jsonArr = JSON.parse(strjson); + if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); + else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); + else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); + else + throw globalFuncs.errorMsgs[2]; +} module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":121}],32:[function(require,module,exports){ -'use strict'; -var globalService = function($http, $httpParamSerializerJQLike) { - globalFuncs.checkAndRedirectHTTPS(); - ajaxReq.http = $http; - ajaxReq.postSerializer = $httpParamSerializerJQLike; - - var tabs = { - generateWallet: { - id: 0, - name: "NAV_GenerateWallet", - url: "generate-wallet", - mew: true, - cx: false, - }, - bulkGenerate: { - id: 1, - name: "NAV_BulkGenerate", - url: "bulk-generate", - mew: false, - cx: false - }, - myWallet: { - id: 2, - name: "NAV_MyWallets", - url: "my-wallet", - mew: false, - cx: true - }, - addWallet: { - id: 3, - name: "NAV_AddWallet", - url: "add-wallet", - mew: false, - cx: true - }, - sendTransaction: { - id: 4, - name: "NAV_SendEther", - url: "send-transaction", - mew: true, - cx: true - }, - tokens: { - id: 5, - name: "NAV_SendTokens", - url: "send-tokens", - mew: true, - cx: true - }, - offlineTransaction: { - id: 6, - name: "NAV_Offline", - url:"offline-transaction", - mew: true, - cx: false - }, - dao: { - id: 7, - name: "NAV_WithdrawDAO", - url: "the-dao", - mew: true, - cx: true - }, - digix: { - id: 8, - name: "NAV_ClaimDGD", - url: "digix", - mew: true, - cx: true - }, - deployContract: { - id: 9, - name: "NAV_DeployContract", - url: "deploy-contract", - mew: true, - cx: true - }, - viewWalletInfo: { - id: 10, - name: "NAV_ViewWallet", - url: "view-wallet-info", - mew: true, - cx: false - }, - help: { - id: 11, - name: "NAV_Help", - url: "help", - mew: true, - cx: true - } - }; - var currentTab = 0; - if(typeof chrome != 'undefined') - currentTab = chrome.windows === undefined ? 0 : 3; - return { - tabs: tabs, - currentTab: currentTab - }; -}; -module.exports = globalService; - - +},{"buffer":122}],32:[function(require,module,exports){ +'use strict'; +var globalService = function($http, $httpParamSerializerJQLike) { + globalFuncs.checkAndRedirectHTTPS(); + ajaxReq.http = $http; + ajaxReq.postSerializer = $httpParamSerializerJQLike; + + var tabs = { + generateWallet: { + id: 0, + name: "NAV_GenerateWallet", + url: "generate-wallet", + mew: true, + cx: false, + }, + bulkGenerate: { + id: 1, + name: "NAV_BulkGenerate", + url: "bulk-generate", + mew: false, + cx: false + }, + myWallet: { + id: 2, + name: "NAV_MyWallets", + url: "my-wallet", + mew: false, + cx: true + }, + addWallet: { + id: 3, + name: "NAV_AddWallet", + url: "add-wallet", + mew: false, + cx: true + }, + sendTransaction: { + id: 4, + name: "NAV_SendEther", + url: "send-transaction", + mew: true, + cx: true + }, + tokens: { + id: 5, + name: "NAV_SendTokens", + url: "send-tokens", + mew: true, + cx: true + }, + offlineTransaction: { + id: 6, + name: "NAV_Offline", + url:"offline-transaction", + mew: true, + cx: false + }, + dao: { + id: 7, + name: "NAV_WithdrawDAO", + url: "the-dao", + mew: true, + cx: true + }, + digix: { + id: 8, + name: "NAV_ClaimDGD", + url: "digix", + mew: true, + cx: true + }, + deployContract: { + id: 9, + name: "NAV_DeployContract", + url: "deploy-contract", + mew: true, + cx: true + }, + viewWalletInfo: { + id: 10, + name: "NAV_ViewWallet", + url: "view-wallet-info", + mew: true, + cx: false + }, + help: { + id: 11, + name: "NAV_Help", + url: "help", + mew: true, + cx: true + } + }; + var currentTab = 0; + if(typeof chrome != 'undefined') + currentTab = chrome.windows === undefined ? 0 : 3; + return { + tabs: tabs, + currentTab: currentTab + }; +}; +module.exports = globalService; + + },{}],33:[function(require,module,exports){ -'use strict'; -var walletService = function() { - return { - wallet: null, - password:'' - } -}; +'use strict'; +var walletService = function() { + return { + wallet: null, + password:'' + } +}; module.exports = walletService; },{}],34:[function(require,module,exports){ -'use strict'; -var Token = function(contractAddress, userAddress, symbol, decimal) { - this.contractAddress = contractAddress; - this.userAddress = userAddress - this.symbol = symbol;; - this.decimal = decimal; - this.setBalance(); - this.balance = "loading"; -} -Token.balanceHex = "0x70a08231"; -Token.transferHex = "0xa9059cbb"; -Token.popTokens = [{ - "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", - "symbol": "DAO", - "decimal": 16 -}, -{ - "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", - "symbol": "DGD", - "decimal": 9 -}, -{ - "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", - "symbol": "DGDb", - "decimal": 0 -}, -{ - "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "symbol": "MKR", - "decimal": 18 -}, -{ - "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", - "symbol": "XAUR", - "decimal": 8 -}, -{ - "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", - "symbol": "🦄 Unicorn", - "decimal": 0 -}, -{ - "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", - "symbol": "🍺 BeerCoin", - "decimal": 0 -} -]; -Token.prototype.getContractAddress = function() { - return this.contractAddress; -} -Token.prototype.getUserAddress = function() { - return this.userAddress; -} -Token.prototype.getSymbol = function() { - return this.symbol; -} -Token.prototype.getDecimal = function() { - return this.decimal; -} -Token.prototype.getBalance = function() { - return this.balance; -} -Token.prototype.getBalanceBN = function() { - return this.balanceBN; -} -Token.prototype.setBalance = function() { - var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); - var parentObj = this; - ajaxReq.getEthCall(balanceCall, function(data) { - if (!data.error) { - parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); - parentObj.balanceBN = new BigNumber(data.data).toString(); - } - }); -} -Token.prototype.getData = function(toAdd, value) { - try { - if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; - var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); - var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); - var data = Token.transferHex + toAdd + value; - return { - isError: false, - data: data - }; - } catch (e) { - return { - isError: true, - error: e - }; - } -} -module.exports = Token; +'use strict'; +var Token = function(contractAddress, userAddress, symbol, decimal) { + this.contractAddress = contractAddress; + this.userAddress = userAddress + this.symbol = symbol;; + this.decimal = decimal; + this.setBalance(); + this.balance = "loading"; +} +Token.balanceHex = "0x70a08231"; +Token.transferHex = "0xa9059cbb"; +Token.popTokens = [{ + "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "symbol": "DAO", + "decimal": 16 +}, +{ + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "symbol": "DGD", + "decimal": 9 +}, +{ + "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", + "symbol": "DGDb", + "decimal": 0 +}, +{ + "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", + "symbol": "MKR", + "decimal": 18 +}, +{ + "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "symbol": "XAUR", + "decimal": 8 +}, +{ + "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", + "symbol": "🦄 Unicorn", + "decimal": 0 +}, +{ + "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", + "symbol": "🍺 BeerCoin", + "decimal": 0 +} +]; +Token.prototype.getContractAddress = function() { + return this.contractAddress; +} +Token.prototype.getUserAddress = function() { + return this.userAddress; +} +Token.prototype.getSymbol = function() { + return this.symbol; +} +Token.prototype.getDecimal = function() { + return this.decimal; +} +Token.prototype.getBalance = function() { + return this.balance; +} +Token.prototype.getBalanceBN = function() { + return this.balanceBN; +} +Token.prototype.setBalance = function() { + var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); + var parentObj = this; + ajaxReq.getEthCall(balanceCall, function(data) { + if (!data.error) { + parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); + parentObj.balanceBN = new BigNumber(data.data).toString(); + } + }); +} +Token.prototype.getData = function(toAdd, value) { + try { + if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; + var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); + var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); + var data = Token.transferHex + toAdd + value; + return { + isError: false, + data: data + }; + } catch (e) { + return { + isError: true, + error: e + }; + } +} +module.exports = Token; },{}],35:[function(require,module,exports){ -// Arabic -'use strict'; -var ar = function() {} -ar.code = 'ar'; -ar.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ar; +// Arabic +'use strict'; +var ar = function() {} +ar.code = 'ar'; +ar.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ar; },{}],36:[function(require,module,exports){ -// Bulgarian -'use strict'; -var bg = function() {} -bg.code = 'bg'; -bg.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = bg; +// Bulgarian +'use strict'; +var bg = function() {} +bg.code = 'bg'; +bg.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = bg; },{}],37:[function(require,module,exports){ -// German -'use strict'; -var de = function() {} -de.code = 'de'; -de.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Deine Wallets', - NAV_AddWallet: 'Wallet hinzufügen', - NAV_GenerateWallet: 'Wallet erstellen', - NAV_BulkGenerate: 'Mehrere Wallets erstellen', - NAV_SendEther: 'Sende Ether', - NAV_SendTokens: 'Sende Tokens', - NAV_Offline: 'Sende offline', - NAV_WithdrawDAO: 'DAO Token entnehmen', - DAO_TitleLong: 'DAO Token in ETH umwandeln', - NAV_ClaimDGD: 'DGD geltend machen', - DGD_TitleLong: 'DGD Token geltend machen', - NAV_DeployContract: 'Vertrag aufstellen', - NAV_MyWallets: 'Meine Wallets', - NAV_ViewWallet: 'Wallet Infos anzeigen', - NAV_Help: 'Hilfe', - NAV_Contact: 'Kontakt', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Passwort', - x_Download: 'Herunterladen', - x_Address: 'Deine Adresse', - x_Save: 'Sichern', - x_Cancel: 'Abbrechen', - x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', - x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', - x_PrivKey2: 'Privater Schlüssel', - x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', - x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', - x_Json: 'JSON-Datei (unverschlüsselt)', - x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', - x_PrintShort: 'Drucken', - x_Print: 'Papier-Version des Wallets drucken', - x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', - x_CSV: 'CSV-Datei (unverschlüsselt)', - x_TXT: 'TXT-Datei (unverschlüsselt)', - - /* Header */ - MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', - CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', - FOOTER_1b: 'Erstellt von', - FOOTER_2: 'Spenden sind herzlich willkommen:', - FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Kontostand: ', - sidebar_TokenBal: 'Token Kontostand: ', - sidebar_Equiv: 'Währungs-Gegenwerte: ', - sidebar_TransHistory: 'Transaktions-Historie: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', - sidebar_donate: 'Spenden', - sidebar_thanks: 'Dankeschön!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', - decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', - decrypt_Select: 'Wallet auswählen:', - - /* Add Wallet */ - ADD_Label_1: 'Was möchtest du tun?', - ADD_Radio_1: 'Neues Wallet erstellen', - ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', - ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', - ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', - ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', - ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Label_2: 'Wähle ein Kürzel:', - ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', - ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', - ADD_Label_5: 'Kontoadresse eingeben: ', - ADD_Label_6: 'Wallet entsperren', - ADD_Label_6_short: 'Entsperren', - ADD_Label_7: 'Kontoadresse hinzufügen', - - /* Generate Wallets */ - GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', - GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', - GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', - GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', - GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', - GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', - GEN_Label_3: 'Sichere deine Kontoadresse.', - GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Anzahl zu generierender Wallets', - BULK_Label_2: 'Wallets erstellen', - BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', - - /* Sending Ether and Tokens */ - SEND_addr: 'An Adresse: ', - SEND_amount: 'Zu sendender Betrag: ', - SEND_amount_short: 'Betrag', - SEND_custom: 'Benutzerdefiniert', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', - SEND_generate: 'Erzeuge Transaktion', - SEND_raw: 'Transaktion (Binärformat)', - SEND_signed: 'Signierte Transaktion', - SEND_trans: 'Sende Transaktion', - SENDModal_Title: 'Achtung! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du bist dabei, ', - SENDModal_Content_2: ' an die Adresse ', - SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', - SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', - SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', - SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-Symbol: ', - TOKEN_Dec: 'Dezimalstellen: ', - - /* Send Transaction */ - TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', - TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', - TRANS_standard: 'ETH (Standard Transaktion)', - TRANS_eth: 'Nur ETH', - TRANS_etc: 'Nur ETC', - TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', - TRANS_data: 'Daten: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', - TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', - TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', - TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', - TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', - TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', - TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', - - /* Offline Transaction */ - OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', - OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', - OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', - OFFLINE_Step1_Button: 'Informationen sammeln', - OFFLINE_Step1_Label_1: 'Von Adresse: ', - OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', - OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', - OFFLINE_Step2_Label_1: 'An Adresse: ', - OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', - OFFLINE_Step2_Label_3: 'Gaspreis ', - OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_6: 'Daten', - OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', - OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', - OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', - OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', - - /* DAO */ - DAO_bal1: 'Bei Block 1,919,999', - DAO_bal2: 'momentan', // momentaner? - DAO_TitleETH: 'DAO Token in ETH umwandeln', - DAO_TitleETC: 'DAO Token in ETC umwandeln', - DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', - DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', - DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', - DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', - DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', - DAOModal_Title: 'Nur zur Sicherheit...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Du bist dabei', - DAOModal_2: 'DAO Token an', - DAOModal_3: 'zu senden im Austausch für', // "in return for" - - /* Digix */ - DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', - DGD_Label_1: 'Erwartete Gebühren:', - DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ - DGD_Label_3: 'Gaspreis:', - DGD_Generate: 'Anspruch geltend machen', - DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode generieren', - DEP_generated: 'Generierter Bytecode', - DEP_signtx: 'Transaktion signieren', - DEP_interface: 'Generiertes Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Spitzname', - MYWAL_Address: 'Wallet Addresse', - MYWAL_Bal: 'Guthaben', - MYWAL_Edit: 'Bearbeiten', - MYWAL_View: 'Ansehen', - MYWAL_Remove: 'Löschen', - MYWAL_RemoveWal: 'Wallet löschen:', - MYWAL_WatchOnly: 'Deine Watch-Only Konten', - MYWAL_Viewing: 'Du siehst Wallet: ', - MYWAL_Hide: 'Wallet Info verstecken', - MYWAL_Edit_2: 'Wallet bearbeiten: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', - MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', - MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', - VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', - VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', - - /* Chrome Extension */ - CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', - CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Bitte gültigen Betrag eingeben', - ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', - ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', - ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', - ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', - ERROR_6: 'Ungültige Addresse. ', - ERROR_7: 'Ungültiges Passwort. ', - ERROR_8: 'Ungültiger Betrag. ', - ERROR_9: 'Ungültiges Gaslimit. ', - ERROR_10: 'Ungültiger Datenwert. ', - ERROR_11: 'Ungültiger Gasbetrag. ', - ERROR_12: 'Ungültige Nonce. ', - ERROR_13: 'Ungültige unterzeichnete Transaktion. ', - ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', - ERROR_15: 'Wallet nicht gefunden. ', - ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', - ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', - ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', - ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', - ERROR_20: 'Ungültiges Symbol', - SUCCESS_1: 'Gültige Addresse', - SUCCESS_2: 'Wallet erfolgreich entschlüsselt', - SUCCESS_3: 'Transaktion übermittelt. TX ID: ', - SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', - SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', - SUCCESS_6: 'Ausgewählte Datei: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', - TranslatorName_1: 'christoph2806 · K ·', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', - TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'huhn_solo · ', - TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', - TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: 'danielsun174 · ffidan61', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', - HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', - HELP_Remind_Title: 'Ein paar Reminder', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', - HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', - - HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', - HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', - HELP_0_Desc_2: 'Erstelle ein neues Wallet.', - HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', - HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', - HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', - - HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', - HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', - HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', - HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', - HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', - HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', - - HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', - HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', - HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', - HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', - HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', - HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', - HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Entpacke es.', - HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Wenn du an einem PC bist:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = de; +// German +'use strict'; +var de = function() {} +de.code = 'de'; +de.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Deine Wallets', + NAV_AddWallet: 'Wallet hinzufügen', + NAV_GenerateWallet: 'Wallet erstellen', + NAV_BulkGenerate: 'Mehrere Wallets erstellen', + NAV_SendEther: 'Sende Ether', + NAV_SendTokens: 'Sende Tokens', + NAV_Offline: 'Sende offline', + NAV_WithdrawDAO: 'DAO Token entnehmen', + DAO_TitleLong: 'DAO Token in ETH umwandeln', + NAV_ClaimDGD: 'DGD geltend machen', + DGD_TitleLong: 'DGD Token geltend machen', + NAV_DeployContract: 'Vertrag aufstellen', + NAV_MyWallets: 'Meine Wallets', + NAV_ViewWallet: 'Wallet Infos anzeigen', + NAV_Help: 'Hilfe', + NAV_Contact: 'Kontakt', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Passwort', + x_Download: 'Herunterladen', + x_Address: 'Deine Adresse', + x_Save: 'Sichern', + x_Cancel: 'Abbrechen', + x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', + x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', + x_PrivKey2: 'Privater Schlüssel', + x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', + x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', + x_Json: 'JSON-Datei (unverschlüsselt)', + x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', + x_PrintShort: 'Drucken', + x_Print: 'Papier-Version des Wallets drucken', + x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', + x_CSV: 'CSV-Datei (unverschlüsselt)', + x_TXT: 'TXT-Datei (unverschlüsselt)', + + /* Header */ + MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', + CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', + FOOTER_1b: 'Erstellt von', + FOOTER_2: 'Spenden sind herzlich willkommen:', + FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Kontostand: ', + sidebar_TokenBal: 'Token Kontostand: ', + sidebar_Equiv: 'Währungs-Gegenwerte: ', + sidebar_TransHistory: 'Transaktions-Historie: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', + sidebar_donate: 'Spenden', + sidebar_thanks: 'Dankeschön!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', + decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', + decrypt_Select: 'Wallet auswählen:', + + /* Add Wallet */ + ADD_Label_1: 'Was möchtest du tun?', + ADD_Radio_1: 'Neues Wallet erstellen', + ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', + ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', + ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', + ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', + ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Label_2: 'Wähle ein Kürzel:', + ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', + ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', + ADD_Label_5: 'Kontoadresse eingeben: ', + ADD_Label_6: 'Wallet entsperren', + ADD_Label_6_short: 'Entsperren', + ADD_Label_7: 'Kontoadresse hinzufügen', + + /* Generate Wallets */ + GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', + GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', + GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', + GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', + GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', + GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', + GEN_Label_3: 'Sichere deine Kontoadresse.', + GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Anzahl zu generierender Wallets', + BULK_Label_2: 'Wallets erstellen', + BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', + + /* Sending Ether and Tokens */ + SEND_addr: 'An Adresse: ', + SEND_amount: 'Zu sendender Betrag: ', + SEND_amount_short: 'Betrag', + SEND_custom: 'Benutzerdefiniert', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', + SEND_generate: 'Erzeuge Transaktion', + SEND_raw: 'Transaktion (Binärformat)', + SEND_signed: 'Signierte Transaktion', + SEND_trans: 'Sende Transaktion', + SENDModal_Title: 'Achtung! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du bist dabei, ', + SENDModal_Content_2: ' an die Adresse ', + SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', + SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', + SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', + SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-Symbol: ', + TOKEN_Dec: 'Dezimalstellen: ', + + /* Send Transaction */ + TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', + TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', + TRANS_standard: 'ETH (Standard Transaktion)', + TRANS_eth: 'Nur ETH', + TRANS_etc: 'Nur ETC', + TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', + TRANS_data: 'Daten: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', + TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', + TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', + TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', + TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', + TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', + TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', + + /* Offline Transaction */ + OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', + OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', + OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', + OFFLINE_Step1_Button: 'Informationen sammeln', + OFFLINE_Step1_Label_1: 'Von Adresse: ', + OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', + OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', + OFFLINE_Step2_Label_1: 'An Adresse: ', + OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', + OFFLINE_Step2_Label_3: 'Gaspreis ', + OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_6: 'Daten', + OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', + OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', + OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', + OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', + + /* DAO */ + DAO_bal1: 'Bei Block 1,919,999', + DAO_bal2: 'momentan', // momentaner? + DAO_TitleETH: 'DAO Token in ETH umwandeln', + DAO_TitleETC: 'DAO Token in ETC umwandeln', + DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', + DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', + DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', + DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', + DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', + DAOModal_Title: 'Nur zur Sicherheit...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Du bist dabei', + DAOModal_2: 'DAO Token an', + DAOModal_3: 'zu senden im Austausch für', // "in return for" + + /* Digix */ + DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', + DGD_Label_1: 'Erwartete Gebühren:', + DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ + DGD_Label_3: 'Gaspreis:', + DGD_Generate: 'Anspruch geltend machen', + DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode generieren', + DEP_generated: 'Generierter Bytecode', + DEP_signtx: 'Transaktion signieren', + DEP_interface: 'Generiertes Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Spitzname', + MYWAL_Address: 'Wallet Addresse', + MYWAL_Bal: 'Guthaben', + MYWAL_Edit: 'Bearbeiten', + MYWAL_View: 'Ansehen', + MYWAL_Remove: 'Löschen', + MYWAL_RemoveWal: 'Wallet löschen:', + MYWAL_WatchOnly: 'Deine Watch-Only Konten', + MYWAL_Viewing: 'Du siehst Wallet: ', + MYWAL_Hide: 'Wallet Info verstecken', + MYWAL_Edit_2: 'Wallet bearbeiten: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', + MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', + MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', + VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', + VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', + + /* Chrome Extension */ + CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', + CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Bitte gültigen Betrag eingeben', + ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', + ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', + ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', + ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', + ERROR_6: 'Ungültige Addresse. ', + ERROR_7: 'Ungültiges Passwort. ', + ERROR_8: 'Ungültiger Betrag. ', + ERROR_9: 'Ungültiges Gaslimit. ', + ERROR_10: 'Ungültiger Datenwert. ', + ERROR_11: 'Ungültiger Gasbetrag. ', + ERROR_12: 'Ungültige Nonce. ', + ERROR_13: 'Ungültige unterzeichnete Transaktion. ', + ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', + ERROR_15: 'Wallet nicht gefunden. ', + ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', + ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', + ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', + ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', + ERROR_20: 'Ungültiges Symbol', + SUCCESS_1: 'Gültige Addresse', + SUCCESS_2: 'Wallet erfolgreich entschlüsselt', + SUCCESS_3: 'Transaktion übermittelt. TX ID: ', + SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', + SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', + SUCCESS_6: 'Ausgewählte Datei: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', + TranslatorName_1: 'christoph2806 · K ·', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', + TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'huhn_solo · ', + TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', + TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: 'danielsun174 · ffidan61', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', + HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', + HELP_Remind_Title: 'Ein paar Reminder', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', + HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', + + HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', + HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', + HELP_0_Desc_2: 'Erstelle ein neues Wallet.', + HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', + HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', + HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', + + HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', + HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', + HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', + HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', + HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', + HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', + + HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', + HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', + HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', + HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', + HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', + HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', + HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Entpacke es.', + HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Wenn du an einem PC bist:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = de; },{}],38:[function(require,module,exports){ -// Greek -'use strict'; -var el = function() {} -el.code = 'el'; -el.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - SUCCESS_6: 'File Selected: ', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* Navigation*/ - NAV_YourWallets: 'Τα Πορτοφόλια σας', - NAV_AddWallet: 'Προσθήκη Πορτοφολιού', - NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', - NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', - NAV_SendEther: 'Αποστολή Ether', - NAV_SendTokens: 'Αποστολή Tokens', - NAV_Offline: 'Αποστολή εκτός Σύνδεσης', - NAV_WithdrawDAO: 'Ανάληψη DAO', - DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', - NAV_ClaimDGD: 'Διεκδίκηση DGD', - DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', - NAV_MyWallets: 'Τα Πορτοφόλια μου', - NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', - NAV_Help: 'Βοήθεια', - NAV_Contact: 'Επικοινωνία', - - /* General */ - x_Wallet: 'Πορτοφόλι', - x_Password: 'Κωδικός', - x_Download: 'Λήψη', - x_Address: 'Η Διεύθυνσή σας', - x_Save: 'Αποθήκευση', - x_Cancel: 'Ακύρωση', - x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', - x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', - x_PrivKey2: 'Ιδιωτικό Κλειδί', - x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', - x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', - x_Keystore2: 'Αρχείο Keystore/JSON', - x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', - x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', - x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', - x_PrintShort: 'Εκτύπωση', - x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', - x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', - x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', - x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', - - /* Header */ - MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', - CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', - MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - - /* Footer */ - FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', - FOOTER_1b: 'Δημιουργήθηκε από', - FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', - FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', - - /* Sidebar */ - sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', - sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', - sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', - sidebar_TokenBal: 'Υπόλοιπο Token: ', - sidebar_Equiv: 'Ισότιμες Αξίες: ', - sidebar_TransHistory: 'Ιστορικό Συναλλαγών', - sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', - sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', - sidebar_donate: 'Δωρεά', - sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', - decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', - decrypt_Select: 'Επιλέξτε Πορτοφόλι:', - - /* Add Wallet */ - ADD_Label_1: 'Τι θα θέλατε να κάνετε;', - ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', - ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', - ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', - ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', - ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', - ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', - ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', - ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', - ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', - ADD_Label_6_short: 'Ξεκλείδωμα', - ADD_Label_7: 'Προσθήκη Λογαριασμού', - - /* Generate Wallets */ - GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', - GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', - GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', - GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', - GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', - GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', - GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', - GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', - BULK_Label_2: 'Δημιουργία Πορτοφολιών', - BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Προς Διεύθυνση: ', - SEND_amount: 'Ποσό για αποστολή: ', - SEND_amount_short: 'Ποσό', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', - SEND_raw: 'Ακατέργαστη Συναλλαγή', - SEND_signed: 'Υπογεγραμμένη Συναλλαγή', - SEND_trans: 'Αποστολή Συναλλαγής', - SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', - SENDModal_Title: 'Προσοχή! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Πρόκειται να στείλετε', - SENDModal_Content_2: 'στη διεύθυνση', - SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', - SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', - SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', - SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', - SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', - - /* Tokens */ - TOKEN_Addr: 'Διεύθυνση: ', - TOKEN_Symbol: 'Σύμβολο Token: ', - TOKEN_Dec: 'Δεκαδικά: ', - - /* Send Transaction */ - TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', - TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', - TRANS_standard: 'ETH (Standard Συναλλαγή)', - TRANS_eth: 'Μόνο ETH', - TRANS_etc: 'Μόνο ETC', - TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', - TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', - TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', - TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', - TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', - - /* Offline Transaction */ - OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', - OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', - OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', - OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', - OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', - OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', - OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', - OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', - OFFLINE_Step2_Label_3: 'Τιμή Gas ', - OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_4: 'Όριο Gas ', - OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', - OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', - OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', - - /* DAO */ - DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', - DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', - DAOModal_Title: 'Απλά για σιγουριά...', - - /* Digix */ - DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', - DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', - DGD_Label_3: 'Τιμή Gas:', - DGD_Generate: 'Δημιουργία Διεκδίκησης', - DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', - - /* My Wallet */ - MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', - MYWAL_Address: 'Διεύθυνση Πορτοφολιού', - MYWAL_Bal: 'Υπόλοιπο', - MYWAL_Edit: 'Επεξεργασία', - MYWAL_View: 'Προβολή', - MYWAL_Remove: 'Αφαίρεση', - MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', - MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', - MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', - MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', - MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', - MYWAL_Name: 'Όνομα Πορτοφολιού', - MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', - MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', - MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', - VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', - - /* CX */ - CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', - CX_quicksend: 'ΤαχυΑποστολή', - - /* Error Messages */ - ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', - ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', - ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', - ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', - ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', - ERROR_6: 'Λάθος Διεύθυνση. ', - ERROR_7: 'Λάθος κωδικός. ', - ERROR_8: 'Λάθος ποσό. ', - ERROR_9: 'Λάθος όριο gas. ', - ERROR_10: 'Λάθος data value. ', - ERROR_11: 'Λάθος ποσό gas. ', - ERROR_12: 'Λάθος nonce. ', - ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', - ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', - ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', - ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', - ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', - ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', - ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', - ERROR_20: 'Λάθος σύμβολο', - SUCCESS_1: 'Έγκυρη διεύθυνση', - SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', - SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', - SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', - SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', - TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'LefterisJP', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'Nikos Vavoulas ', - TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', - HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', - HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', - HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', - HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', - HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', - - HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', - HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', - HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', - HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', - HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', - HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = el; +// Greek +'use strict'; +var el = function() {} +el.code = 'el'; +el.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + SUCCESS_6: 'File Selected: ', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Τα Πορτοφόλια σας', + NAV_AddWallet: 'Προσθήκη Πορτοφολιού', + NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', + NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', + NAV_SendEther: 'Αποστολή Ether', + NAV_SendTokens: 'Αποστολή Tokens', + NAV_Offline: 'Αποστολή εκτός Σύνδεσης', + NAV_WithdrawDAO: 'Ανάληψη DAO', + DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', + NAV_ClaimDGD: 'Διεκδίκηση DGD', + DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', + NAV_MyWallets: 'Τα Πορτοφόλια μου', + NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', + NAV_Help: 'Βοήθεια', + NAV_Contact: 'Επικοινωνία', + + /* General */ + x_Wallet: 'Πορτοφόλι', + x_Password: 'Κωδικός', + x_Download: 'Λήψη', + x_Address: 'Η Διεύθυνσή σας', + x_Save: 'Αποθήκευση', + x_Cancel: 'Ακύρωση', + x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', + x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', + x_PrivKey2: 'Ιδιωτικό Κλειδί', + x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', + x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', + x_Keystore2: 'Αρχείο Keystore/JSON', + x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', + x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', + x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', + x_PrintShort: 'Εκτύπωση', + x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', + x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', + x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', + x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', + + /* Header */ + MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', + CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', + MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + + /* Footer */ + FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', + FOOTER_1b: 'Δημιουργήθηκε από', + FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', + FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', + + /* Sidebar */ + sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', + sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', + sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', + sidebar_TokenBal: 'Υπόλοιπο Token: ', + sidebar_Equiv: 'Ισότιμες Αξίες: ', + sidebar_TransHistory: 'Ιστορικό Συναλλαγών', + sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', + sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', + sidebar_donate: 'Δωρεά', + sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', + decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', + decrypt_Select: 'Επιλέξτε Πορτοφόλι:', + + /* Add Wallet */ + ADD_Label_1: 'Τι θα θέλατε να κάνετε;', + ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', + ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', + ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', + ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', + ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', + ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', + ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', + ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', + ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', + ADD_Label_6_short: 'Ξεκλείδωμα', + ADD_Label_7: 'Προσθήκη Λογαριασμού', + + /* Generate Wallets */ + GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', + GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', + GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', + GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', + GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', + GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', + GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', + GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', + BULK_Label_2: 'Δημιουργία Πορτοφολιών', + BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Προς Διεύθυνση: ', + SEND_amount: 'Ποσό για αποστολή: ', + SEND_amount_short: 'Ποσό', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', + SEND_raw: 'Ακατέργαστη Συναλλαγή', + SEND_signed: 'Υπογεγραμμένη Συναλλαγή', + SEND_trans: 'Αποστολή Συναλλαγής', + SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', + SENDModal_Title: 'Προσοχή! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Πρόκειται να στείλετε', + SENDModal_Content_2: 'στη διεύθυνση', + SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', + SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', + SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', + SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', + SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', + + /* Tokens */ + TOKEN_Addr: 'Διεύθυνση: ', + TOKEN_Symbol: 'Σύμβολο Token: ', + TOKEN_Dec: 'Δεκαδικά: ', + + /* Send Transaction */ + TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', + TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', + TRANS_standard: 'ETH (Standard Συναλλαγή)', + TRANS_eth: 'Μόνο ETH', + TRANS_etc: 'Μόνο ETC', + TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', + TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', + TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', + TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', + TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', + + /* Offline Transaction */ + OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', + OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', + OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', + OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', + OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', + OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', + OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', + OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', + OFFLINE_Step2_Label_3: 'Τιμή Gas ', + OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_4: 'Όριο Gas ', + OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', + OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', + OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', + + /* DAO */ + DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', + DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', + DAOModal_Title: 'Απλά για σιγουριά...', + + /* Digix */ + DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', + DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', + DGD_Label_3: 'Τιμή Gas:', + DGD_Generate: 'Δημιουργία Διεκδίκησης', + DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', + + /* My Wallet */ + MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', + MYWAL_Address: 'Διεύθυνση Πορτοφολιού', + MYWAL_Bal: 'Υπόλοιπο', + MYWAL_Edit: 'Επεξεργασία', + MYWAL_View: 'Προβολή', + MYWAL_Remove: 'Αφαίρεση', + MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', + MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', + MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', + MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', + MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', + MYWAL_Name: 'Όνομα Πορτοφολιού', + MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', + MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', + MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', + VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', + + /* CX */ + CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', + CX_quicksend: 'ΤαχυΑποστολή', + + /* Error Messages */ + ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', + ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', + ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', + ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', + ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', + ERROR_6: 'Λάθος Διεύθυνση. ', + ERROR_7: 'Λάθος κωδικός. ', + ERROR_8: 'Λάθος ποσό. ', + ERROR_9: 'Λάθος όριο gas. ', + ERROR_10: 'Λάθος data value. ', + ERROR_11: 'Λάθος ποσό gas. ', + ERROR_12: 'Λάθος nonce. ', + ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', + ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', + ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', + ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', + ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', + ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', + ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', + ERROR_20: 'Λάθος σύμβολο', + SUCCESS_1: 'Έγκυρη διεύθυνση', + SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', + SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', + SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', + SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', + TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'LefterisJP', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'Nikos Vavoulas ', + TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', + HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', + HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', + HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', + HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', + HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', + + HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', + HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', + HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', + HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', + HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', + HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = el; },{}],39:[function(require,module,exports){ -// English -'use strict'; -var en = function() {} -en.code = 'en'; -en.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: '', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = en; +// English +'use strict'; +var en = function() {} +en.code = 'en'; +en.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: '', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = en; },{}],40:[function(require,module,exports){ -// Spanish -'use strict'; -var es = function() {} -es.code = 'es'; -es.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Tus Carteras', - NAV_AddWallet: 'Añadir Cartera', - NAV_GenerateWallet: 'Generar Cartera', - NAV_BulkGenerate: 'Generar en Masa', - NAV_SendEther: 'Enviar Ether', - NAV_SendTokens: 'Enviar Tokens', - NAV_Offline: 'Enviar Desconectado', - NAV_WithdrawDAO: 'Retirar DAO', - DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', - NAV_ClaimDGD: 'Reclamar DGD', - DGD_TitleLong: 'Reclamar Tus Vales DGD', - NAV_MyWallets: 'Mis Carteras', - NAV_ViewWallet: 'Ver Información de las Carteras', - NAV_Help: 'Ayuda', - NAV_Contact: 'Contacto', - - /* General */ - x_Password: 'Contraseña', - x_Download: 'Descargar', - x_Address: 'Tu dirección', - x_Save: 'Guardar', - x_Cancel: 'Cancelar', - x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', - x_PrivKey: 'Clave Privada (sin encriptar)', - x_PrivKey2: 'Clave Privada', - x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', - x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', - x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', - x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', - x_Json: 'Fichero JSON (sin encriptar)', - x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', - x_PrintShort: 'Imprimir', - x_Print: 'Imprimir Cartera de Papel', - x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', - x_CSV: 'Fichero CSV (sin encriptar)', - x_TXT: 'Fichero TXT (sin encriptar)', - x_Wallet: 'Cartera', - -/* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Gracias a nuestros traductores: ', - TranslatorName_1: 'Ignacio Fernández del Álamo', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = es; +// Spanish +'use strict'; +var es = function() {} +es.code = 'es'; +es.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Tus Carteras', + NAV_AddWallet: 'Añadir Cartera', + NAV_GenerateWallet: 'Generar Cartera', + NAV_BulkGenerate: 'Generar en Masa', + NAV_SendEther: 'Enviar Ether', + NAV_SendTokens: 'Enviar Tokens', + NAV_Offline: 'Enviar Desconectado', + NAV_WithdrawDAO: 'Retirar DAO', + DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', + NAV_ClaimDGD: 'Reclamar DGD', + DGD_TitleLong: 'Reclamar Tus Vales DGD', + NAV_MyWallets: 'Mis Carteras', + NAV_ViewWallet: 'Ver Información de las Carteras', + NAV_Help: 'Ayuda', + NAV_Contact: 'Contacto', + + /* General */ + x_Password: 'Contraseña', + x_Download: 'Descargar', + x_Address: 'Tu dirección', + x_Save: 'Guardar', + x_Cancel: 'Cancelar', + x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', + x_PrivKey: 'Clave Privada (sin encriptar)', + x_PrivKey2: 'Clave Privada', + x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', + x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', + x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', + x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', + x_Json: 'Fichero JSON (sin encriptar)', + x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', + x_PrintShort: 'Imprimir', + x_Print: 'Imprimir Cartera de Papel', + x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', + x_CSV: 'Fichero CSV (sin encriptar)', + x_TXT: 'Fichero TXT (sin encriptar)', + x_Wallet: 'Cartera', + +/* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Gracias a nuestros traductores: ', + TranslatorName_1: 'Ignacio Fernández del Álamo', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = es; },{}],41:[function(require,module,exports){ -// Estonian -'use strict'; -var et = function() {} -et.code = 'et'; -et.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = et; +// Estonian +'use strict'; +var et = function() {} +et.code = 'et'; +et.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = et; },{}],42:[function(require,module,exports){ -// French -'use strict'; -var fr = function() {} -fr.code = 'fr'; -fr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Vos portefeuilles', - NAV_AddWallet: 'Ajout de portefeuille', - NAV_GenerateWallet: 'Génération de portefeuille', - NAV_BulkGenerate: 'Génération de portefeuilles par lots', - NAV_SendEther: 'Envoi d\'Ether', - NAV_SendTokens: 'Envoi de tokens', - NAV_Offline: 'Envoi hors-ligne', - NAV_WithdrawDAO: 'Retrait de la DAO', - DAO_TitleLong: 'Échange de tokens DAO contre des ETH', - NAV_ClaimDGD: 'Réclamation de DGD', - DGD_TitleLong: 'Réclamation de vos tokens DGD', - NAV_DeployContract: 'Déployer un contrat', - NAV_MyWallets: 'Mes portefeuilles', - NAV_ViewWallet: 'Visualisation d\'un portefeuille', - NAV_Help: 'Aide', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Portefeuille', - x_Password: 'Mot de passe', - x_Download: 'Télécharger', - x_Address: 'Votre adresse', - x_Save: 'Sauvegarder', - x_Cancel: 'Annuler', - x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', - x_PrivKey: 'Clé privée (non-chiffrée)', - x_PrivKey2: 'Clé privée', - x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', - x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', - x_Keystore2: 'Fichier Keystore/JSON', - x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', - x_Json: 'Fichier JSON (non-chiffré)', - x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', - x_PrintShort: 'Imprimer', - x_Print: 'Imprimer un portefeuille papier', - x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', - x_CSV: 'Fichier CSV (non-chiffré)', - x_TXT: 'Fichier TXT (non-chiffré)', - - /* Header */ - MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', - CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', - MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', - CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', - - /* Footer */ - FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', - FOOTER_1b: 'Créé par', - FOOTER_2: 'Donations extrêmement appréciées :', - FOOTER_3: 'Génération de portefeuille côté client par', - FOOTER_4: 'Avertissement', - - /* Sidebar */ - sidebar_AccountInfo: 'Informations du compte : ', - sidebar_AccountAddr: 'Addresse du compte : ', - sidebar_AccountBal: 'Solde du compte : ', - sidebar_TokenBal: 'Solde en tokens : ', - sidebar_Equiv: 'Valeur correspondante : ', - sidebar_TransHistory: 'Historique des transactions: ', - sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', - sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', - sidebar_donate: 'Faire une donation', - sidebar_thanks: 'MERCI !!!', - - /* Decrypt Panel */ - decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', - decrypt_Title: 'Choisissez le format de votre clé privée', - decrypt_Select: 'Choisissez un portefeuille :', - - /* Add Wallet */ - ADD_Label_1: 'Que voulez-vous faire ?', - ADD_Radio_1: 'Générer un nouveau portefeuille', - ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', - ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', - ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', - ADD_Radio_3: 'Collez/saisissez votre clé privée', - ADD_Radio_4: 'Ajoutez un compte', - ADD_Label_2: 'Nommez votre compte :', - ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', - ADD_Label_4: 'Ajouter un compte à afficher', - ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', - ADD_Label_5: 'Entrez l\'adresse : ', - ADD_Label_6: 'Déverrouiller votre portefeuille', - ADD_Label_6_short: 'Déverrouiller', - ADD_Label_7: 'Ajouter un compte', - - /* Generate Wallets */ - GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', - GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', - GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', - GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', - GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', - GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', - GEN_Label_3: 'Sauvegarder votre portefeuille.', - GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Nombre de portefeuilles à générer', - BULK_Label_2: 'Générer les portefeuilles', - BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Adresse de destination : ', - SEND_amount: 'Montant à envoyer : ', - SEND_amount_short: 'Montant', - SEND_custom: 'Spécifique', - SEND_gas: 'Gaz', - SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter - SEND_generate: 'Générer la transaction', - SEND_raw: 'Transaction brute', - SEND_signed: 'Transaction signée', - SEND_trans: 'Envoyer la transaction', - SENDModal_Title: 'Attention ! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', - SENDModal_Content_2: 'à l\'adresse', - SENDModal_Content_3: 'En êtes-vous sûr ?', - SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', - SENDModal_No: 'Non, je veux sortir d\'ici !', - SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adresse : ', - TOKEN_Symbol: 'Symbole du token : ', - TOKEN_Dec: 'Décimales : ', - - /* Send Transaction */ - TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', - TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', - TRANS_standard: 'ETH (transaction standard)', - TRANS_eth: 'ETH seulement', - TRANS_etc: 'ETC seulement', - TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', - TRANS_data: ' Données : ', - TRANS_gas: ' Gaz : ', - TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', - TRANSModal_Content_0: 'Note sur les transactions et services divers :', - TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', - TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', - TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', - TRANSModal_Yes: 'Génial, j\'ai compris.', - TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', - - /* Offline Transaction */ - OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', - OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', - OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', - OFFLINE_Step1_Button: 'Générer l\'information', - OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', - OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', - OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', - OFFLINE_Step2_Label_1: 'Adresse de destination : ', - OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', - OFFLINE_Step2_Label_3: 'Prix du gaz ', - OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_4: 'Limite de gaz ', - OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_6: 'Données', - OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', - OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', - OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', - OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', - - /* DAO */ - DAO_bal1: 'au bloc 1.919.999', - DAO_bal2: 'actuel', - DAO_TitleETH: 'Retrait de DAO en ETH', - DAO_TitleETC: 'Retrait de DAO en ETC', - DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', - DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', - DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', - DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', - DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', - DAOModal_Title: 'Juste pour être sûr...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Vous êtes sur le point de retirer', - DAOModal_2: 'tokens DAO vers', - DAOModal_3: 'pour', // "in return for" - - /* Digix */ - DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', - DGD_Label_1: 'Estimation des frais consommés :', - DGD_Label_2: 'Frais maximum fournis :', - DGD_Label_3: 'Prix du gaz :', - DGD_Generate: 'Générer une réclamation', - DGD_Content: 'Vous allez réclamer vos tokens DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Générer le bytecode', - DEP_generated: 'Bytecode généré', - DEP_signtx: 'Signer la transaction', - DEP_interface: 'Interface générée', - - /* My Wallet */ - MYWAL_Nick: 'Nom du portefeuille', - MYWAL_Address: 'Adresse du portefeuille', - MYWAL_Bal: 'Solde', - MYWAL_Edit: 'Modifier', - MYWAL_View: 'Voir', - MYWAL_Remove: 'Supprimer', - MYWAL_RemoveWal: 'Supprimer le portefeuille :', - MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', - MYWAL_Viewing: 'Affichage des portefeuilles : ', - MYWAL_Hide: 'Cacher les informations sur le portefeuille', - MYWAL_Edit_2: 'Modifier le portefeuille : ', - MYWAL_Name: 'Nom du portefeuille', - MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', - MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', - MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', - VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', - - /* Chrome Extension */ - CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', - CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Veuillez entrer un montant valide.', - ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', - ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', - ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', - ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', - ERROR_6: 'Adresse invalide. ', - ERROR_7: 'Mot de passe invalide. ', - ERROR_8: 'Montant invalide. ', - ERROR_9: 'Limite de gaz invalide. ', - ERROR_10: 'Valeur des donnnées invalide. ', - ERROR_11: 'Montant de gaz invalide. ', - ERROR_12: 'Nonce invalide. ', - ERROR_13: 'Transaction signée invalide. ', - ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', - ERROR_15: 'Portefeuille non trouvé. ', - ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', - ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', - ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', - ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', - ERROR_20: 'Symbole invalide', - SUCCESS_1: 'Adresse valide', - SUCCESS_2: 'Portefeuille déchiffré avec succès', - SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', - SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', - SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', - SUCCESS_6: 'Fichier sélectionné : ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', - /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ - TranslatorName_2: 'Jean Zundel · ', - TranslatorAddr_2: '', - /* Translator 2: */ - TranslatorName_3: 'girards', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', - HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', - HELP_Remind_Title: 'Quelques rappels :', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', - HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', - - HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', - HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', - HELP_0_Desc_2: 'Créez un nouveau portefeuille.', - HELP_0_Desc_3: 'Sauvegardez le portefeuille.', - HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', - HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', - - HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', - HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', - HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', - HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', - HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', - HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', - - HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', - HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', - HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', - HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', - HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', - HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', - HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', - - HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', - HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', - HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', - HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', - HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', - HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', - HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', - - HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', - HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', - HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', - HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', - HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', - HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', - - HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', - HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', - HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', - HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', - HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', - HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', - HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', - HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', - HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', - HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', - HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', - - - HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', - HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', - HELP_4CX_Desc_2: 'Envoi rapide :', - HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', - HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', - HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', - HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', - HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', - HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', - HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', - HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', - HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', - HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', - - HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', - HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', - HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', - HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_5_Desc_5: 'Dézippez-le.', - HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', - HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', - HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', - - HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', - HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', - HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', - HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', - HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', - HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', - HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', - HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Si vous êtes sur un PC :', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = fr; +// English +'use strict'; +var fi = function() {} +fi.code = 'fi'; +fi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Sinun Lompakkosi', + NAV_AddWallet: 'Lisää Lompakko', + NAV_GenerateWallet: 'Luo Lompakko', + NAV_BulkGenerate: 'Massa Generoi', + NAV_SendEther: 'Lähetä Etheriä', + NAV_SendTokens: 'Lähetä Tokeneita', + NAV_Offline: 'Lähetä Offlinena', + NAV_WithdrawDAO: 'Nosta DAO', + DAO_TitleLong: 'Muuta DAO Tokenisi ETH:iksi', + NAV_ClaimDGD: 'Lunasta DGD', + DGD_TitleLong: 'Lunasta DGD Tokenisi', + NAV_MyWallets: 'Minun Lompakkoni', + NAV_ViewWallet: 'Tarkista Lompakon Tiedot', + NAV_Help: 'Apua', + NAV_Contact: 'Yhteystiedot', + + /* General */ + x_Password: 'Salasana', + x_Download: 'Lataa', + x_Address: 'Sinun osoitteesi', + x_Save: 'x_Tallenna', + x_Cancel: 'x_Peruuta', + x_AddessDesc: 'Saatat tuntea tämän "Tilinumeronasi" tai sinun "Julkisena Salausavaimenasi". Tämä on se jonka jaat ihmisille, jotta he voivat lähettää sinulle ETHiä. Tuo kuvake on helppo tapa tunnistaa sinun osoitteesi.', + x_PrivKey: 'Yksityinen salausavain (salaamaton)', + x_PrivKeyDesc: 'Tämä on salaamaton versio sinun yksityisestä salausavaimestasi, tarkoittaen että salasanaa ei tarvita. Jos joku sattuisi löytämään sinun salaamattoman yksityisen salausavaimesi, he pääsisivät käsiksi sinun lompakkoosi ilman salasanaa. Tästä syystä salatut versiot ovat yleensä suositeltuja.', + x_Keystore: 'Avainsäilö/JSON Tiedosto (Suositeltu · Salattu · Mist/Geth Tiedostoformaatti)', + x_KeystoreDesc: 'Tämä Avainsäilö / JSON tiedosto vastaa sitä tiedostoformaattia jota Mist & Geth käyttävät, joten voit helposti tuoda sen tulevaisuudessa. Se on suositeltu tiedostomuoto ladata ja varmuuskopioida.', + x_Json: 'JSON Tiedosto (salaamaton)', + x_JsonDesc: 'Tämä on salaamaton, JSON tiedosto yksityisestä salausavaimestasi. Tämä tarkoittaa että et tarvitse salasanaa mutta kuka tahansa joka löytää JSON tiedostosi saa pääsyn lompakkoosi ja sen sisältämään Etheriin ilman salasanaa.', + x_PrintShort: 'Tulosta', + x_Print: 'Tulosta Paperi Lompakko', + x_PrintDesc: 'ProTip: Klikkaa Tulosta ja tallenna tämä PDF:nä, vaikka et omistaisikaan tulostinta!', + x_CSV: 'CSV tiedosto (salaamaton)', + x_TXT: 'TXT tiedosto (salaamaton)', + + /* Header */ + MEW_Warning_1: 'Tarkista URL aina ennen kuin avaat lompakkosi tai luot uuden lompakon. Varo tietojen-kalastelu sivustoja!', + CX_Warning_1: 'Varmista että sinulla on **ulkoiset varmuuskopiot** kaikista lompakoista joita säilytät täällä. Monia asioita voi tapahtua joiden seurauksena voit menettää tietoja tässä Chrome Laajennuksessa, mukaan lukien laajennuksen asennuksen poistaminen tai uudelleenasennus. Tämä laajennus on keino jolla saat helpon pääsyn lompakkoosi, **ei** keino varmuuskopioida niitä.', + MEW_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Ether Lompakko', + CX_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Chrome Laajennus', + + /* Footer */ + FOOTER_1: 'Avoimen lähdekoodin, asiakas-puolen javascript työkalu Ethereum lompakkojen luomista & varojen siirtoja varten.', + FOOTER_2: 'Lahjoituksia arvostetaan suuresti:', + FOOTER_3: 'Asiakas-puolen lompakon luomisen tarjoaa', + + /* Sidebar */ + sidebar_AccountInfo: 'Tilin Tiedot: ', + sidebar_AccountAddr: 'Tilin Osoite: ', + sidebar_AccountBal: 'Tilin Saldo: ', + sidebar_TokenBal: 'Tokenien Saldo: ', + sidebar_Equiv: 'Vastaavat Arvot: ', + sidebar_TransHistory: 'Siirto Historia', + sidebar_DGDBal: 'DGD Joukkomyynnin Tiedot:', + sidebar_donate: 'Lahjoita', + sidebar_donation: 'MyEtherWallet on ilmainen, avoimen lähdekoodin palvelu joka on omistautunut sinun yksityisyyteesi ja turvallisuuteesi. Mitä enemmän lahjoituksia me vastaanotamme, sitä enemmän aikaa me käytämme uusien toimintojen luomiseksi, kuunnellen teidän palautettanne ja antaen teille juuri sitä mitä te tahdotte. Me olemme vain kaksi ihmistä jotka koittavat muuttaa maailmaa. Auta meitä?', + sidebar_thanks: 'KIITOS!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kuinka haluaisit saada pääsyn lompakkoosi?', + decrypt_Title: 'Valitse yksityisen salausavaimesi muoto:', + decrypt_Select: 'Valitse Lompakko:', + + /* Add Wallet */ + ADD_Label_1: 'Mitä tahtoisit tehdä?', + ADD_Radio_1: 'Luo Uusi Lompakko', + ADD_Radio_2: 'Valitse Lompakko Tiedostosi (Avainsäilö / JSON)', + ADD_Radio_2_short: 'VALITSE LOMPAKKO TIEDOSTO...', + ADD_Radio_3: 'Liitä/Kirjoita Yksityinen Salausavaimesi', + ADD_Radio_4: 'Lisää Tili Jota Seurata', + ADD_Label_2: 'Luo Lempinimi:', + ADD_Label_3: 'Lompakkosi on salattu, ole hyvä ja syötä salasanasi: ', + ADD_Label_4: 'Lisää Tili Jota Seurata', + ADD_Warning_1: 'Voit lisätä minkä tahansa tilin jota "seurata" lompakkojen välilehdessä ilman yksityisen salausavaimesi lähettämistä. Tämä ** ei ** tarkoita että sinulla olisi pääsy tähän lompakkoon, tai että voit siirtää Etheriä siitä.', + ADD_Label_5: 'Syötä Osoite: ', + ADD_Label_6: 'Avaa Sinun Lompakkosi', + ADD_Label_6_short: 'Avaa', + ADD_Label_7: 'Lisää Tili', + + /* Generate Wallets */ + GEN_desc: 'Jos tahdot luoda useita lompakoita, voit tehdä sen täältä: ', + GEN_Label_1: 'Syötä vahva salasana (vähintään 9 merkkiä)', + GEN_Placeholder_1: 'ÄLÄ unohda tallentaa tätä!', + GEN_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + GEN_Warning: '**Tarvitset Avainsäilö/JSON Tiedostosi & salasanan tai Yksityisen salausavaimesi** saadaksesi pääsyn tähän lompakkoon tulevaisuudessa. Ole hyvä ja tallenna ja varmuuskopioi se ulkoisesti! Ei ole mitään keinoa palauttaa sitä jos et tallenna sitä. Voit lukea ohjeet [Apua sivulta](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Tallenna Avainsäilö/JSON tai Yksityinen salausavaimesi. Älä unohda yllä olevaa salasanaasi.', + GEN_Label_3: 'Tallenna Osoitteesi.', + GEN_Label_4: 'Tulosta paperi lompakkosi, tai säilö QR koodi versio. (valinnainen)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Kuinka Monta Lompakkoa Luodaan', + BULK_Label_2: 'Luo Lompakot', + BULK_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Osoitteeseen: ', + SEND_amount: 'Summa Joka Lähetetään: ', + SEND_amount_short: 'Summa', + SEND_custom: 'Mukautettu', + SEND_gas: 'Gas', + SEND_generate: 'Luo Allekirjoitettu Siirto', + SEND_raw: 'Käsittelemätön Siirto', + SEND_signed: 'Allekirjoitettu Siirto', + SEND_trans: 'Lähetä Siirto', + SEND_TransferTotal: 'Lähetettävissä oleva saldo', + SENDModal_Title: 'Varoitus! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Olet lähettämässä', + SENDModal_Content_2: 'osoitteeseen', + SENDModal_Content_3: 'Oletko varma että haluat tehdä tämän?', + SENDModal_Content_4: 'HUOMAUTUS: Jos kohtaat virheen, sinun täytyy todennäköisesti lisätä ETHiä tilillesi kattaaksesi siirron vaatiman gasin hinnan. Gas maksetaan ETHeinä.', + SENDModal_No: 'En, vie minut pois täältä!', + SENDModal_Yes: 'Kyllä, olen varma! Toteuta siirto.', + + /* Tokens */ + TOKEN_Addr: 'Osoite: ', + TOKEN_Symbol: 'Token Tunnus: ', + TOKEN_Dec: 'Desimaalit: ', + + /* Send Transaction */ + TRANS_desc: 'Jos haluat lähettää Tokeneita, ole hyvä ja käytä "Lähetä Tokeneita" sivua.', + TRANS_warning: 'Jos käytät "Vain ETH" tai "Vain ETC" Toimintoja, niin lähetät sopimuksen kautta. Joillakin palveluilla on vaikeuksia hyväksyä näitä siirtoja. Lue lisää.', + TRANS_standard: 'ETH (Tavallinen Siirto)', + TRANS_eth: 'Vain ETH', + TRANS_etc: 'Vain ETC', + TRANS_advanced: '+Edistynyt: Lisää Enemmän Gasia tai Tietoa ', + TRANS_data: ' Tiedot: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Tavallinen siirto käyttäen 21000 gasia maksaa 0.000441 ETHiä. Me käytämme hieman-yli-minimin gasin hintaa 0.000000021 ETHiä varmistaaksemme että se louhitaan nopeasti. Me emme veloita siirto maksua.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Vain ETH" ja "Vain ETC" Siirrot', + TRANSModal_Content_0: 'Huomautus erilaisista siirroista ja eri palveluista:', + TRANSModal_Content_1: '**ETH (Tavallinen Siirto): ** Tämä luo oletusarvoisen siirron osoitteesta toiseen. Siinä on oletus gasina 21000. On todennäköistä että kaikki ETH joka lähetetään tällä tavalla, toistetaan ETC ketjussa.', + TRANSModal_Content_2: '**Vain ETH: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETH** ketjussa.', + TRANSModal_Content_3: '**Only ETC: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETC** ketjussa. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Lähetä ainoastaan käyttäen Tavallista Siirtoa. Jos lähetät käyttäen "Vain" sopimuksia, sinun täytyy olla yhteydessä heidän asiakastukensa henkilöstöön jotta he joko manuaalisesti lisäävät sinun saldosi tai palauttavat rahasi. [Voit kokeilla myös ShapeShiftin "split" työkalua.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ei tunnettuja ongelmia. Käytä mitä vain.', + TRANSModal_Yes: 'Siistiä, nyt ymmärrän.', + TRANSModal_No: 'Voi ei, olen entistä enemmän hämilläni. Auttakaa minua.', + + /* Offline Transaction */ + OFFLINE_Title: 'Luo ja Lähetä Offline Siirto', + OFFLINE_Desc: 'Offline siirtojen luonti voidaan tehdä kolmella eri vaiheella. Teet vaiheet 1 ja 3 käyttäen verkossa olevaa tietokonetta, ja vaiheen 2 käyttäen offline/airgappattua tietokonetta. Tämä varmistaa ettei sinun yksityinen salausavaimesi ole kosketuksissa internettiin yhdistetyn laitteen kanssa.', + OFFLLINE_Step1_Title: 'Vaihe 1: Luo Tiedot (Online Tietokone)', + OFFLINE_Step1_Button: 'Luo Tiedot', + OFFLINE_Step1_Label_1: 'Osoitteesta: ', + OFFLINE_Step1_Label_2: 'Huomautus: Tämä on MISTÄ osoitteesta, ei MIHIN osoitteeseen. Nonce luodaan osoitteesta josta siirto on peräisin. Jos käytetään airgappattua tietokonetta, se olisi kylmä-varasto tilin osoite.', + OFFLLINE_Step2_Title: 'Vaihe 2: Luo Siirto (Offline Tietokone)', + OFFLINE_Step2_Label_1: 'Osoitteeseen: ', + OFFLINE_Step2_Label_2: 'Arvo / Määrä Joka Lähetetään', + OFFLINE_Step2_Label_3: 'Gasin hinta ', + OFFLINE_Step2_Label_3b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_4: 'Gas Raja ', + OFFLINE_Step2_Label_4b: '21000 on oletusarvoinen gas raja. Kun lähetät sopimuksiin tai lisäät tietoa, saattaa tämä määrä joutua olemaan eri. Kaikki käyttämätön gas palautetaan sinulle.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_6: 'Tiedot', + OFFLINE_Step2_Label_6b: 'Tämä on vapaaehtoinen. Tietoja käytetään usein kun varoja lähetetään sopimuksiin.', + OFFLINE_Step2_Label_7: 'Syötä / Valitse Yksityinen salausavaimesi / JSON.', + OFFLINE_Step3_Title: 'Vaihe 3: Lähetä / Julkaise Siirto (Verkkoon yhdistetty tietokone)', + OFFLINE_Step3_Label_1: 'Liitä allekirjoitettu siirto Vaiheesta 2 tähän ja paina "LÄHETÄ SIIRTO" nappia.', + + /* DAO */ + DAO_Desc: 'Käytä tätä välilehteä muuttaaksesi DAO Tokenisi ETHiksi. Mikäli haluat lähettää DAO:ta, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DAO_Inst: 'Kyllä. Paina vain isoa punaista nappia. Se on niin helppoa.', + DAO_Warning: 'Jos sinulla tulee "Riittämätön saldo gasille" virhe, sinulla täytyy olla pieni määrä ETHiä tililläsi kattaaksesi gasin hinnan. Lisää .01 ETHiä tälle tilille ja koita uudestaan. ', + DAOModal_Title: 'Varmistetaan vain...', + + /* Digix */ + DGD_Desc: 'Lunasta DigixDAO (DGD) tokenisi & merkkisi. Lunastaaksesi, sinun on täytynyt osallistua tokenien myyntiin Maaliskuun 30/31 päivänä, 2016. Jos haluat lähettää DGDtä, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DGD_Label_1: 'Arvioitu kulutus maksu:', + DGD_Label_2: 'Annettu Maksimi Maksu:', + DGD_Label_3: 'Gas Hinta:', + DGD_Generate: 'Luo Lunastus', + DGD_Content: 'Olet lunastamassa sinun DGD Tokenisi.', + + /* My Wallet */ + MYWAL_Nick: 'Lompakon Lempinimi', + MYWAL_Address: 'Lompakon Osoite', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Muokkaa', + MYWAL_View: 'Katso', + MYWAL_Remove: 'Poista', + MYWAL_RemoveWal: 'Poista Lompakko:', + MYWAL_WatchOnly: 'Sinun Seuraa-Ainoastaan Tilisi', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Piilota Lompakon Tiedot', + MYWAL_Edit: 'Muokkaa Lompakkoa: ', + MYWAL_Name: 'Lompakon Nimi', + MYWAL_Content_1: 'Varoitus! Olet poistamassa lompakkoasi.', + MYWAL_Content_2: 'Varmista että olet **tallentanut tähän lompakkoon liittyvät yksityisen salausavaimesi/JSON tiedostosi ja salasanasi** ennen kuin poistat sen.', + MYWAL_Content_3: 'Jos tahdot käyttää tätä lompakkoa sinun MyEtherWallet CX:si kanssa tulevaisuudessa, sinun täytyy manuaalisesti uudelleen-lisätä se käyttäen yksityistä salausavaintasi/JSONia ja salasanaa.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. Saatat tahtoa tehdä tämän [tuodaksesi sinun tilisi Gethiin/Mistiin](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jos haluat tarkistaa saldosi, me suosittelemme käyttämään lohkoketju exploreria kuten [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. ', + VIEWWALLET_SuccessMsg: 'Onnistui! Tässä ovat lompakkosi yksityiskohdat.', + + /* Error Messages */ + ERROR_1: 'Ole hyvä ja syötä kelpaava summa.', + ERROR_2: 'Salasanasi pitää olla vähintään 9 merkkiä pitkä. Ole hyvä ja varmista että käytät vahvaa salasanaa. ', + ERROR_3: 'Pahoittelut! Emme tunnista tämänlaista lompakko tiedostoa. ', + ERROR_4: 'Tämä ei ole validi lompakko tiedosto. ', + ERROR_5: 'Tätä yksikköä ei ole olemassa, ole hyvä ja käytä jotain seuraavista yksiköistä ', + ERROR_6: 'Virheellinen osoite. ', + ERROR_7: 'Virheellinen salasana. ', + ERROR_8: 'Virheellinen summa. ', + ERROR_9: 'Virheellinen gas raja. ', + ERROR_10: 'Virheellinen tieto arvo. ', + ERROR_11: 'Virheellinen gasin määrä. ', + ERROR_12: 'Virheellinen nonce. ', + ERROR_13: 'Virheellinen allekirjoitettu siirto. ', + ERROR_14: 'Lompakko tällä lempinimellä on jo olemassa. ', + ERROR_15: 'Lompakkoa ei löytynyt. ', + ERROR_16: 'Ei näytä että ehdotusta tällä ID:llä olisi vielä olemassa tai tapahtui virhe ehdotusta luettaessa. ', + ERROR_17: 'Lompakko jolla on tämä osoite on jo muistissa. Ole hyvä ja tarkista sinun lompakkosi sivu. ', + ERROR_18: 'Sinulla täytyy olla vähintään .001 ETHiä tililläsi kattaaksesi gasin hinnan. Ole hyvä ja lisää hieman ETHiä ja kokeile uudelleen. ', + ERROR_19: 'Kaikki gas käytettäisiin tässä siirrossa. Tämä tarkoittaa että olet jo äänestänyt tässä ehdotuksessa tai väittely aika on jo päättynyt.', + ERROR_20: 'Virheellinen merkki', + SUCCESS_1: 'Validi osoite', + SUCCESS_2: 'Lompakon salaus onnistuneesti purettu', + SUCCESS_3: 'Siirto lähetetty. TX ID: ', + SUCCESS_4: 'Lompakkosi lisätty onnistuneesti: ', + SUCCESS_5: 'Olet äänestänyt onnistuneesti. Kiitos että olet ollut aktiivinen osanottaja The DAOssa.', + + /* Tranlsation Info */ + translate_version: '0.1', + Translator_Desc: 'Kiitos kääntäjillemme...', + TranlsatorName_1: 'Smokyish', + TranlsatorAddr_1: '0xac9a2c1dd946da64c0dc8e70cec2cfb14304fd4f', + /* Translator 1: Insert Comments Here */ + TranlsatorName_2: ' ', + TranlsatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranlsatorName_3: ' ', + TranlsatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranlsatorName_4: ' ', + TranlsatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranlsatorName_5: ' ', + TranlsatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com', + HELP_6_Desc_9: 'Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.', + HELP_6_Desc_11: ' Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: ' Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', + HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = fi; },{}],43:[function(require,module,exports){ -// Hebrew -'use strict'; -var he = function() {} -he.code = 'he'; -he.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = he; +// French +'use strict'; +var fr = function() {} +fr.code = 'fr'; +fr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Vos portefeuilles', + NAV_AddWallet: 'Ajout de portefeuille', + NAV_GenerateWallet: 'Génération de portefeuille', + NAV_BulkGenerate: 'Génération de portefeuilles par lots', + NAV_SendEther: 'Envoi d\'Ether', + NAV_SendTokens: 'Envoi de tokens', + NAV_Offline: 'Envoi hors-ligne', + NAV_WithdrawDAO: 'Retrait de la DAO', + DAO_TitleLong: 'Échange de tokens DAO contre des ETH', + NAV_ClaimDGD: 'Réclamation de DGD', + DGD_TitleLong: 'Réclamation de vos tokens DGD', + NAV_DeployContract: 'Déployer un contrat', + NAV_MyWallets: 'Mes portefeuilles', + NAV_ViewWallet: 'Visualisation d\'un portefeuille', + NAV_Help: 'Aide', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Portefeuille', + x_Password: 'Mot de passe', + x_Download: 'Télécharger', + x_Address: 'Votre adresse', + x_Save: 'Sauvegarder', + x_Cancel: 'Annuler', + x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', + x_PrivKey: 'Clé privée (non-chiffrée)', + x_PrivKey2: 'Clé privée', + x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', + x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', + x_Keystore2: 'Fichier Keystore/JSON', + x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', + x_Json: 'Fichier JSON (non-chiffré)', + x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', + x_PrintShort: 'Imprimer', + x_Print: 'Imprimer un portefeuille papier', + x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', + x_CSV: 'Fichier CSV (non-chiffré)', + x_TXT: 'Fichier TXT (non-chiffré)', + + /* Header */ + MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', + CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', + MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', + CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', + + /* Footer */ + FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', + FOOTER_1b: 'Créé par', + FOOTER_2: 'Donations extrêmement appréciées :', + FOOTER_3: 'Génération de portefeuille côté client par', + FOOTER_4: 'Avertissement', + + /* Sidebar */ + sidebar_AccountInfo: 'Informations du compte : ', + sidebar_AccountAddr: 'Addresse du compte : ', + sidebar_AccountBal: 'Solde du compte : ', + sidebar_TokenBal: 'Solde en tokens : ', + sidebar_Equiv: 'Valeur correspondante : ', + sidebar_TransHistory: 'Historique des transactions: ', + sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', + sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', + sidebar_donate: 'Faire une donation', + sidebar_thanks: 'MERCI !!!', + + /* Decrypt Panel */ + decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', + decrypt_Title: 'Choisissez le format de votre clé privée', + decrypt_Select: 'Choisissez un portefeuille :', + + /* Add Wallet */ + ADD_Label_1: 'Que voulez-vous faire ?', + ADD_Radio_1: 'Générer un nouveau portefeuille', + ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', + ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', + ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', + ADD_Radio_3: 'Collez/saisissez votre clé privée', + ADD_Radio_4: 'Ajoutez un compte', + ADD_Label_2: 'Nommez votre compte :', + ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', + ADD_Label_4: 'Ajouter un compte à afficher', + ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', + ADD_Label_5: 'Entrez l\'adresse : ', + ADD_Label_6: 'Déverrouiller votre portefeuille', + ADD_Label_6_short: 'Déverrouiller', + ADD_Label_7: 'Ajouter un compte', + + /* Generate Wallets */ + GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', + GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', + GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', + GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', + GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', + GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', + GEN_Label_3: 'Sauvegarder votre portefeuille.', + GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Nombre de portefeuilles à générer', + BULK_Label_2: 'Générer les portefeuilles', + BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Adresse de destination : ', + SEND_amount: 'Montant à envoyer : ', + SEND_amount_short: 'Montant', + SEND_custom: 'Spécifique', + SEND_gas: 'Gaz', + SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter + SEND_generate: 'Générer la transaction', + SEND_raw: 'Transaction brute', + SEND_signed: 'Transaction signée', + SEND_trans: 'Envoyer la transaction', + SENDModal_Title: 'Attention ! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', + SENDModal_Content_2: 'à l\'adresse', + SENDModal_Content_3: 'En êtes-vous sûr ?', + SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', + SENDModal_No: 'Non, je veux sortir d\'ici !', + SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adresse : ', + TOKEN_Symbol: 'Symbole du token : ', + TOKEN_Dec: 'Décimales : ', + + /* Send Transaction */ + TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', + TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', + TRANS_standard: 'ETH (transaction standard)', + TRANS_eth: 'ETH seulement', + TRANS_etc: 'ETC seulement', + TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', + TRANS_data: ' Données : ', + TRANS_gas: ' Gaz : ', + TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', + TRANSModal_Content_0: 'Note sur les transactions et services divers :', + TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', + TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', + TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', + TRANSModal_Yes: 'Génial, j\'ai compris.', + TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', + + /* Offline Transaction */ + OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', + OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', + OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', + OFFLINE_Step1_Button: 'Générer l\'information', + OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', + OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', + OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', + OFFLINE_Step2_Label_1: 'Adresse de destination : ', + OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', + OFFLINE_Step2_Label_3: 'Prix du gaz ', + OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_4: 'Limite de gaz ', + OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_6: 'Données', + OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', + OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', + OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', + OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', + + /* DAO */ + DAO_bal1: 'au bloc 1.919.999', + DAO_bal2: 'actuel', + DAO_TitleETH: 'Retrait de DAO en ETH', + DAO_TitleETC: 'Retrait de DAO en ETC', + DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', + DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', + DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', + DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', + DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', + DAOModal_Title: 'Juste pour être sûr...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Vous êtes sur le point de retirer', + DAOModal_2: 'tokens DAO vers', + DAOModal_3: 'pour', // "in return for" + + /* Digix */ + DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', + DGD_Label_1: 'Estimation des frais consommés :', + DGD_Label_2: 'Frais maximum fournis :', + DGD_Label_3: 'Prix du gaz :', + DGD_Generate: 'Générer une réclamation', + DGD_Content: 'Vous allez réclamer vos tokens DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Générer le bytecode', + DEP_generated: 'Bytecode généré', + DEP_signtx: 'Signer la transaction', + DEP_interface: 'Interface générée', + + /* My Wallet */ + MYWAL_Nick: 'Nom du portefeuille', + MYWAL_Address: 'Adresse du portefeuille', + MYWAL_Bal: 'Solde', + MYWAL_Edit: 'Modifier', + MYWAL_View: 'Voir', + MYWAL_Remove: 'Supprimer', + MYWAL_RemoveWal: 'Supprimer le portefeuille :', + MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', + MYWAL_Viewing: 'Affichage des portefeuilles : ', + MYWAL_Hide: 'Cacher les informations sur le portefeuille', + MYWAL_Edit_2: 'Modifier le portefeuille : ', + MYWAL_Name: 'Nom du portefeuille', + MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', + MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', + MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', + VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', + + /* Chrome Extension */ + CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', + CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Veuillez entrer un montant valide.', + ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', + ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', + ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', + ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', + ERROR_6: 'Adresse invalide. ', + ERROR_7: 'Mot de passe invalide. ', + ERROR_8: 'Montant invalide. ', + ERROR_9: 'Limite de gaz invalide. ', + ERROR_10: 'Valeur des donnnées invalide. ', + ERROR_11: 'Montant de gaz invalide. ', + ERROR_12: 'Nonce invalide. ', + ERROR_13: 'Transaction signée invalide. ', + ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', + ERROR_15: 'Portefeuille non trouvé. ', + ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', + ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', + ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', + ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', + ERROR_20: 'Symbole invalide', + SUCCESS_1: 'Adresse valide', + SUCCESS_2: 'Portefeuille déchiffré avec succès', + SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', + SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', + SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', + SUCCESS_6: 'Fichier sélectionné : ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Expéditeur invalide', + GETH_Nonce: 'Nonce trop bas', + GETH_Cheap: 'Prix du gaz trop bas pour être accepté', + GETH_Balance: 'Solde insuffisant', + GETH_NonExistentAccount: 'Compte inexistant ou solde du compte trop bas', + GETH_InsufficientFunds: 'Fonds insuffisants pour gaz * prix + valeur', + GETH_IntrinsicGas: 'Gaz intrinsèque trop bas', + GETH_GasLimit: 'Limite en gaz dépassée', + GETH_NegativeValue: 'Valeur négative', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', + /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ + TranslatorName_2: 'Jean Zundel · ', + TranslatorAddr_2: '', + /* Translator 2: */ + TranslatorName_3: 'girards', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', + HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', + HELP_Remind_Title: 'Quelques rappels :', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', + HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', + + HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', + HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', + HELP_0_Desc_2: 'Créez un nouveau portefeuille.', + HELP_0_Desc_3: 'Sauvegardez le portefeuille.', + HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', + HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', + + HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', + HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', + HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', + HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', + HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', + HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', + + HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', + HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', + HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', + HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', + HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', + HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', + HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', + + HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', + HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', + HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', + HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', + HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', + HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', + HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', + + HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', + HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', + HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', + HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', + HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', + HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', + + HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', + HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', + HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', + HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', + HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', + HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', + HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', + HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', + HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', + HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', + HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', + + + HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', + HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', + HELP_4CX_Desc_2: 'Envoi rapide :', + HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', + HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', + HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', + HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', + HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', + HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', + HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', + HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', + HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', + HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', + + HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', + HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', + HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', + HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_5_Desc_5: 'Dézippez-le.', + HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', + HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', + HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', + + HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', + HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', + HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', + HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', + HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', + HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', + HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', + HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', + + HELP_6_Title: '6) Comment puis-je séparer mes ETH / ETC ? ', + HELP_6_Desc_1: 'Quand le hard fork s\'est produit, à tout ETH que vous possédiez dans votre portefeuille correspond maintenant un montant égal en ETC. Si vous envoyez des ETH par une transaction standard, cela enverra également des ETC et, pour l\'empêcher, il vous faut maintenant "séparer" votre portefeuille d\'origine en deux en vous assurant que seul du ETH va dans le portefeuille ETH et seul du ETC va dans le portefeuille ETC.', + HELP_6_Desc_2: 'Vous pouvez également envoyer tout votre ETH et ETC par une transaction standard vers Kraken ou Poloniex. Ces *exchanges* vont automatiquement séparer vos ETH et ETC. Vous pouvez alors déplacer ces fonds vers de nouveaux portefeuilles ou vendre vos ETH ou vos ETC.', + HELP_6_Desc_3: '[Vous trouverez plus d\'informations sur les portefeuilles et les attaques par réexécution ici](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Générer un nouveau portefeuille ETH post-fork vierge pour vous-même (destination finale du pur ETH).', + HELP_6_Desc_5: 'Générer un nouveau portefeuille ETC post-fork vierge pour vous-même (destination finale du pur ETC).', + HELP_6_Desc_6: 'Sauvegardez ces nouveaux portefeuilles et vérifiez que vous pouvez y accéder. Voir #2a et #3 ci-dessus.', + HELP_6_Desc_7: 'Envoyez 0.1234 ETH à votre nouveau portefeuille ETH en utilisant l\'option "ETH seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_8: 'Envoyez 0.5678 ETC à votre nouveau portefeuille ETC en utilisant l\'option "ETC seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_9: 'Vérifiez que seuls les 0.1234 ETH ont bougé sur etherscan.io. Vérifiez que seuls les 0.5678 ETC ont bougé sur gastracker.io.', + HELP_6_Desc_10: 'Envoyez une transaction de 0.0001 ETH depuis votre nouveau portefeuille ETH. Vérifiez sur etherscan.io. Assurez-vous que les 0.0001 ETH ont bougé.', + HELP_6_Desc_11: 'Générez (mais n\'envoyez pas) une transaction de 0.0002 ETC depuis votre nouveau portefeuille ETC. Copiez le champ "Transaction signée". ', + HELP_6_Desc_12: 'Allez sur [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) et copiez cette transaction ETC dans l\'onglet hors ligne de classicetherwallet.com tout en bas et envoyez-la. Vérifiez sur gastracker.io. Assurez-vous que les 0.0002 ETC ont bougé.', + HELP_6_Desc_13: 'Si tout est correctement reçu et envoyé, vous avez gagné.', + HELP_6_Desc_14: 'Envoyez le reste du solde ETH par l\'option "ETH seulement" et répétez l\'opération pour le solde ETC par l\'option "ETC seulement".', + HELP_6_Desc_15: 'Par la suite, vous pourrez utiliser les transactions standard pour ces portefeuilles sans risque d\'attaque par réexécution.', + + + HELP_7_Title: '7) Comment puis-je envoyer des tokens et ajouter des tokens spécifiques ?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) est un excellent moyen d\'explorer les tokens et de trouver les décimales d\'un token.', + HELP_7_Desc_1: 'Naviguez vers la page "Envoi de tokens".', + HELP_7_Desc_2: 'Déverrouillez votre portefeuille.', + HELP_7_Desc_3: 'Entre l\'adresse à laquelle vous désirez faire l\'envoi dans le champ "Adresse de destination".', + HELP_7_Desc_4: 'Entrez le montant que vous désirez envoyer.', + HELP_7_Desc_5: 'Sélectionnez le token que vous désirez envoyer.', + HELP_7_Desc_6: 'Si celui-ci n\'est pas listé :', + HELP_7_Desc_7: 'Cliquez sur "Spécifique".', + HELP_7_Desc_8: 'Entrez l\'adresse, le nom et les décimales du token. Ces informations sont fournies par les développeurs du token et sont également nécessaires quand vous faites "Add a Watch Token" dans Mist.', + HELP_7_Desc_9: 'Cliquez sur "Sauver".', + HELP_7_Desc_10: 'Vous pouvez maintenant envoyer ces tokens ainsi qu\'en voir le solde dans la zone sur le côté.', + HELP_7_Desc_11: 'Cliquez sur "Générer la transaction".', + HELP_7_Desc_12: 'Quelques champs supplémentaires vont apparaître : votre navigateur est en train de générer la transaction.', + HELP_7_Desc_13: 'Cliquez sur le bouton bleu "Envoyer la transation" au dessous.', + HELP_7_Desc_14: 'Une fenêtre pop-up va apparaître. Vérifiez que le montant et que l\'adresse de destination sont corrects puis cliquez sur le bouton "Oui, j\'en suis sûr ! Effectuer la transaction."', + HELP_7_Desc_15: 'La transaction est alors soumise et l\'identifiant de transaction est affiché. Vous pouvez cliquer dessus pour le voir sur la blockchain.', + + HELP_8_Title: '8) Que se passe-t-il si votre site tombe ?', + HELP_8_Desc_1: 'MyEtherWallet n\'est pas un portefeuille sur le web. Vous n\'avez pas de login et rien n\'est jamais stocké sur nos serveurs. Ce n\'est qu\'une interface qui vous permet d\'interagir avec la blockchain.', + HELP_8_Desc_2: 'Si MyEtherWallet.com tombe, vous devrez trouver un autre moyen (comme geth ou Ethereum Wallet / Mist) pour faire la même chose. Mais vous n\'aurez pas à "récupérer" votre Ether depuis MyEtherWallet parce qu\'il ne se trouve pas dans MyEtherWallet. Il est chez vous, dans le portefeuille que vous avez généré par notre site.', + HELP_8_Desc_3: 'Vous pouvez maintenant importer facilement votre clef privée non chiffrée et vos fichiers (chiffrés) au format Geth/Mist, directement dans geth / Ethereum Wallet / Mist. Voir question #12 ci-dessous.', + HELP_8_Desc_4: 'De plus, la probabilité que nous laissions tomber MyEtherWallet approche zéro. Il ne nous coûte presque rien de le maintenir comme nous n\'y stockons aucune information. Si le domaine venait à être perdu, le logiciel sera toujours disponible publiquement sur [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vous pourrez y télécharger le ZIP et le faire tourner localement. ', + + HELP_8CX_Title: '8) Que se passe-t-il si MyEtherWallet CX disparaît ?', + HELP_8CX_Desc_1: 'D\'abord, toutes les données sont sauvegardées sur votre ordinateur et non sur nos serveurs. Cela peut paraître étonnant mais, quand vous regardez sur l\'extension Chrome, ce que vous voyez *ne se trouve pas* sur nos serveurs ; tout est stocké sur votre propre ordinateur.', + HELP_8CX_Desc_2: 'Cela dit, il est **très important** que vous sauvegardiez toutes les données de tous les portefeuilles générés par MyEtherWallet CX. De cette manière, si quoi que ce soit arrivait à MyEtherWallet CX ou à votre ordinateur, vous conserveriez toutes les informations nécessaires pour accéder à votre Ether. Voir #2a pour la sauvegarde de vos portefeuilles.', + HELP_8CX_Desc_3: 'Si, pour une raison quelconque, MyEtherWallet CX disparaissait du Chrome Store, vous pourrez en trouver le source sur Github et le charger manuellement. Voir #5 ci-dessus.', + + HELP_9_Title: '9) La page "Envoi d\'Ether" est-elle hors ligne ?', + HELP_9_Desc_1: 'Non, la page d\'envoi de transaction n\'est pas hors ligne. Elle a besoin de l\'internet pour obtenir le prix actuel du gaz, le nonce de votre compte et pour émettre la transaction (c\'est-à-dire "envoyer"). Cependant, elle n\'envoie que la transaction signée. Votre clef privée reste en sécurité chez vous. Nous fournissons maintenant aussi une page "Transaction hors ligne" pour vous permettre de conserver en permanence vos clefs privées sur une machine hors ligne.', + + HELP_10_Title: '10) Comment puis-je faire une transaction hors ligne ?', + HELP_10_Desc_1: 'Allez à la page "Transaction hors ligne" avec votre ordinateur en ligne.', + HELP_10_Desc_2: 'Entrez l\'"Adresse d\'émission". Attention, c\'est l\'adresse *d\'où* vous envoyez et non celle *vers* laquelle vous envoyez. Ceci va générer ke nonce et le prix du gaz.', + HELP_10_Desc_3: 'Allez sur votre ordinateur hors ligne. Entrez l\'"Adresse de destination" et le "Montant" que vous désirez envoyer.', + HELP_10_Desc_4: 'Entrez le "Prix du gaz" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_5: 'Entrez le "Nonce" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_6: 'La "Limite en gaz" a une valeur de 21000 par défaut. Ceci couvre les frais d\'une transaction standard. Si vous envoyez à un contrat ou si vous embarquez des données supplémentaires avec votre transaction vous devrez augmenter la limite de gaz. Tout gaz non consommé vous sera retourné.', + HELP_10_Desc_7: 'Si vous le désirez, entrez des données. Dans ce cas, vous devrez inclure plus que la limite de 21000 par défaut? Toutes les données sont au format hexadécimal.', + HELP_10_Desc_8: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_10_Desc_9: 'Cliquez sur le bouton "Générer la transaction signée".', + HELP_10_Desc_10: 'Le champ de données sous ce bouton se remplit avec votre transaction signée. Copiez-la et revenez avec elle sur votre ordinateur en ligne. ', + HELP_10_Desc_11: 'Sur votre ordinateur en ligne, collez la transaction signée dans le champ texte et cliquez sur "Envoyez l\'Ether". Ceci émettra votre transaction.', + + HELP_11_Title: '11) Comment puis-je envoyer à un contrat ?', + HELP_11_Desc_1: 'L\'envoi à un contrat vous impose souvent d\'inclure des données ou du gaz supplémentaire, ou les deux.', + HELP_11_Desc_2: 'Allez à la page "Envoi d\'Ether". ', + HELP_11_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille. ', + HELP_11_Desc_4: 'Entrez une "Adresse de destination" et un "Montant à envoyer".', + HELP_11_Desc_5: 'Cliquez sur le bouton "+Avancé : Ajouter du gaz ou des données supplémentaires" sous le champ du montant. Ceci affiche deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au dessus de la valeur par défaut de 21000 ainsi que d\'ajouter des données à votre transaction.', + + HELP_12_Title: '12) Comment puis-je importer un portefeuille créé par MyEtherWallet dans geth / Ethereum Wallet / Mist ?', + HELP_12_Desc_1: 'Avec un fichier Geth/Mist JSON de MyEtherWallet v2+....', + HELP_12_Desc_2: 'Allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_3: 'Déverrouillez votre portefeuille avec votre clef privée **chiffrée** ou votre fichier JSON. ', + HELP_12_Desc_4: 'Allez à la page "Mes portefeuilles".', + HELP_12_Desc_5: 'Sélectionnez le portefeuille que vous désirez importer dans Mist, cliquez sur l\'icône "View", entrez votre mot de passe et accédez à votre portefeuille. ', + HELP_12_Desc_6: 'Allez à la section "Téléchargez le fichier JSON file - Format Geth/Mist (chiffé)". Cliquez sur le bouton "Télécharger" en dessous. Vous avez maintenant votre fichier *keystore.* ', + HELP_12_Desc_7: 'Ouvrez l\'application Ethereum Wallet. ', + HELP_12_Desc_8: 'Dans la barre de menu, allez sur "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Ceci ouvre votre dossier de keystores. Copiez-y le fichier que vous venez de télécharger (`UTC--2016-04-14......../`) dans ce dossier.', + HELP_12_Desc_10: 'Votre compte doit apparaître immédiatement sous "Accounts."', + HELP_12_Desc_11: 'Avec votre clef privée non chiffrée...', + HELP_12_Desc_12: 'Si vous n\'avez pas déjà votre clef privée non chiffrée, allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_13: 'Sélectionnez le fichier de votre portefeuille -ou- entrez/collez votre clef privée pour déverrouiller votre portefeuille.', + HELP_12_Desc_14: 'Copiez votre clef privée (non chiffrée).', + HELP_12_Desc_15: 'Si vous êtes sur un Mac :', + HELP_12_Desc_15b: 'Si vous êtes sur un PC :', // Strange, already in French, not found in de.js + HELP_12_Desc_16: 'Ouvez Text Edit et collez cette clef privée.', + HELP_12_Desc_17: 'Dans la barre de menu, cliquez sur "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Sauvegardez ce fichier vers votre `Desktop/` en tant que `nothing_special_delete_me.txt`. Assurez-vous qu\'il précise "UTF-8" et "If no extension is provided use .txt" dans le dialogue de sauvegarde.', + HELP_12_Desc_19: 'Ouvrez un terminal et lancez la commande suivante : `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserez dans geth / Ethereum Wallet / Mist à chaque vois que vos enverrez une transaction, donc ne l\'oubliez pas. ', + HELP_12_Desc_21: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + HELP_12_Desc_23: 'Ouvrez Notepad et collez-y la clef privée', + HELP_12_Desc_24: 'Sauvegardez le fichier en tant que `nothing_special_delete_me.txt` sur `C:`', + HELP_12_Desc_25: 'Lancez la commande `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserz dans geth / Ethereum Wallet / Mist à chaque foiq que vous enverrez une transaction donc ne l\'oubliez pas.', + HELP_12_Desc_27: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + + HELP_13_Title: '13) Que signigie "Limite de gaz trop basse" ?', + HELP_13_Desc_1: 'Il est très probable que vous essayiez d\'envoyer de l\'Ether à un contrat, ce qui implique un peu plus de données et donc un peu plus de gaz. Sur la page "Envoi d\'Ether", cliquez sur le bouton "+Advancé : Ajouter du gaz ou des données supplémentaire" sous le champ du montant. Ceci fera afficher deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au-dessus de sa valeur par défaut de 21000, ou pour ajouter des données à votre transaction.', + + HELP_14_Title: '14) Certains sites randomisent (initialisent) la génération de clef privée par les mouvements de la sours. Ce n\'est pas le cas de MyEtherWallet.com. La génération de nombres aléatoires de MyEtherWallet est-elle sûre ?', + HELP_14_Desc_1: 'Bien que l\'interception des mouvement de la souris soit jugée attractive par beaucoup, et que nous en comprenions les raisons, la réalité est que window.crypto assure plus d\'entropie que les mouvements de votre souris. L\'utilisation de ces mouvements est sûre mais nous (ainsi que de nombreux projets crypto) avons de bonnes raisons de croire en window.crypto. De plus, MyEtherWallet.com peut être utilisé sur des périphériques tactiles. Voici une [conversation entre un redditor rageur et Vitalik Buterin sur les mouvements de souris et window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) et voici [les spécifications w3 de window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Pourquoi le compte que je viens de créer n\'apparaît-il pas dans l\'explorateur de blockchain ? (i.e. : etherchain, etherscan)', + HELP_15_Desc_1: 'Les comptes n\'apparaissent dans un explorateur de blockchain qu\'après une activité y ait eu lieu comme, par exemple, quand on y a transféré de l\'Ether.', + + HELP_16_Title: '16) Comment puis-je vérifier le solde de mon compte ? ', + HELP_16_Desc_1: 'Vous pouvez utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/). Collez votre adresse dans la barre de recherche et cela récupérera votre solde et l\'historique de vos transactions. Par exemple, voici ce que montre notre [compte de donations](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) sur etherscan.io', + + HELP_17_Title: '17) Pourquoi mon solde n\'apparaît-il pas quand je déverrouille mon portefeuille ? ', + HELP_17_Desc_1: ' C\'est probablement dû au fait que vous vous trouvez derrière un firewall. L\'API que nous utilisons pour obtenir le solde et converir celui-ci est souvent bloquée par des firewalls pour des raisons diverses. Vous êtes toujours capable d\'envoyer des transactions mais il vous faut employer une autre méthode pour voir le solde, comme etherscan.io', + + HELP_18_Title: '18) Où est le fichier de mon portefeuille geth ?', + + HELP_19_Title: '19) Où est le fichier de mon portefeuille Mist ? ', + HELP_19_Desc_1: 'Les fichiers Mist se trouvent généralement aux endroits ci-dessus mais il est beaucoup plus facile d\'ouvrir Mist, de sélectionner "Accounts" dans la barre du haut, puis "Backup" et "Accounts". Cela ouvre le dossier où vos fichiers sont stockés.', + + HELP_20_Title: '20) Où est le fichier de mon portefeuille de *pre-sale* (pré-vente) ?', + HELP_20_Desc_1: 'Là où vous l\'avez mis. ;) Il vous a aussi été envoyé donc allez vérifier vos mails. Cherchez le fichier appelé `"ethereum_wallet_backup.json"` et choisissez ce fichier. Il est chiffré avec un mot de passe que vous avez créé pendant l\'achat au moment de la pré-vente.', + + HELP_21_Title: '21) N\'importe qui ne peut-il pas prendre une clef privée au hasard, chercher un solde et l\'envoyer à sa propre adresse ? ', + HELP_21_Desc_1: 'Version courte : oui, mais trouver un compte avec un solde prendrait plus longtemps que la durée de l\'univers... donc... non.', + HELP_21_Desc_2: 'Version longue : Ethereum est basé sur la [cryptographie à clef publique](https://en.wikipedia.org/wiki/Public-key_cryptography), plus précisément la [cryptographie des courbes elliptiques (ECC)](https://eprint.iacr.org/2013/734.pdf) qui est très couramment employée, pas uniquement dans Ethereum. La plupart des serveurs sont protégés par les ECC. Bitcoin les emploie ainsi que SSH, TLS et bien d\'autres protocoles. Dans le cas spécifique d\'Ethereum, les clefs font 256 bits et sont plus fortes que celles en 128 et 192 bits, encore très employées et toujours considérées comme sûres par les experts.', + HELP_21_Desc_3: 'Vous avez une clef privée et une clef publique. La clef privée peut servir à dériver la clef publique mais l\'inverse est impossible. Le fait que l\'internet et le monde entier utilise ce système cryptographique signifie que, s\'il existait un moyen de dériver la clef privée de la clef publique, le risque que courrait votre Ether serait le moindre des problèmes de tout le monde.', + HELP_21_Desc_4: 'Cela dit, OUI : si quelqu\'un possède votre clef privée, il peut envoyer de l\'Ether depuis votre compte, de même que si une personne a le mot de passe de votre email, elle peut lire des mails ou en envoyer, ou si c\'est le mot de passe de votre compte en banque, elle peut faire des virements. Vous pouvez télécharger la versoin KEystore de votre clef privée qui est la clef privée chiffrée avec un mot de passe. Cela ressemble à avoir un mot de passe protégé par un autre mot de passe.', + HELP_21_Desc_5: 'Et OUI, en théorie, on peut taper une chaîne de 64 caractères hexadécimaux jusqu\'à en trouver un qui correspond. Il est d\'ailleurs possible d\'écrire un programme qui vérifie très rapidement des clefs privée aléatoires. C\'est ce que l\'on appelle utiliser la "brute force" ou miner des clefs privées. Beaucoup de monde y a pensé très fort et très longtemps. Quelques serveurs haut de gamme peuvent vérifier plus de 1 million de clefs par seconde. Pourtant, même ce chiffre ne donnerait pas accès à un compte suffisamment approvisionné pour en valoir la chandelle ; il est bien plus probable que vous, vos enfant et vos petits-enfants mourront avant d\'obtenir une correspondance.', + HELP_21_Desc_6: 'Si vous connaissez un peu Bitcoin, [ceci remettra les choses en perspective :](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Pour illustrer l\'improbabilité de tout ceci : supposons quqe chaque satoshi de chaque bitcoin qui sera jamais produit soit affecté à sa propre clef privée distincte. La probabilité que, parmi ces clefs, s\'en trouvent deux qui correspondent à la même adresse serait d\'environ 1 sur 100 quintillons. ', + HELP_21_Desc_7: '[Si vous voulez un argumentaire un peu plus technique :](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Ces nombres n\'ont rien à voir avec la technologie des systèmes ; ce sont les maximums autorisés par la thermodynamique. Et ils impliquent clairement qu\'une attaque par brute force contre des clefs de 256 bits restera impossible jusqu\'à ce que l\'on construise des ordinateurs avec autre chose que de la matière et qu\'ils occupent autre chose que l\'espace.', + HELP_21_Desc_8: 'Cela suppose bien entendu que les clefs sont générées d\'une manière totalement aléatoire avec suffisamment d\'entropie. C\'est le cas des clefs générées ici, tout comme celles de Jaxx et de Mist/geth. Les portefeuilles Ethereum sont tous assez bons de ce point de vue. Les clefs générées par des cerveaux humains ne le sont pas, car ces derniers ne sont pas capables de partir d\'un nombre parfaitement aléatoire. Il y a eu des cas d\'autres problèmes d\'entropie insuffisante ou de nombres imparfaitement aléatoires dans le monde de Bitcoin mais il s\'agit là d\'un tout autre problème qui peut attendre un peu.', + + HELP_SecCX_Title: 'Securité - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Où cette extension sauve-t-elle mes informations ?', + HELP_SecCX_Desc_2: 'Les informations stockées dans cette extension sont sauvegardée via [chrome.storage](http://chrome.storage/), c\'est à dire au même endroit que vos mots de passe dans Chrome.', + HELP_SecCX_Desc_3: 'Quelles informations sont sauvegardées ? ', + HELP_SecCX_Desc_4: 'L\'adresse, le surnom, la clef privée sont stockés dans chrome.storage. La clef privée est chiffrée par le mot de passe défini à l\'ajout du portefeuille. Le surnom et l\'adresse du portefeuille ne sont pas chiffrés.', + HELP_SecCX_Desc_5: 'Pourquoi le surnom et l\'adresse du portefeuille ne sont-ils pas chiffrés ? ', + HELP_SecCX_Desc_6: 'Si nous devions chiffrer ces informations, il vous faudrait entrer un mot de passe à chaque fois que vous voudriez voir votre solde ou les surnoms. Si cela vous ennuie, nous vous recommandons d\'utiliser MyEtherWallet.com au lieu de cette extension Chrome.', + + HELP_Sec_Title: 'Sécurité', + HELP_Sec_Desc_1: 'Si l\'une des premières questions que vous vous posez est "Pourquoi devrais-je faire confiance à ces gens ?", c\'est une bonne démarche. Nous espérons que ce qui suit va dissiper vos craintes. ', + HELP_Sec_Desc_2: 'Nous avons commencé en août 2015. Si vous recherchez ["myetherwallet" sur reddit](https://www.reddit.com/search?q=myetherwallet), vous pouvez voir qu\'un nombre considérable de personnes nous utilisent sans problème.', + HELP_Sec_Desc_3: 'Nous n\'allons pas prendre votre argent ou voler vos clefs privées. Il n\'y a pas de code malveillant sur ce site. En fait, les pages "Génération d\'un portefeuille" sont totalement côté client. Cela signifie que tout le code s\'éxécute sur **votre ordinateur** et n\'est jamais sauvé et/ou transmis où que ce soit.', + HELP_Sec_Desc_4: 'Vérifiez l\'URL -- Ce site est servi par Github et vous pouvez en voir le code source ici : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) aux domaines : [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) et [https://www.myetherwallet.com](https://www.myetherwallet.com). Vous pouvez vérifier qu\'il est hébergé chez Github en utilisant [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") ; les deux derniers enregistrements A appartiennent à Github pour leur hébergement de domaines spécifiques.', + HELP_Sec_Desc_5: 'Pour générer les portefeuilles, vous pouvez télécharger le [code source](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Voir #5 ci-dessus.', + HELP_Sec_Desc_6: 'Lancez un test et vérifiez le type d\'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis "Inspecter". Allez à l\'onglet "Network". Générez un portefeuille de test. Vous verrez qu\'il n\'y a pas d\'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n\'a été transféré.', + HELP_Sec_Desc_7: 'Maintenant, pour en être absolument sûr, allez à la page "Resources" (ou "Application"). Vous pouvez y voir tous les éléments qui constituent un site web. Si vous cliquez sur Local Storage, Cookies et Cache, vous verrez que rien n\'y est stocké. Rien n\'y est sauvegardé. Rafraîchissez la page et vous voilà revenu au départ."', + HELP_Sec_Desc_8: 'Si cet outil ne vous plaît pas, alors ne l\'utilisez surtout pas. Nous l\'avons créé pour qu\'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n\'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ', + + HELP_FAQ_Title: 'Plus de réponses utiles aux questions fréquentes', + HELP_Contact_Title: 'Moyens de nous contacter' +}; + +module.exports = fr; },{}],44:[function(require,module,exports){ -// Hindi -'use strict'; -var hi = function() {} -hi.code = 'hi'; -hi.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hi; +// Hebrew +'use strict'; +var he = function() {} +he.code = 'he'; +he.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = he; },{}],45:[function(require,module,exports){ -// Hungarian -'use strict'; -var hu = function() {} -hu.code = 'hu'; -hu.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hu; +// Hindi +'use strict'; +var hi = function() {} +hi.code = 'hi'; +hi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hi; },{}],46:[function(require,module,exports){ -// Indonesian -'use strict'; -var id = function() {} -id.code = 'id'; -id.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = id; +// Hungarian +'use strict'; +var hu = function() {} +hu.code = 'hu'; +hu.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hu; },{}],47:[function(require,module,exports){ -// Italian -// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e -'use strict'; -var it = function() {} -it.code = 'it'; -it.data = { - - /* Navigation*/ - NAV_YourWallets: 'I tuoi portafogli', - NAV_AddWallet: 'Aggiungi portafoglio', - NAV_GenerateWallet: 'Genera portafoglio', - NAV_BulkGenerate: 'Generazione multipla', - NAV_SendEther: 'Invia ether', - NAV_SendTokens: 'Invia token', - NAV_Offline: 'Invia offline', - NAV_WithdrawDAO: 'Preleva DAO', - DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', - NAV_ClaimDGD: 'Richiedi DGD', - DGD_TitleLong: 'Richiedi i tuoi token DGD', - NAV_DeployContract: 'Pubblica contratto', - NAV_MyWallets: 'I miei portafogli', - NAV_ViewWallet: 'Informazioni portafoglio', - NAV_Help: 'Aiuto', - NAV_Contact: 'Contatti', - - /* General */ - x_Password: 'Password', - x_Download: 'Download', - x_Address: 'Il tuo indirizzo', - x_Save: 'Salva', - x_Cancel: 'Annulla', - x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', - x_PrivKey: 'Chiave privata (non crittografata)', - x_PrivKey2: 'Chiave privata', - x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', - x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', - x_Keystore2: 'File Keystore / JSON', - x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', - x_Json: 'File JSON (non crittografato)', - x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', - x_PrintShort: 'Stampa', - x_Print: 'Stampa portafoglio cartaceo', - x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', - x_CSV: 'File CSV (non crittografato)', - x_TXT: 'File TXT (non crittografato)', - x_Wallet: 'Portafoglio', - - /* Header */ - MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', - CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', - MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', - CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', - - /* Footer */ - FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', - FOOTER_1b: 'Creato da', - FOOTER_2: 'Donazioni molto apprezzate:', - FOOTER_3: 'Generazione portafogli lato client da parte di', - FOOTER_4: 'Dichiarazione di non responsabilità', - - /* Sidebar */ - sidebar_AccountInfo: 'Informazioni conto: ', - sidebar_AccountAddr: 'Indirizzo conto: ', - sidebar_AccountBal: 'Saldo conto: ', - sidebar_TokenBal: 'Saldo token: ', - sidebar_Equiv: 'Valori equivalenti: ', - sidebar_TransHistory: 'Storico transazioni: ', - sidebar_DGDBal: 'Informazioni crowdsale DGD:', - sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', - sidebar_donate: 'Dona', - sidebar_thanks: 'GRAZIE!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', - decrypt_Title: 'Seleziona il formato della tua chiave privata:', - decrypt_Select: 'Seleziona un portafoglio:', - - /* Add Wallet */ - ADD_Label_1: 'Cosa vuoi fare?', - ADD_Radio_1: 'Genera un nuovo portafoglio', - ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', - ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', - ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', - ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', - ADD_Radio_4: 'Aggiungi un conto da osservare', - ADD_Label_2: 'Crea un nome:', - ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', - ADD_Label_4: 'Aggiungi un conto da osservare', - ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', - ADD_Label_5: 'Inserisci l\'indirizzo: ', - ADD_Label_6: 'Sblocca portafoglio: ', - ADD_Label_6_short: 'Sblocca', - ADD_Label_7: 'Aggiungi conto', - - /* Generate Wallets */ - GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', - GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', - GEN_Placeholder_1: 'NON dimenticarti di salvarla!', - GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', - GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', - GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', - GEN_Label_3: 'Salva il tuo indirizzo.', - GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Numero di portafogli da generare', - BULK_Label_2: 'Genera portafogli', - BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Indirizzo destinatario: ', - SEND_amount: 'Importo da inviare: ', - SEND_amount_short: 'Importo', - SEND_custom: 'Altro', - SEND_gas: 'Gas', - SEND_generate: 'Genera transazione', - SEND_raw: 'Transazione grezza', - SEND_signed: 'Transazione firmata', - SEND_trans: 'Invia transazione', - SEND_TransferTotal: 'Invia l\'intero saldo', - SENDModal_Title: 'Attenzione! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Stai per inviare', - SENDModal_Content_2: 'all\'indirizzo', - SENDModal_Content_3: 'Sei sicuro di volerlo fare?', - SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', - SENDModal_No: 'No, tiratemi fuori da qui!', - SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', - - /* Tokens */ - TOKEN_Addr: 'Indirizzo: ', - TOKEN_Symbol: 'Simbolo del token: ', - TOKEN_Dec: 'Decimali: ', - - /* Send Transaction */ - TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', - TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', - TRANS_standard: 'ETH (transazione standard)', - TRANS_eth: 'Solo ETH', - TRANS_etc: 'Solo ETC', - TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', - TRANS_data: ' Dati: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', - TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', - TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', - TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', - TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', - TRANSModal_Yes: 'Bene, ho capito.', - TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genera & invia una transazione offline', - OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', - OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', - OFFLINE_Step1_Button: 'Genera informazioni', - OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', - OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', - OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', - OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', - OFFLINE_Step2_Label_2: 'Valore / importo da inviare', - OFFLINE_Step2_Label_3: 'Prezzo gas ', - OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_4: 'Limite gas ', - OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_6: 'Dati', - OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', - OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', - OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', - OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', - - /* DAO */ - DAO_bal1: 'al blocco 1.919.999', - DAO_bal2: 'adesso', - DAO_TitleETH: 'Preleva DAO e ricevi ETH', - DAO_TitleETC: 'Preleva DAO e ricevi ETC', - DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', - DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', - DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', - DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', - DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', - DAOModal_Title: 'Tanto per essere sicuri...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Stai per prelevare', - DAOModal_2: 'token DAO inviando a', - DAOModal_3: 'una somma di', // "in return for" - - /* Digix */ - DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', - DGD_Label_1: 'Stima commissione utilizzata:', - DGD_Label_2: 'Commissione massima fornita:', - DGD_Label_3: 'Prezzo gas:', - DGD_Generate: 'Genera richiesta', - DGD_Content: 'Stai per richiedere i tuoi token DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Genera bytecode', - DEP_generated: 'Bytecode generato', - DEP_signtx: 'Firma transazione', - DEP_interface: 'Interfaccia generata', - - /* My Wallet */ - MYWAL_Nick: 'Nome portafoglio', - MYWAL_Address: 'Indirizzo portafoglio', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Modifica', - MYWAL_View: 'Mostra', - MYWAL_Remove: 'Rimuovi', - MYWAL_RemoveWal: 'Rimozione portafoglio:', - MYWAL_WatchOnly: 'I tuoi conti osservati', - MYWAL_Viewing: 'Dettagli portafoglio: ', - MYWAL_Hide: 'Nascondi informazioni portafoglio', - MYWAL_Edit_2: 'Modifica portafoglio: ', - MYWAL_Name: 'Nome portafoglio', - MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', - MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', - MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', - VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', - - /* CX */ - CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', - CX_quicksend: 'Invio rapido', - - /* Error Messages */ - ERROR_1: 'Ti preghiamo di inserire una quantità valida.', - ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', - ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', - ERROR_4: 'Questo non è un file portafoglio valido. ', - ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', - ERROR_6: 'Indirizzo non valido. ', - ERROR_7: 'Password non valida. ', - ERROR_8: 'Numero non valido. ', - ERROR_9: 'Limite gas non valido. ', - ERROR_10: 'Valori dati non validi. ', - ERROR_11: 'Quantità di gas non valida. ', - ERROR_12: 'Nonce non valido. ', - ERROR_13: 'Transazione firmata non valida. ', - ERROR_14: 'Esiste già un portafoglio con questo nome. ', - ERROR_15: 'Portafoglio non trovato. ', - ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', - ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', - ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', - ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', - ERROR_20: 'Simbolo non valido', - SUCCESS_1: 'Indirizzo valido', - SUCCESS_2: 'Portafoglio decodificato correttamente', - SUCCESS_3: 'Transazione inviata. TX ID: ', - SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', - SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', - SUCCESS_6: 'File selezionato: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Mittente non valido', - GETH_Nonce: 'Nonce troppo basso', - GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', - GETH_Balance: 'Saldo insufficiente', - GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', - GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', - GETH_IntrinsicGas: 'Gas intrinseco troppo basso', - GETH_GasLimit: 'Eccede il limite gas per il blocco', - GETH_NegativeValue: 'Valore negativo', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Grazie ai nostri traduttori: ', - TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', - TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', - HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', - HELP_Remind_Title: 'Qualche promemoria', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', - HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', - - HELP_0_Title: '0) Sono nuovo. Cosa faccio?', - HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', - HELP_0_Desc_2: 'Crea un nuovo portafoglio.', - HELP_0_Desc_3: 'Fai un backup del portafoglio.', - HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', - HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', - - HELP_1_Title: '1) Come creo un nuovo portafoglio? ', - HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', - HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', - HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', - HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', - HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', - - HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', - HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', - HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', - HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', - HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', - HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', - HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', - - HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', - HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', - HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', - HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', - HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', - HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', - HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', - HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', - - HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', - HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', - HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', - HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', - HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', - HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', - - HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', - HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', - HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', - HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', - HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', - HELP_4_Desc_9: 'Fai clic su "Genera transazione".', - HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', - - HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', - HELP_4CX_Desc_2: 'Invio rapido:', - HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', - HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', - HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', - HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', - HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', - HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', - HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', - HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', - - HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', - HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', - HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', - HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', - HELP_5_Desc_5: 'Decomprimi il file.', - HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', - HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', - HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', - - HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', - HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', - HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', - HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', - HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', - HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', - HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', - HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', - - HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', - HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', - HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', - HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', - HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', - HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', - HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', - HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', - HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', - HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', - HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', - HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', - HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', - HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', - HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', - - HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', - HELP_7_Desc_1: 'Vai alla pagina "Invia token".', - HELP_7_Desc_2: 'Sblocca il portafoglio.', - HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', - HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', - HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', - HELP_7_Desc_7: 'Fai clic su "Altro".', - HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', - HELP_7_Desc_9: 'Fai clic su "Salva".', - HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', - HELP_7_Desc_11: 'Fai clic su "Genera transazione".', - HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', - - HELP_8_Title: '8) Che succede se il vostro sito va giù?', - HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', - HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', - HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', - HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', - - HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', - HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', - HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', - HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', - - HELP_9_Title: '9) La pagina "Invia ether" è offline?', - HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', - - HELP_10_Title: '10) Come creo una transazione offline?', - HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', - HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', - HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', - HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', - HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', - HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', - HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', - HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', - - HELP_11_Title: '11) Come faccio a inviare a un contratto?', - HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', - HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', - HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', - HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', - HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', - HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', - HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', - HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', - HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', - HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', - HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', - HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', - HELP_12_Desc_11: 'Con una chiave privata non crittografata...', - HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', - HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', - HELP_12_Desc_15: 'Se sei su un Mac:', - HELP_12_Desc_15b: 'Se sei su un PC:', - HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', - HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', - HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', - HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', - HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', - HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', - HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', - HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', - HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', - HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', - HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', - - HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', - HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', - HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', - HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', - - HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', - HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', - - HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', - HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', - - HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', - - HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', - HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', - - HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', - HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', - - HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', - HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', - HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', - HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', - HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', - HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', - HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', - HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', - HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', - - HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', - HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', - HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', - HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', - HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', - HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', - - HELP_Sec_Title: 'Sicurezza', - HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', - HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', - HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', - HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', - HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', - HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', - HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', - HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', - - HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', - HELP_Contact_Title: 'Modi per contattarci (in Inglese)' -}; - -module.exports = it; +// Indonesian +'use strict'; +var id = function() {} +id.code = 'id'; +id.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dompet Anda', /*'Your Wallets'*/ + NAV_AddWallet: 'Tambahkan Dompet', /*'Add Wallet'*/ + NAV_GenerateWallet: 'Buat Dompet', /*'Generate Wallet'*/ + NAV_BulkGenerate: 'Buat Banyak Dompet Sekaligus', /*'Bulk Generate'*/ + NAV_SendEther: 'Kirim Ether', /*'Send Ether'*/ + NAV_SendTokens: 'Kirim Tokens', /*'Send Tokens'*/ + NAV_Offline: 'Kirim Offline', /*'Send Offline'*/ + NAV_WithdrawDAO: 'Ambil DAO', /*'Withdraw DAO'*/ + DAO_TitleLong: 'Ambil ETH dari Token DAO Anda Withdraw Your Dao Tokens For ETH', /*'Withdraw Your Dao Tokens For ETH'*/ + NAV_ClaimDGD: 'Klaim DGD', /*'Claim DGD'*/ + DGD_TitleLong: 'Klaim DGD Token Anda', /*'Claim Your DGD Tokens'*/ + NAV_DeployContract: 'Deploy Contract', /*'Deploy Contract'*/ + NAV_MyWallets: 'Dompet Saya', /*'My Wallets'*/ + NAV_ViewWallet: 'Lihat Info Dompet', /*'View Wallet Info'*/ + NAV_Help: 'Bantuan', /*'Help'*/ + NAV_Contact: 'Kontak', /*'Contact'*/ + + /* General */ + x_Address: 'Alamat Anda', /*'Your Address'*/ + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Batal', /*'Cancel'*/ + x_CSV: 'File CSV (tidak ter-enkripsi)', /*'CSV file (unencrypted)*/ + x_Download: 'Download', + x_Json: 'File JSON File (tidak ter-enkripsi)', /*'JSON File (unencrypted)'*/ + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Dompet Kertas', /*'Print Paper Wallet'*/ + x_PrintDesc: 'ProTip: klik print dan simpan sebagai PDF, meskipun Anda tidak memiliki printer!', /*'ProTip: Click print and save this as a PDF, even if you do not own a printer!'*/ + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (tidak ter-enkripsi)', /*'Private Key (unencrypted)'*/ + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Simpan', /*'Save'*/ + x_TXT: 'File TXT file (tidak ter-enkripsi)', /*'TXT file (unencrypted)'*/ + x_Wallet: 'Dompet', /*'Wallet'*/ + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'Yos Ginting', + TranslatorAddr_1: '0x8F646C5c215be6E0163f02Bd2eB97AFC2DF70e5c', + /* Translator 1: Start translating into Indonesian. Will do it in stages */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = id; },{}],48:[function(require,module,exports){ -// Japanese -'use strict'; -var ja = function() {} -ja.code = 'ja'; -ja.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'あなたのウォレット', - NAV_AddWallet: 'ウォレットを追加', - NAV_GenerateWallet: 'ウォレットを作成', - NAV_BulkGenerate: 'バルク作成', - NAV_SendEther: 'Ether送出', - NAV_SendTokens: 'トークン送出', - NAV_Offline: 'オフライン送出', - NAV_WithdrawDAO: 'DAO払い戻し', - DAO_TitleLong: 'DAOトークンをETHで払い出し', - NAV_ClaimDGD: 'DGD請求', - DGD_TitleLong: 'DGDトークンを請求', - NAV_DeployContract: 'コントラクトをデプロイ', - NAV_MyWallets: '自分のウォレット', - NAV_ViewWallet: 'ウォレット情報を見る', - NAV_Help: 'ヘルプ', - NAV_Contact: '連絡する', - - /* General */ - x_Address: '自分のアドレス', - x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', - x_CSV: 'CSV ファイル (未暗号化)', - x_Cancel: '取り消す', - x_Download: 'ダウンロード', - x_Json: 'JSON ファイル (未暗号化)', - x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', - x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', - x_Keystore2: 'Keystore / JSON ファイル', - x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', - x_Password: 'パスワード', - x_Print: 'ペーパーウォレットを印刷', - x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', - x_PrintShort: '印刷', - x_PrivKey: 'プライベートキー(未暗号化)', - x_PrivKey2: 'プライベートキー', - x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', - x_Save: '保存する', - x_TXT: 'TXT ファイル (未暗号化)', - x_Wallet: 'ウォレット', - - /* Header */ - MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', - CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', - MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', - CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', - - /* Footer */ - FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', - FOOTER_1b: '制作', - FOOTER_2: '御寄付に感謝!:', - FOOTER_3: 'クライアントサイドウォレット制作', - FOOTER_4: '免責事項', - - /* Sidebar */ - sidebar_AccountInfo: 'アカウント情報: ', - sidebar_AccountAddr: 'アカウントアドレス: ', - sidebar_AccountBal: 'アカウント残高: ', - sidebar_TokenBal: 'トークン残高: ', - sidebar_Equiv: '等価: ', - sidebar_TransHistory: 'トランザクション履歴: ', - sidebar_DGDBal: 'DGDクラウドセール情報:', - sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', - sidebar_donate: '寄付する', - sidebar_thanks: '感謝します!!!', - - /* Decrypt Panel */ - decrypt_Access: 'どの方法でウォレットを操作しますか?', - decrypt_Title: 'プライベートキーフォーマットの選択:', - decrypt_Select: 'ウォレットの選択', - - /* Add Wallet */ - ADD_Label_1: 'ご希望の操作をお選びください', - ADD_Radio_1: '新規ウォレットの作成', - ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', - ADD_Radio_2_alt: 'ウォレットファイルの選択: ', - ADD_Radio_2_short: 'ウォレットファイルを選択', - ADD_Radio_3: 'プライベートキーをペースト/タイプ ', - ADD_Radio_4: '監視するアカウントを追加', - ADD_Label_2: 'ニックネームの作成:', - ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', - ADD_Label_4: '監視するアカウントを追加', - ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', - ADD_Label_5: 'アドレスを入力: ', - ADD_Label_6: 'ウォレットをアンロック: ', - ADD_Label_6_short: 'アンロック', - ADD_Label_7: 'アカウントを追加', - - /* Generate Wallets */ - GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', - GEN_Label_1: '強固なパスワードを入力(9文字以上)', - GEN_Placeholder_1: '必ず保存してください!', - GEN_SuccessMsg: '成功!ウォレットが作成されました。', - GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', - GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', - GEN_Label_3: 'アドレスを保存してください。', - GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', - - /* Bulk Generate Wallets */ - BULK_Label_1: '作成するウォレット数', - BULK_Label_2: '複数ウォレットを作成する', - BULK_SuccessMsg: '成功!ウォレットが作成されました。', - - /* Sending Ether and Tokens */ - SEND_addr: '宛先アドレス: ', - SEND_amount: '送出数量: ', - SEND_amount_short: '数量', - SEND_custom: 'カスタム', - SEND_gas: 'ガス', - SEND_TransferTotal: '残高をすべて送出する', - SEND_generate: 'トランザクションを生成', - SEND_raw: '未加工トランザクション', - SEND_signed: '署名済みトランザクション', - SEND_trans: 'トランザクションの送出', - SENDModal_Title: '警告! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: '送出準備が', - SENDModal_Content_2: 'について、アドレス', - SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', - SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', - SENDModal_No: 'いいえ、中断します。', - SENDModal_Yes: 'はい、確かです。処理を実行します。', - - /* Tokens */ - TOKEN_Addr: 'アドレス:', - TOKEN_Symbol: 'トークンシンボル: ', - TOKEN_Dec: 'ケタ数: ', - - /* Send Transaction */ - TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', - TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', - TRANS_standard: 'ETH(標準トランザクション)', - TRANS_eth: 'ETHのみ', - TRANS_etc: 'ETCのみ', - TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', - TRANS_data: ' データ: ', - TRANS_gas: ' ガス: ', - TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', - - /* Send Transaction Modals */ - TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', - TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', - TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', - TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', - TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: '理解しました。', - TRANSModal_No: '理解できません。ヘルプが必要です。', - - /* Offline Transaction */ - OFFLINE_Title: 'オフライントランザクションを作成し送出', - OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', - OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', - OFFLINE_Step1_Button: '情報生成', - OFFLINE_Step1_Label_1: '送出元アドレス: ', - OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', - OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', - OFFLINE_Step2_Label_1: '送出先アドレス: ', - OFFLINE_Step2_Label_2: '送出する値/総量', - OFFLINE_Step2_Label_3: 'ガス価格 ', - OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_4: 'ガスリミット ', - OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_6: 'データ', - OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', - OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', - OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', - OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', - - /* DAO */ - DAO_bal1: 'ブロック 1,919,999', - DAO_bal2: '現在の', - DAO_TitleETH: 'ETHでDAOを払い出し', - DAO_TitleETC: 'ETCでDAOを払い出し', - DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', - DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', - DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', - DAO_Inst: '赤いボタンをクリックしてください。簡単です。', - DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', - DAOModal_Title: '確認中/...', - DAOModal_1: '払い出しを進めます', - DAOModal_2: 'DAOトークンを', - DAOModal_3: 'に対し', // “の代わりに” - - /* Digix */ - DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', - DGD_Label_1: 'フィー消費量概算:', - DGD_Label_2: 'フィー最大消費量:', - DGD_Label_3: 'ガス価格:', - DGD_Generate: '請求の生成', - DGD_Content: 'DGDトークンの請求を進めます', - - /* Deploy Contracts */ - DEP_generate: 'バイトコードを生成する', - DEP_generated: '生成されたバイトコード', - DEP_signtx: 'トランザクションに署名', - DEP_interface: '生成されたインターフェース', - - /* My Wallet */ - MYWAL_Nick: 'ウォレットニックネーム', - MYWAL_Address: 'ウォレットアドレス', - MYWAL_Bal: '残高', - MYWAL_Edit: '編集', - MYWAL_View: '表示', - MYWAL_Remove: '除去', - MYWAL_RemoveWal: 'ウォレットを除去:', - MYWAL_WatchOnly: '自分の監視専用アカウント', - MYWAL_Viewing: 'ウォレットを表示: ', - MYWAL_Hide: 'ウォレット情報を隠す', - MYWAL_Edit_2: 'ウォレットを編集: ', - MYWAL_Name: 'ウォレット名', - MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', - MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', - MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', - VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', - VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', - - /* Chrome Extension */ - CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', - CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: '正しい値を入力してください。', - ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', - ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', - ERROR_4: '正しいウォレットファイルではありません。 ', - ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', - ERROR_6: '無効なアドレスです。 ', - ERROR_7: '無効なパスワードです。 ', - ERROR_8: '無効な総量です。 ', - ERROR_9: '無効なガスリミットです。 ', - ERROR_10: '無効なデータです。 ', - ERROR_11: '無効なガス総量です。 ', - ERROR_12: '無効な nonce です。 ', - ERROR_13: '無効な署名のトランザクションです。 ', - ERROR_14: '同じニックネームのウォレットが既にあります。 ', - ERROR_15: 'ウォレットが見つかりません。 ', - ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', - ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', - ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', - ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  - ERROR_20: '無効なシンボル', - SUCCESS_1: '有効なアドレス', - SUCCESS_2: 'ウォレットは正常に暗号解除されました。', - SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', - SUCCESS_4: 'ウォレットが追加されました:', - SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', - SUCCESS_6: '選択されました: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'トランスレーターに感謝: ', - TranslatorName_1: 'sekisanchi', - TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', - /* Translator 1: Kazunori Seki / 関一典 */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ja; +// Italian +// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e +'use strict'; +var it = function() {} +it.code = 'it'; +it.data = { + + /* Navigation*/ + NAV_YourWallets: 'I tuoi portafogli', + NAV_AddWallet: 'Aggiungi portafoglio', + NAV_GenerateWallet: 'Genera portafoglio', + NAV_BulkGenerate: 'Generazione multipla', + NAV_SendEther: 'Invia ether', + NAV_SendTokens: 'Invia token', + NAV_Offline: 'Invia offline', + NAV_WithdrawDAO: 'Preleva DAO', + DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', + NAV_ClaimDGD: 'Richiedi DGD', + DGD_TitleLong: 'Richiedi i tuoi token DGD', + NAV_DeployContract: 'Pubblica contratto', + NAV_MyWallets: 'I miei portafogli', + NAV_ViewWallet: 'Informazioni portafoglio', + NAV_Help: 'Aiuto', + NAV_Contact: 'Contatti', + + /* General */ + x_Password: 'Password', + x_Download: 'Download', + x_Address: 'Il tuo indirizzo', + x_Save: 'Salva', + x_Cancel: 'Annulla', + x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', + x_PrivKey: 'Chiave privata (non crittografata)', + x_PrivKey2: 'Chiave privata', + x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', + x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', + x_Keystore2: 'File Keystore / JSON', + x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', + x_Json: 'File JSON (non crittografato)', + x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', + x_PrintShort: 'Stampa', + x_Print: 'Stampa portafoglio cartaceo', + x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', + x_CSV: 'File CSV (non crittografato)', + x_TXT: 'File TXT (non crittografato)', + x_Wallet: 'Portafoglio', + + /* Header */ + MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', + CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', + MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', + CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', + + /* Footer */ + FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', + FOOTER_1b: 'Creato da', + FOOTER_2: 'Donazioni molto apprezzate:', + FOOTER_3: 'Generazione portafogli lato client da parte di', + FOOTER_4: 'Dichiarazione di non responsabilità', + + /* Sidebar */ + sidebar_AccountInfo: 'Informazioni conto: ', + sidebar_AccountAddr: 'Indirizzo conto: ', + sidebar_AccountBal: 'Saldo conto: ', + sidebar_TokenBal: 'Saldo token: ', + sidebar_Equiv: 'Valori equivalenti: ', + sidebar_TransHistory: 'Storico transazioni: ', + sidebar_DGDBal: 'Informazioni crowdsale DGD:', + sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', + sidebar_donate: 'Dona', + sidebar_thanks: 'GRAZIE!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', + decrypt_Title: 'Seleziona il formato della tua chiave privata:', + decrypt_Select: 'Seleziona un portafoglio:', + + /* Add Wallet */ + ADD_Label_1: 'Cosa vuoi fare?', + ADD_Radio_1: 'Genera un nuovo portafoglio', + ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', + ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', + ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', + ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', + ADD_Radio_4: 'Aggiungi un conto da osservare', + ADD_Label_2: 'Crea un nome:', + ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', + ADD_Label_4: 'Aggiungi un conto da osservare', + ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', + ADD_Label_5: 'Inserisci l\'indirizzo: ', + ADD_Label_6: 'Sblocca portafoglio: ', + ADD_Label_6_short: 'Sblocca', + ADD_Label_7: 'Aggiungi conto', + + /* Generate Wallets */ + GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', + GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', + GEN_Placeholder_1: 'NON dimenticarti di salvarla!', + GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', + GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', + GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', + GEN_Label_3: 'Salva il tuo indirizzo.', + GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Numero di portafogli da generare', + BULK_Label_2: 'Genera portafogli', + BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Indirizzo destinatario: ', + SEND_amount: 'Importo da inviare: ', + SEND_amount_short: 'Importo', + SEND_custom: 'Altro', + SEND_gas: 'Gas', + SEND_generate: 'Genera transazione', + SEND_raw: 'Transazione grezza', + SEND_signed: 'Transazione firmata', + SEND_trans: 'Invia transazione', + SEND_TransferTotal: 'Invia l\'intero saldo', + SENDModal_Title: 'Attenzione! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Stai per inviare', + SENDModal_Content_2: 'all\'indirizzo', + SENDModal_Content_3: 'Sei sicuro di volerlo fare?', + SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', + SENDModal_No: 'No, tiratemi fuori da qui!', + SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', + + /* Tokens */ + TOKEN_Addr: 'Indirizzo: ', + TOKEN_Symbol: 'Simbolo del token: ', + TOKEN_Dec: 'Decimali: ', + + /* Send Transaction */ + TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', + TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', + TRANS_standard: 'ETH (transazione standard)', + TRANS_eth: 'Solo ETH', + TRANS_etc: 'Solo ETC', + TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', + TRANS_data: ' Dati: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', + TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', + TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', + TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', + TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', + TRANSModal_Yes: 'Bene, ho capito.', + TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genera & invia una transazione offline', + OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', + OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', + OFFLINE_Step1_Button: 'Genera informazioni', + OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', + OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', + OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', + OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', + OFFLINE_Step2_Label_2: 'Valore / importo da inviare', + OFFLINE_Step2_Label_3: 'Prezzo gas ', + OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_4: 'Limite gas ', + OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_6: 'Dati', + OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', + OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', + OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', + OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', + + /* DAO */ + DAO_bal1: 'al blocco 1.919.999', + DAO_bal2: 'adesso', + DAO_TitleETH: 'Preleva DAO e ricevi ETH', + DAO_TitleETC: 'Preleva DAO e ricevi ETC', + DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', + DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', + DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', + DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', + DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', + DAOModal_Title: 'Tanto per essere sicuri...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Stai per prelevare', + DAOModal_2: 'token DAO inviando a', + DAOModal_3: 'una somma di', // "in return for" + + /* Digix */ + DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', + DGD_Label_1: 'Stima commissione utilizzata:', + DGD_Label_2: 'Commissione massima fornita:', + DGD_Label_3: 'Prezzo gas:', + DGD_Generate: 'Genera richiesta', + DGD_Content: 'Stai per richiedere i tuoi token DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Genera bytecode', + DEP_generated: 'Bytecode generato', + DEP_signtx: 'Firma transazione', + DEP_interface: 'Interfaccia generata', + + /* My Wallet */ + MYWAL_Nick: 'Nome portafoglio', + MYWAL_Address: 'Indirizzo portafoglio', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Modifica', + MYWAL_View: 'Mostra', + MYWAL_Remove: 'Rimuovi', + MYWAL_RemoveWal: 'Rimozione portafoglio:', + MYWAL_WatchOnly: 'I tuoi conti osservati', + MYWAL_Viewing: 'Dettagli portafoglio: ', + MYWAL_Hide: 'Nascondi informazioni portafoglio', + MYWAL_Edit_2: 'Modifica portafoglio: ', + MYWAL_Name: 'Nome portafoglio', + MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', + MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', + MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', + VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', + + /* CX */ + CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', + CX_quicksend: 'Invio rapido', + + /* Error Messages */ + ERROR_1: 'Ti preghiamo di inserire una quantità valida.', + ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', + ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', + ERROR_4: 'Questo non è un file portafoglio valido. ', + ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', + ERROR_6: 'Indirizzo non valido. ', + ERROR_7: 'Password non valida. ', + ERROR_8: 'Numero non valido. ', + ERROR_9: 'Limite gas non valido. ', + ERROR_10: 'Valori dati non validi. ', + ERROR_11: 'Quantità di gas non valida. ', + ERROR_12: 'Nonce non valido. ', + ERROR_13: 'Transazione firmata non valida. ', + ERROR_14: 'Esiste già un portafoglio con questo nome. ', + ERROR_15: 'Portafoglio non trovato. ', + ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', + ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', + ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', + ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', + ERROR_20: 'Simbolo non valido', + SUCCESS_1: 'Indirizzo valido', + SUCCESS_2: 'Portafoglio decodificato correttamente', + SUCCESS_3: 'Transazione inviata. TX ID: ', + SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', + SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', + SUCCESS_6: 'File selezionato: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Mittente non valido', + GETH_Nonce: 'Nonce troppo basso', + GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', + GETH_Balance: 'Saldo insufficiente', + GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', + GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', + GETH_IntrinsicGas: 'Gas intrinseco troppo basso', + GETH_GasLimit: 'Eccede il limite gas per il blocco', + GETH_NegativeValue: 'Valore negativo', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Grazie ai nostri traduttori: ', + TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', + TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', + HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', + HELP_Remind_Title: 'Qualche promemoria', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', + HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', + + HELP_0_Title: '0) Sono nuovo. Cosa faccio?', + HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', + HELP_0_Desc_2: 'Crea un nuovo portafoglio.', + HELP_0_Desc_3: 'Fai un backup del portafoglio.', + HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', + HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', + + HELP_1_Title: '1) Come creo un nuovo portafoglio? ', + HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', + HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', + HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', + HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', + HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', + + HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', + HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', + HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', + HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', + HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', + HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', + HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', + + HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', + HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', + HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', + HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', + HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', + HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', + HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', + HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', + + HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', + HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', + HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', + HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', + HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', + HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', + + HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', + HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', + HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', + HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', + HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', + HELP_4_Desc_9: 'Fai clic su "Genera transazione".', + HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', + + HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', + HELP_4CX_Desc_2: 'Invio rapido:', + HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', + HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', + HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', + HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', + HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', + HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', + HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', + HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', + + HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', + HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', + HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', + HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', + HELP_5_Desc_5: 'Decomprimi il file.', + HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', + HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', + HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', + + HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', + HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', + HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', + HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', + HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', + HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', + HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', + HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', + + HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', + HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', + HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', + HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', + HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', + HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', + HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', + HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', + HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', + HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', + HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', + HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', + HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', + HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', + HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', + + HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', + HELP_7_Desc_1: 'Vai alla pagina "Invia token".', + HELP_7_Desc_2: 'Sblocca il portafoglio.', + HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', + HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', + HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', + HELP_7_Desc_7: 'Fai clic su "Altro".', + HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', + HELP_7_Desc_9: 'Fai clic su "Salva".', + HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', + HELP_7_Desc_11: 'Fai clic su "Genera transazione".', + HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', + + HELP_8_Title: '8) Che succede se il vostro sito va giù?', + HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', + HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', + HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', + HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', + + HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', + HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', + HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', + HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', + + HELP_9_Title: '9) La pagina "Invia ether" è offline?', + HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', + + HELP_10_Title: '10) Come creo una transazione offline?', + HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', + HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', + HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', + HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', + HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', + HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', + HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', + HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', + + HELP_11_Title: '11) Come faccio a inviare a un contratto?', + HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', + HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', + HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', + HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', + HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', + HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', + HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', + HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', + HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', + HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', + HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', + HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', + HELP_12_Desc_11: 'Con una chiave privata non crittografata...', + HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', + HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', + HELP_12_Desc_15: 'Se sei su un Mac:', + HELP_12_Desc_15b: 'Se sei su un PC:', + HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', + HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', + HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', + HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', + HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', + HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', + HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', + HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', + HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', + HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', + HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', + + HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', + HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', + HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', + HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', + + HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', + HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', + + HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', + HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', + + HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', + + HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', + HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', + + HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', + HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', + + HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', + HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', + HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', + HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', + HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', + HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', + HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', + HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', + HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', + + HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', + HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', + HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', + HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', + HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', + HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', + + HELP_Sec_Title: 'Sicurezza', + HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', + HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', + HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', + HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', + HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', + HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', + HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', + HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', + + HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', + HELP_Contact_Title: 'Modi per contattarci (in Inglese)' +}; + +module.exports = it; },{}],49:[function(require,module,exports){ -// Korean -'use strict'; -var ko = function() {} -ko.code = 'ko'; -ko.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ko; +// Japanese +'use strict'; +var ja = function() {} +ja.code = 'ja'; +ja.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'あなたのウォレット', + NAV_AddWallet: 'ウォレットを追加', + NAV_GenerateWallet: 'ウォレットを作成', + NAV_BulkGenerate: 'バルク作成', + NAV_SendEther: 'Ether送出', + NAV_SendTokens: 'トークン送出', + NAV_Offline: 'オフライン送出', + NAV_WithdrawDAO: 'DAO払い戻し', + DAO_TitleLong: 'DAOトークンをETHで払い出し', + NAV_ClaimDGD: 'DGD請求', + DGD_TitleLong: 'DGDトークンを請求', + NAV_DeployContract: 'コントラクトをデプロイ', + NAV_MyWallets: '自分のウォレット', + NAV_ViewWallet: 'ウォレット情報を見る', + NAV_Help: 'ヘルプ', + NAV_Contact: '連絡する', + + /* General */ + x_Address: '自分のアドレス', + x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', + x_CSV: 'CSV ファイル (未暗号化)', + x_Cancel: '取り消す', + x_Download: 'ダウンロード', + x_Json: 'JSON ファイル (未暗号化)', + x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', + x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', + x_Keystore2: 'Keystore / JSON ファイル', + x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', + x_Password: 'パスワード', + x_Print: 'ペーパーウォレットを印刷', + x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', + x_PrintShort: '印刷', + x_PrivKey: 'プライベートキー(未暗号化)', + x_PrivKey2: 'プライベートキー', + x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', + x_Save: '保存する', + x_TXT: 'TXT ファイル (未暗号化)', + x_Wallet: 'ウォレット', + + /* Header */ + MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', + CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', + MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', + CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', + + /* Footer */ + FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', + FOOTER_1b: '制作', + FOOTER_2: '御寄付に感謝!:', + FOOTER_3: 'クライアントサイドウォレット制作', + FOOTER_4: '免責事項', + + /* Sidebar */ + sidebar_AccountInfo: 'アカウント情報: ', + sidebar_AccountAddr: 'アカウントアドレス: ', + sidebar_AccountBal: 'アカウント残高: ', + sidebar_TokenBal: 'トークン残高: ', + sidebar_Equiv: '等価: ', + sidebar_TransHistory: 'トランザクション履歴: ', + sidebar_DGDBal: 'DGDクラウドセール情報:', + sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', + sidebar_donate: '寄付する', + sidebar_thanks: '感謝します!!!', + + /* Decrypt Panel */ + decrypt_Access: 'どの方法でウォレットを操作しますか?', + decrypt_Title: 'プライベートキーフォーマットの選択:', + decrypt_Select: 'ウォレットの選択', + + /* Add Wallet */ + ADD_Label_1: 'ご希望の操作をお選びください', + ADD_Radio_1: '新規ウォレットの作成', + ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', + ADD_Radio_2_alt: 'ウォレットファイルの選択: ', + ADD_Radio_2_short: 'ウォレットファイルを選択', + ADD_Radio_3: 'プライベートキーをペースト/タイプ ', + ADD_Radio_4: '監視するアカウントを追加', + ADD_Label_2: 'ニックネームの作成:', + ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', + ADD_Label_4: '監視するアカウントを追加', + ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', + ADD_Label_5: 'アドレスを入力: ', + ADD_Label_6: 'ウォレットをアンロック: ', + ADD_Label_6_short: 'アンロック', + ADD_Label_7: 'アカウントを追加', + + /* Generate Wallets */ + GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', + GEN_Label_1: '強固なパスワードを入力(9文字以上)', + GEN_Placeholder_1: '必ず保存してください!', + GEN_SuccessMsg: '成功!ウォレットが作成されました。', + GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', + GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', + GEN_Label_3: 'アドレスを保存してください。', + GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', + + /* Bulk Generate Wallets */ + BULK_Label_1: '作成するウォレット数', + BULK_Label_2: '複数ウォレットを作成する', + BULK_SuccessMsg: '成功!ウォレットが作成されました。', + + /* Sending Ether and Tokens */ + SEND_addr: '宛先アドレス: ', + SEND_amount: '送出数量: ', + SEND_amount_short: '数量', + SEND_custom: 'カスタム', + SEND_gas: 'ガス', + SEND_TransferTotal: '残高をすべて送出する', + SEND_generate: 'トランザクションを生成', + SEND_raw: '未加工トランザクション', + SEND_signed: '署名済みトランザクション', + SEND_trans: 'トランザクションの送出', + SENDModal_Title: '警告! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: '送出準備が', + SENDModal_Content_2: 'について、アドレス', + SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', + SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', + SENDModal_No: 'いいえ、中断します。', + SENDModal_Yes: 'はい、確かです。処理を実行します。', + + /* Tokens */ + TOKEN_Addr: 'アドレス:', + TOKEN_Symbol: 'トークンシンボル: ', + TOKEN_Dec: 'ケタ数: ', + + /* Send Transaction */ + TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', + TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', + TRANS_standard: 'ETH(標準トランザクション)', + TRANS_eth: 'ETHのみ', + TRANS_etc: 'ETCのみ', + TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', + TRANS_data: ' データ: ', + TRANS_gas: ' ガス: ', + TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', + + /* Send Transaction Modals */ + TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', + TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', + TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', + TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', + TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: '理解しました。', + TRANSModal_No: '理解できません。ヘルプが必要です。', + + /* Offline Transaction */ + OFFLINE_Title: 'オフライントランザクションを作成し送出', + OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', + OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', + OFFLINE_Step1_Button: '情報生成', + OFFLINE_Step1_Label_1: '送出元アドレス: ', + OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', + OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', + OFFLINE_Step2_Label_1: '送出先アドレス: ', + OFFLINE_Step2_Label_2: '送出する値/総量', + OFFLINE_Step2_Label_3: 'ガス価格 ', + OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_4: 'ガスリミット ', + OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_6: 'データ', + OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', + OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', + OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', + OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', + + /* DAO */ + DAO_bal1: 'ブロック 1,919,999', + DAO_bal2: '現在の', + DAO_TitleETH: 'ETHでDAOを払い出し', + DAO_TitleETC: 'ETCでDAOを払い出し', + DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', + DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', + DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', + DAO_Inst: '赤いボタンをクリックしてください。簡単です。', + DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', + DAOModal_Title: '確認中/...', + DAOModal_1: '払い出しを進めます', + DAOModal_2: 'DAOトークンを', + DAOModal_3: 'に対し', // “の代わりに” + + /* Digix */ + DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', + DGD_Label_1: 'フィー消費量概算:', + DGD_Label_2: 'フィー最大消費量:', + DGD_Label_3: 'ガス価格:', + DGD_Generate: '請求の生成', + DGD_Content: 'DGDトークンの請求を進めます', + + /* Deploy Contracts */ + DEP_generate: 'バイトコードを生成する', + DEP_generated: '生成されたバイトコード', + DEP_signtx: 'トランザクションに署名', + DEP_interface: '生成されたインターフェース', + + /* My Wallet */ + MYWAL_Nick: 'ウォレットニックネーム', + MYWAL_Address: 'ウォレットアドレス', + MYWAL_Bal: '残高', + MYWAL_Edit: '編集', + MYWAL_View: '表示', + MYWAL_Remove: '除去', + MYWAL_RemoveWal: 'ウォレットを除去:', + MYWAL_WatchOnly: '自分の監視専用アカウント', + MYWAL_Viewing: 'ウォレットを表示: ', + MYWAL_Hide: 'ウォレット情報を隠す', + MYWAL_Edit_2: 'ウォレットを編集: ', + MYWAL_Name: 'ウォレット名', + MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', + MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', + MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', + VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', + VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', + + /* Chrome Extension */ + CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', + CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: '正しい値を入力してください。', + ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', + ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', + ERROR_4: '正しいウォレットファイルではありません。 ', + ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', + ERROR_6: '無効なアドレスです。 ', + ERROR_7: '無効なパスワードです。 ', + ERROR_8: '無効な総量です。 ', + ERROR_9: '無効なガスリミットです。 ', + ERROR_10: '無効なデータです。 ', + ERROR_11: '無効なガス総量です。 ', + ERROR_12: '無効な nonce です。 ', + ERROR_13: '無効な署名のトランザクションです。 ', + ERROR_14: '同じニックネームのウォレットが既にあります。 ', + ERROR_15: 'ウォレットが見つかりません。 ', + ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', + ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', + ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', + ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  + ERROR_20: '無効なシンボル', + SUCCESS_1: '有効なアドレス', + SUCCESS_2: 'ウォレットは正常に暗号解除されました。', + SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', + SUCCESS_4: 'ウォレットが追加されました:', + SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', + SUCCESS_6: '選択されました: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'トランスレーターに感謝: ', + TranslatorName_1: 'sekisanchi', + TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', + /* Translator 1: Kazunori Seki / 関一典 */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ja; },{}],50:[function(require,module,exports){ -// Dutch -'use strict'; -var nl = function() {} -nl.code = 'nl'; -nl.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Jouw Wallets', - NAV_AddWallet: 'Wallet Toevoegen', - NAV_GenerateWallet: 'Genereer Wallet', - NAV_BulkGenerate: 'Bulk Genereren', - NAV_SendEther: 'Verzend Ether', - NAV_SendTokens: 'Verzend Tokens', - NAV_Offline: 'Verzend Offline', - NAV_WithdrawDAO: 'DAO Opnemen', - DAO_TitleLong: 'DAO Token in ETH omzetten', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim je DGD Tokens', - NAV_DeployContract: 'Verspreid Contract', - NAV_MyWallets: 'Mijn Wallets', - NAV_ViewWallet: 'Bekijk Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Wachtwoord', - x_Download: 'Download', - x_Address: 'Je Adres', - x_Save: 'x_Opslaan', - x_Cancel: 'x_Annuleren', - x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', - x_PrivKey: 'Prive Sleutel (onversleuteld)', - x_PrivKey2: 'Prive Sleutel', - x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', - x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', - x_Keystore2: 'Keystore/JSON Bestand', - x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', - x_Json: 'JSON Bestand (onversleuteld)', - x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', - x_PrintShort: 'Afdrukken', - x_Print: 'Druk je papieren wallet af', - x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', - x_CSV: 'CSV bestand (onverlseuteld)', - x_TXT: 'TXT bestand (onverlseuteld)', - - /* Header */ - MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', - CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', - - /* Footer */ - FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', - FOOTER_1b: 'Gemaakt door', - FOOTER_2: 'Donaties worden zeer gewaardeerd:', - FOOTER_3: 'Client-side wallet genereren door', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Informatie: ', - sidebar_AccountAddr: 'Account Adres: ', - sidebar_AccountBal: 'Account Saldo: ', - sidebar_TokenBal: 'Token Saldo: ', - sidebar_Equiv: 'Equivalente Waarde: ', - sidebar_TransHistory: 'Transactie Geschiedenis: ', - sidebar_DGDBal: 'DGD Crowdsale Informatie:', - sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', - sidebar_donate: 'Doneer', - sidebar_thanks: 'BEDANKT!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hoe wil je toegang tot je wallet?', - decrypt_Title: 'Selecteer het formaat van je prive sleutel:', - decrypt_Select: 'Selecteer een Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'Wat wil je doen?', - ADD_Radio_1: 'Genereer nieuwe wallet', - ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', - ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', - ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', - ADD_Radio_3: 'Plak/Type je prive sleutel ', - ADD_Radio_4: 'Voeg een te bekijken account toe', - ADD_Label_2: 'Verzin een Nickname:', - ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', - ADD_Label_4: 'Voeg een te bekijken account toe', - ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', - ADD_Label_5: 'Voor het Adres in: ', - ADD_Label_6: 'Ontsleutel je wallet: ', - ADD_Label_6_short: 'Ontsleutel', - ADD_Label_7: 'Voeg account toe', - - /* Generate Wallets */ - GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', - GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', - GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', - GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', - GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', - GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', - GEN_Label_3: 'Sla je adres op.', - GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Aantal te genereren wallets', - BULK_Label_2: 'Genereer Wallets', - BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Aan Adres: ', - SEND_amount: 'Te verzenden bedrag: ', - SEND_amount_short: 'Bedrag', - SEND_custom: 'Aangepast', - SEND_gas: 'Gas', - SEND_generate: 'Genereer Transactie', - SEND_raw: 'Raw Transactie', - SEND_signed: 'Gesigneerde Transactie', - SEND_trans: 'Verzend Transactie', - SEND_TransferTotal: 'Verzend volledig saldo', - SENDModal_Title: 'Waarschuwing! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', - SENDModal_Content_2: 'aan adres', - SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', - SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', - SENDModal_No: 'Nee, haal me hier weg!', - SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token Symbool: ', - TOKEN_Dec: 'Decimalen: ', - - /* Send Transaction */ - TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', - TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', - TRANS_standard: 'ETH (Standaard Transactie)', - TRANS_eth: 'Enkel ETH', - TRANS_etc: 'Enkel ETC', - TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', - TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', - TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', - TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', - TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', - TRANSModal_Yes: 'Mooi, nu begrijp ik het.', - TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', - OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', - OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', - OFFLINE_Step1_Button: 'Genereer Informatie', - OFFLINE_Step1_Label_1: 'Van Adres: ', - OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', - OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', - OFFLINE_Step2_Label_1: 'Aan Adres: ', - OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', - OFFLINE_Step2_Label_3: 'Gas Prijs ', - OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_4: 'Gas Limiet ', - OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', - OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', - OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', - OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', - - /* DAO */ - DAO_bal1: 'bij blok 1.919.999', - DAO_bal2: 'momenteel', - DAO_TitleETH: 'DAO voor ETH opnemen', - DAO_TitleETC: 'DAO voor ETC opnemen', - DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', - DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', - DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', - DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', - DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', - DAOModal_Title: 'Voor de zekerheid...', - // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Je staat op het punt om', - DAOModal_2: 'DAO Tokens op te nemen voor', - DAOModal_3: 'voor', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', - DGD_Label_1: 'Geschatte transactie kosten:', - DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', - DGD_Label_3: 'Gas Prijs:', - DGD_Generate: 'Genereer Claim', - DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', - - /* Deploy Contracts */ - DEP_generate: 'Genereer Bytecode', - DEP_generated: 'Gegenereerde Bytecode', - DEP_signtx: 'Onderteken Transactie', - DEP_interface: 'Gegenereerde Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Adres', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Bewerken', - MYWAL_View: 'Bekijken', - MYWAL_Remove: 'Verwijderen', - MYWAL_RemoveWal: 'Verwijder Wallet:', - MYWAL_WatchOnly: 'Je Watch-Only Accounts', - MYWAL_Viewing: 'Te Bekijken Wallet: ', - MYWAL_Hide: 'Verberg Wallet Info', - MYWAL_Edit_2: 'Bewerk Wallet: ', - MYWAL_Name: 'Wallet Naam', - MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', - MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', - MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', - VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', - CX_quicksend: 'VerzendSnel', - - /* Error Messages */ - ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', - ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', - ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', - ERROR_4: 'Dit is geen geldig Wallet bestand. ', - ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', - ERROR_6: 'Ongeldig adres. ', - ERROR_7: 'Ongeldig wachtwoord. ', - ERROR_8: 'Ongeldig bedrag. ', - ERROR_9: 'Ongeldige gas limiet. ', - ERROR_10: 'Ongeldige data waarde. ', - ERROR_11: 'Ongeldige gas bedrag. ', - ERROR_12: 'Ongeldige nonce. ', - ERROR_13: 'Ongeldige gesigneerde transactie. ', - ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', - ERROR_15: 'Wallet niet gevonden. ', - ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', - ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', - ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', - ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', - ERROR_20: 'Ongeldig symbol', - SUCCESS_1: 'Geldig adres', - SUCCESS_2: 'Wallet succesvol ontsleuteld', - SUCCESS_3: 'Transactie verzonden. TX ID: ', - SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', - SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', - SUCCESS_6: 'Bestand Geselecteerd: ', - - /* Translation Info */ - translate_version: '0.3', - Translator_Desc: 'Veel dank voor onze vertalers: ', - TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', - TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', - HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', - HELP_Remind_Title: 'Enkele herinneringen', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', - HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', - - HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', - HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', - HELP_0_Desc_2: 'Creer een nieuwe wallet.', - HELP_0_Desc_3: 'Maak een wallet back-up.', - HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', - HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', - - HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', - HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', - HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', - HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', - HELP_1_Desc_4: 'klik "GENENEREER".', - HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', - - HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', - HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', - HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', - HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', - HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', - HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', - HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', - - HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', - HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', - HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', - HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', - HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', - HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', - HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', - - HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', - HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', - HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', - HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', - HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', - HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', - HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', - HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', - HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', - - HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', - HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', - HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', - HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', - HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', - HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', - HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', - HELP_4_Desc_9: 'Klik "Genereer Transactie".', - HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', - HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', - - HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', - HELP_4CX_Desc_2: 'VerzendSnel:', - HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', - HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', - HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', - HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', - HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', - HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', - HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', - HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', - - HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', - HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', - HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', - HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_5_Desc_5: 'Unzip het.', - HELP_5_Desc_6: 'Dubbel-klik `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', - HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', - HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', - - HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', - HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', - HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', - HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', - HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', - HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', - HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', - HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', - - HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', - HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', - HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', - HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', - HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', - HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', - HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', - HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', - HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', - HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', - HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', - HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', - HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', - - HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', - HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', - HELP_7_Desc_2: 'Ontsleutel je wallet.', - HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', - HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', - HELP_7_Desc_6: 'Als het token niet wordt vermeld:', - HELP_7_Desc_7: 'Klik op "Aangepast".', - HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', - HELP_7_Desc_9: 'Klik op "Opslaan".', - HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', - HELP_7_Desc_11: 'Klik "Genereer Transactie".', - HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', - HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', - - HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', - HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', - HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', - HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', - HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', - - HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', - HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', - HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', - HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', - - HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', - HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', - - HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', - HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', - HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', - HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', - HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', - HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', - HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', - HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', - HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', - HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', - - HELP_11_Title: '11) Hoe verstuur ik naar een contract?', - HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', - HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', - HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', - HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', - HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', - - HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', - HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', - HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', - HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', - HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', - HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', - HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', - HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', - HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', - HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', - HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', - HELP_12_Desc_15: 'Als je op een Mac werkt:', - HELP_12_Desc_15b: 'Als je op een PC werkt:', - HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', - HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', - HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', - HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', - HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', - HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C://`', - HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', - - HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', - - HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', - HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', - HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', - - HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', - HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', - - HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', - HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', - - HELP_18_Title: '18) Waar is mijn geth wallet bestand?', - - HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', - HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', - - HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', - HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', - - HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', - HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', - HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', - HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', - HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', - HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', - HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', - - HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', - HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', - HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', - HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', - HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', - HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', - - HELP_Sec_Title: 'Beveiliging', - HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', - HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', - HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', - HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', - HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', - HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', - HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', - HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', - - HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', - HELP_Contact_Title: 'Manieren om in contact te komen' -}; - -module.exports = nl; +// Korean +'use strict'; +var ko = function() {} +ko.code = 'ko'; +ko.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ko; },{}],51:[function(require,module,exports){ -// Norwegian -'use strict'; -var no = function() {} -no.code = 'no'; -no.data = { - - /* Navigation*/ - NAV_YourWallets: 'Dine lommebøker', - NAV_AddWallet: 'Legg til lommebok', - NAV_GenerateWallet: 'Opprett lommebok', - NAV_BulkGenerate: 'Opprett flere lommebøker', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Token', - NAV_Offline: 'Send Frakoblet', - NAV_WithdrawDAO: 'Ta ut DAO', - DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', - NAV_ClaimDGD: 'Gjør krav på DGD', - DGD_TitleLong: 'Gjør krav på dine DGD-token', - NAV_DeployContract: 'Utplasser kontrakt', - NAV_MyWallets: 'Mine lommebøker', - NAV_ViewWallet: 'Vis lommebok-info', - NAV_Help: 'Hjelp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Passord', - x_Download: 'Last ned', - x_Address: 'Din adresse', - x_Save: 'x_Save', - x_Cancel: 'x_Cancel', - x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', - x_PrivKey: 'Privat nøkkel (ukryptert)', - x_PrivKey2: 'Privat nøkkel', - x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', - x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', - x_Keystore2: 'Keystore/JSON-fil', - x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', - x_Json: 'JSON-fil (ukryptert)', - x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', - x_PrintShort: 'Skriv ut', - x_Print: 'Skriv ut papirlommebok', - x_PrintDesc: 'ProTips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', - x_CSV: 'CSV-fil (ukryptert)', - x_TXT: 'TXT-fil (ukryptert)', - x_Wallet: 'Lommebok', - - /* Header */ - MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', - CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ - - /* Footer */ - FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', - FOOTER_1b: 'Skapt av', - FOOTER_2: 'Donasjoner mottas med takk:', - FOOTER_3: 'Klient-side lommebok-oppretting av', - FOOTER_4: 'Ansvarsfraskrivelse', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformasjon: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Saldo på konto: ', - sidebar_TokenBal: 'Token-saldo: ', - sidebar_Equiv: 'Tilsvarende verdier: ', - sidebar_TransHistory: 'Transaksjonshistorikk: ', - sidebar_DGDBal: 'DGD Crowdsale informasjon:', - sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', - sidebar_donate: 'Doner', - sidebar_thanks: 'TAKK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', - decrypt_Title: 'Velg formatet på din private nøkkel:', - decrypt_Select: 'Velg en lommebok:', - - /* Add Wallet */ - ADD_Label_1: 'Hva ønsker du å gjøre?', - ADD_Radio_1: 'Opprett ny lommebok', - ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', - ADD_Radio_2_alt: 'Velg lommebok-fil: ', - ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', - ADD_Radio_3: 'Lim/skriv inn din private nøkkel', - ADD_Radio_4: 'Legg til en konto for overvåkning', - ADD_Label_2: 'Lag et kallenavn:', - ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', - ADD_Label_4: 'Legg til en konto for overvåkning', - ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', - ADD_Label_5: 'Oppgi adressen: ', - ADD_Label_6: 'Lås opp lommeboen din', - ADD_Label_6_short: 'Lås opp', - ADD_Label_7: 'Legg til konto', - - /* Generate Wallets */ - GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', - GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', - GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', - GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', - GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', - GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', - GEN_Label_3: 'Lagre adressen din.', - GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antall lommebøker som skal opprettes', - BULK_Label_2: 'Opprett lommebøker', - BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Til-adresse: ', - SEND_amount: 'Beløp som skal sendes: ', - SEND_amount_short: 'Beløp', - SEND_custom: 'Tilpasning', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' - SEND_generate: 'Generer transaksjon', - SEND_raw: 'Rå-transaksjon', - SEND_signed: 'Signert transaksjon', - SEND_trans: 'Send transaksjon', - SENDModal_Title: 'Advarsel! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du er i ferd med å sende', - SENDModal_Content_2: 'til adressen', - SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', - SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', - SENDModal_No: 'Nei, få meg ut herfra!', - SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-symbol: ', - TOKEN_Dec: 'Desimaler: ', - - /* Send Transaction */ - TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', - TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', - TRANS_standard: 'ETH (Standard transaksjon)', - TRANS_eth: 'Kun ETH', - TRANS_etc: 'Kun ETC', - TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', - TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', - TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', - TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', - TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', - TRANSModal_Yes: 'Flott, jeg skjønner det nå.', - TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generer & send frakoblet (offline) transaksjon', - OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', - OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', - OFFLINE_Step1_Button: 'Generer informasjon', - OFFLINE_Step1_Label_1: 'Fra-adresse: ', - OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', - OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', - OFFLINE_Step2_Label_1: 'Til-adresse: ', - OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', - OFFLINE_Step2_Label_3: 'Gas-pris ', - OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_4: 'Gas-grense ', - OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', - OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', - OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', - OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', - - /* DAO */ - DAO_bal1: 'ved blokk 1,919,999', - DAO_bal2: 'nåværende', - DAO_TitleETH: 'Veksle inn DAO mot ETH', - DAO_TitleETC: 'Veksle inn DAO mot ETC', - DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', - DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', - DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-poletter, vennligst bruk "Send Token"-siden.', - DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', - DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', - DAOModal_Title: 'Bare for å være sikker...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - // note: this may be a bit rough in Norwegian. - DAOModal_1: 'Du er i ferd med å veksle inn ', - DAOModal_2: 'DAO-tokens til ', - DAOModal_3: 'i bytte mot', - - /* Digix */ - DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', - DGD_Label_1: 'Estimert avgiftsforbruk:', - DGD_Label_2: 'Oppgitt maksimal avgift:', - DGD_Label_3: 'Gas-pris:', - DGD_Generate: 'Opprett krav', - DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', - - /* Deploy Contracts */ - DEP_generate: 'Generer Bytecode', - DEP_generated: 'Generert Bytecode', - DEP_signtx: 'Signer transaksjon', - DEP_interface: 'Generer grensesnitt', - - /* My Wallet */ - MYWAL_Nick: 'Lommebok-kallenavn', - MYWAL_Address: 'Lommebok-adresse', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Rediger', - MYWAL_View: 'Se på', - MYWAL_Remove: 'Fjern', - MYWAL_RemoveWal: 'Fjern lommebok:', - MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', - MYWAL_Viewing: 'Viser lommebok: ', - MYWAL_Hide: 'Skjul lommebok-info', - MYWAL_Edit_2: 'Rediger lommebok: ', - MYWAL_Name: 'Lommeboknavn', - MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', - MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', - MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', - VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', - - /* Chrome Extension */ - CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', - CX_quicksend: 'Send', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vennligst oppgi et gyldig beløp.', - ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', - ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', - ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', - ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', - ERROR_6: 'Ugyldig adresse. ', - ERROR_7: 'Ugyldig passord. ', - ERROR_8: 'Ugyldig beløp. ', - ERROR_9: 'Ugyldig gas-grense. ', - ERROR_10: 'Ugyldig dataverdi. ', - ERROR_11: 'Ugyldig gas-mengde. ', - ERROR_12: 'Ugyldig nonce. ', - ERROR_13: 'Ugyldig signert transaksjon. ', - ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', - ERROR_15: 'Lommebok ikke funnet. ', - ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', - ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', - ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', - ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', - ERROR_20: 'Ugyldig symbol', - SUCCESS_1: 'Gyldig adresse', - SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', - SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', - SUCCESS_4: 'Lommeboken din ble lagt til: ', - SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', - SUCCESS_6: 'Valgt fil: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Feil på avsender', - GETH_Nonce: 'Nonce for liten', - GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', - GETH_Balance: 'Utilstrekkelig saldo', - GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', - GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', - GETH_IntrinsicGas: 'Gas-egenverdi for lav', - GETH_GasLimit: 'Overskrider blokkens gas-grense', - GETH_NegativeValue: 'Negativ verdi', - - /* Tranlsation Info */ - translate_version: '0.4', - Translator_Desc: 'Takk til oversetterne våre: ', - TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', - HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', - HELP_Remind_Title: 'Noen påminnelser', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', - HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', - - HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', - HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', - HELP_0_Desc_2: 'Opprett en ny lommebok.', - HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', - HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', - HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', - - HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', - HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', - HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', - HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', - HELP_1_Desc_4: 'Klikk "OPPRETT".', - HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', - - HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', - HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', - HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', - HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', - HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', - HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', - HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', - - HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', - HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', - HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', - HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', - HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', - HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', - HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', - - HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', - HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', - HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', - HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', - HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', - HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', - HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', - HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', - - HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', - HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', - HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', - HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', - HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', - HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', - HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', - HELP_4_Desc_9: 'Klikk "Generer transaksjon".', - HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', - - HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', - HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', - HELP_4CX_Desc_2: 'Send:', - HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', - HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', - HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', - HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', - HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', - HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', - HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', - HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', - HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', - - HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', - HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send frakoblet"-siden.', - HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', - HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_5_Desc_5: 'Pakk ut zip-fila.', - HELP_5_Desc_6: 'Dobbelklikk `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', - HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', - HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', - - HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', - HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', - HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', - HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', - HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', - HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', - HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', - HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', - - HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', - HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', - HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', - HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', - HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', - HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', - HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', - HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', - HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', - HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', - HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', - HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', - HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', - HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', - HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', - - HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', - HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', - HELP_7_Desc_2: 'Lås opp lommeboken din.', - HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', - HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', - HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', - HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', - HELP_7_Desc_7: 'Klikk "Tilpasning".', - HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// - HELP_7_Desc_9: 'Klikk "Lagre".', - HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', - HELP_7_Desc_11: 'Klikk "Generer transaksjon".', - HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', - - HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', - HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', - HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', - HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', - HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', - - HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', - HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', - HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', - HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', - - HELP_9_Title: '9) Er "Send ether"-siden offline?', - HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Frakoblet transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', - - HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', - HELP_10_Desc_1: 'Naviger til "Send Frakoblet"-siden via din internettilknyttede datamaskin.', - HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', - HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', - HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', - HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', - HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', - HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', - HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', - - HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', - HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', - HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', - HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', - HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', - HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', - HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', - HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', - HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', - HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', - HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', - HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', - HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', - HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', - HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', - HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', - HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', - HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', - HELP_12_Desc_15: 'Hvis du er på en Mac:', - HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', - HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt/`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', - HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', - HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', - HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', - HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C://`', - HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:/ikke_noe_spesielt_slett_meg.txt`', - HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', - HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', - - HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', - HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', - - HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', - HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', - - HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', - HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', - - HELP_18_Title: '18) Hvor er min geth lommebok-fil', - - HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', - HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', - - HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', - HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', - - HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', - HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', - HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', - HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', - HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', - HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', - HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', - HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', - HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', - - HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', - HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', - HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', - HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', - HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', - HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', - HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', - - HELP_Sec_Title: 'Sikring', - HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', - HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', - HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', - HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', - HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', - HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', - HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', - HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', - - HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', - HELP_Contact_Title: 'Måter å ta kontakt på' -}; - -module.exports = no; +// Dutch +'use strict'; +var nl = function() {} +nl.code = 'nl'; +nl.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Jouw Wallets', + NAV_AddWallet: 'Wallet Toevoegen', + NAV_GenerateWallet: 'Genereer Wallet', + NAV_BulkGenerate: 'Bulk Genereren', + NAV_SendEther: 'Verzend Ether', + NAV_SendTokens: 'Verzend Tokens', + NAV_Offline: 'Verzend Offline', + NAV_WithdrawDAO: 'DAO Opnemen', + DAO_TitleLong: 'DAO Token in ETH omzetten', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim je DGD Tokens', + NAV_DeployContract: 'Verspreid Contract', + NAV_MyWallets: 'Mijn Wallets', + NAV_ViewWallet: 'Bekijk Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Wachtwoord', + x_Download: 'Download', + x_Address: 'Je Adres', + x_Save: 'x_Opslaan', + x_Cancel: 'x_Annuleren', + x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', + x_PrivKey: 'Prive Sleutel (onversleuteld)', + x_PrivKey2: 'Prive Sleutel', + x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', + x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', + x_Keystore2: 'Keystore/JSON Bestand', + x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', + x_Json: 'JSON Bestand (onversleuteld)', + x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', + x_PrintShort: 'Afdrukken', + x_Print: 'Druk je papieren wallet af', + x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', + x_CSV: 'CSV bestand (onverlseuteld)', + x_TXT: 'TXT bestand (onverlseuteld)', + + /* Header */ + MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', + CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', + + /* Footer */ + FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', + FOOTER_1b: 'Gemaakt door', + FOOTER_2: 'Donaties worden zeer gewaardeerd:', + FOOTER_3: 'Client-side wallet genereren door', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Informatie: ', + sidebar_AccountAddr: 'Account Adres: ', + sidebar_AccountBal: 'Account Saldo: ', + sidebar_TokenBal: 'Token Saldo: ', + sidebar_Equiv: 'Equivalente Waarde: ', + sidebar_TransHistory: 'Transactie Geschiedenis: ', + sidebar_DGDBal: 'DGD Crowdsale Informatie:', + sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', + sidebar_donate: 'Doneer', + sidebar_thanks: 'BEDANKT!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hoe wil je toegang tot je wallet?', + decrypt_Title: 'Selecteer het formaat van je prive sleutel:', + decrypt_Select: 'Selecteer een Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'Wat wil je doen?', + ADD_Radio_1: 'Genereer nieuwe wallet', + ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', + ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', + ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', + ADD_Radio_3: 'Plak/Type je prive sleutel ', + ADD_Radio_4: 'Voeg een te bekijken account toe', + ADD_Label_2: 'Verzin een Nickname:', + ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', + ADD_Label_4: 'Voeg een te bekijken account toe', + ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', + ADD_Label_5: 'Voor het Adres in: ', + ADD_Label_6: 'Ontsleutel je wallet: ', + ADD_Label_6_short: 'Ontsleutel', + ADD_Label_7: 'Voeg account toe', + + /* Generate Wallets */ + GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', + GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', + GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', + GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', + GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', + GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', + GEN_Label_3: 'Sla je adres op.', + GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Aantal te genereren wallets', + BULK_Label_2: 'Genereer Wallets', + BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Aan Adres: ', + SEND_amount: 'Te verzenden bedrag: ', + SEND_amount_short: 'Bedrag', + SEND_custom: 'Aangepast', + SEND_gas: 'Gas', + SEND_generate: 'Genereer Transactie', + SEND_raw: 'Raw Transactie', + SEND_signed: 'Gesigneerde Transactie', + SEND_trans: 'Verzend Transactie', + SEND_TransferTotal: 'Verzend volledig saldo', + SENDModal_Title: 'Waarschuwing! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', + SENDModal_Content_2: 'aan adres', + SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', + SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', + SENDModal_No: 'Nee, haal me hier weg!', + SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token Symbool: ', + TOKEN_Dec: 'Decimalen: ', + + /* Send Transaction */ + TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', + TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', + TRANS_standard: 'ETH (Standaard Transactie)', + TRANS_eth: 'Enkel ETH', + TRANS_etc: 'Enkel ETC', + TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', + TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', + TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', + TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', + TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', + TRANSModal_Yes: 'Mooi, nu begrijp ik het.', + TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', + OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', + OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', + OFFLINE_Step1_Button: 'Genereer Informatie', + OFFLINE_Step1_Label_1: 'Van Adres: ', + OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', + OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', + OFFLINE_Step2_Label_1: 'Aan Adres: ', + OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', + OFFLINE_Step2_Label_3: 'Gas Prijs ', + OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_4: 'Gas Limiet ', + OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', + OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', + OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', + OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', + + /* DAO */ + DAO_bal1: 'bij blok 1.919.999', + DAO_bal2: 'momenteel', + DAO_TitleETH: 'DAO voor ETH opnemen', + DAO_TitleETC: 'DAO voor ETC opnemen', + DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', + DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', + DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', + DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', + DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', + DAOModal_Title: 'Voor de zekerheid...', + // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Je staat op het punt om', + DAOModal_2: 'DAO Tokens op te nemen voor', + DAOModal_3: 'voor', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', + DGD_Label_1: 'Geschatte transactie kosten:', + DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', + DGD_Label_3: 'Gas Prijs:', + DGD_Generate: 'Genereer Claim', + DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', + + /* Deploy Contracts */ + DEP_generate: 'Genereer Bytecode', + DEP_generated: 'Gegenereerde Bytecode', + DEP_signtx: 'Onderteken Transactie', + DEP_interface: 'Gegenereerde Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Adres', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Bewerken', + MYWAL_View: 'Bekijken', + MYWAL_Remove: 'Verwijderen', + MYWAL_RemoveWal: 'Verwijder Wallet:', + MYWAL_WatchOnly: 'Je Watch-Only Accounts', + MYWAL_Viewing: 'Te Bekijken Wallet: ', + MYWAL_Hide: 'Verberg Wallet Info', + MYWAL_Edit_2: 'Bewerk Wallet: ', + MYWAL_Name: 'Wallet Naam', + MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', + MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', + MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', + VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', + CX_quicksend: 'VerzendSnel', + + /* Error Messages */ + ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', + ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', + ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', + ERROR_4: 'Dit is geen geldig Wallet bestand. ', + ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', + ERROR_6: 'Ongeldig adres. ', + ERROR_7: 'Ongeldig wachtwoord. ', + ERROR_8: 'Ongeldig bedrag. ', + ERROR_9: 'Ongeldige gas limiet. ', + ERROR_10: 'Ongeldige data waarde. ', + ERROR_11: 'Ongeldige gas bedrag. ', + ERROR_12: 'Ongeldige nonce. ', + ERROR_13: 'Ongeldige gesigneerde transactie. ', + ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', + ERROR_15: 'Wallet niet gevonden. ', + ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', + ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', + ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', + ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', + ERROR_20: 'Ongeldig symbol', + SUCCESS_1: 'Geldig adres', + SUCCESS_2: 'Wallet succesvol ontsleuteld', + SUCCESS_3: 'Transactie verzonden. TX ID: ', + SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', + SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', + SUCCESS_6: 'Bestand Geselecteerd: ', + + /* Translation Info */ + translate_version: '0.3', + Translator_Desc: 'Veel dank voor onze vertalers: ', + TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', + TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', + HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', + HELP_Remind_Title: 'Enkele herinneringen', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', + HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', + + HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', + HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', + HELP_0_Desc_2: 'Creer een nieuwe wallet.', + HELP_0_Desc_3: 'Maak een wallet back-up.', + HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', + HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', + + HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', + HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', + HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', + HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', + HELP_1_Desc_4: 'klik "GENENEREER".', + HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', + + HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', + HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', + HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', + HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', + HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', + HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', + HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', + + HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', + HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', + HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', + HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', + HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', + HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', + HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', + + HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', + HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', + HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', + HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', + HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', + HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', + HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', + HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', + HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', + + HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', + HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', + HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', + HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', + HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', + HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', + HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', + HELP_4_Desc_9: 'Klik "Genereer Transactie".', + HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', + HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', + + HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', + HELP_4CX_Desc_2: 'VerzendSnel:', + HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', + HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', + HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', + HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', + HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', + HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', + HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', + HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', + + HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', + HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', + HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', + HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_5_Desc_5: 'Unzip het.', + HELP_5_Desc_6: 'Dubbel-klik `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', + HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', + HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', + + HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', + HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', + HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', + HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', + HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', + HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', + HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', + HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', + + HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', + HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', + HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', + HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', + HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', + HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', + HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', + HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', + HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', + HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', + HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', + HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', + HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', + + HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', + HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', + HELP_7_Desc_2: 'Ontsleutel je wallet.', + HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', + HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', + HELP_7_Desc_6: 'Als het token niet wordt vermeld:', + HELP_7_Desc_7: 'Klik op "Aangepast".', + HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', + HELP_7_Desc_9: 'Klik op "Opslaan".', + HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', + HELP_7_Desc_11: 'Klik "Genereer Transactie".', + HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', + HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', + + HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', + HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', + HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', + HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', + HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', + + HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', + HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', + HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', + HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', + + HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', + HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', + + HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', + HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', + HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', + HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', + HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', + HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', + HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', + HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', + HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', + HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', + + HELP_11_Title: '11) Hoe verstuur ik naar een contract?', + HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', + HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', + HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', + HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', + HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', + + HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', + HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', + HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', + HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', + HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', + HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', + HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', + HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', + HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', + HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', + HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', + HELP_12_Desc_15: 'Als je op een Mac werkt:', + HELP_12_Desc_15b: 'Als je op een PC werkt:', + HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', + HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', + HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', + HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', + HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', + HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C:`', + HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:\\niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', + + HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', + + HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', + HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', + HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', + + HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', + HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', + + HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', + HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', + + HELP_18_Title: '18) Waar is mijn geth wallet bestand?', + + HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', + HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', + + HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', + HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', + + HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', + HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', + HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', + HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', + HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', + HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', + HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', + + HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', + HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', + HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', + HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', + HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', + HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', + + HELP_Sec_Title: 'Beveiliging', + HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', + HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', + HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', + HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', + HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', + HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', + HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', + HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', + + HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', + HELP_Contact_Title: 'Manieren om in contact te komen' +}; + +module.exports = nl; },{}],52:[function(require,module,exports){ -// Polish -'use strict'; -var pl = function() {} -pl.code = 'pl'; -pl.data = { - - /* Navigation*/ - NAV_YourWallets: 'Twoje Portfele', - NAV_AddWallet: 'Dodaj Portfel', - NAV_GenerateWallet: 'Wygeneruj Portfel', - NAV_BulkGenerate: 'Generuj Hurtowo', - NAV_SendEther: 'Wyślij Ether', - NAV_SendTokens: 'Wyślij Tokeny', - NAV_Offline: 'Wyślij Offline', - NAV_WithdrawDAO: 'Wypłać DAO', - DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', - NAV_ClaimDGD: 'Odbierz DGD', - DGD_TitleLong: 'Odbierz swoje Tokeny DGD', - NAV_MyWallets: 'Moje Portfele', - NAV_ViewWallet: 'Wyświetl informacje o portfelu', - NAV_Help: 'Pomoc', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Hasło', - x_Download: 'Pobierz', - x_Address: 'Twój Adres', - x_Save: 'Zapisz', - x_Cancel: 'Anuluj', - x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', - x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', - x_PrivKey2: 'Klucz Prywatny', - x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', - x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', - x_Keystore2: 'Plik Keystore/JSON', - x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', - x_Json: 'Plik JSON (nieszyfrowany)', - x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', - x_PrintShort: 'Drukuj', - x_Print: 'Drukuj Portfel Papierowy', - x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', - x_CSV: 'Plik CSV (nieszyfrowany)', - x_TXT: 'Plik TXT (nieszyfrowany)', - x_Wallet: 'Portfel', - - /* Header */ - MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', - CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', - MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', - CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', - - /* Footer */ - FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', - FOOTER_1b: 'Twórcy:', - FOOTER_2: 'Darowizny:', - FOOTER_3: 'Generowanie portfeli po stronie klienta przez', - FOOTER_4: 'Wyłączenie odpowiedzialności', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacje o Koncie: ', - sidebar_AccountAddr: 'Adres Konta: ', - sidebar_AccountBal: 'Stan Konta: ', - sidebar_TokenBal: 'Stan Tokenów: ', - sidebar_Equiv: 'Ekwiwalent: ', - sidebar_TransHistory: 'Historia Transakcji: ', - sidebar_DGDBal: 'Informacje o sprzedaży DGD:', - sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', - sidebar_donate: 'Prześlij darowiznę', - sidebar_thanks: 'DZIĘKUJEMY!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', - decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', - decrypt_Select: 'Wybierz Portfel:', - - /* Add Wallet */ - ADD_Label_1: 'Co chciałbyś zrobić?', - ADD_Radio_1: 'Generuj Nowy Portfel', - ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', - ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', - ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', - ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', - ADD_Radio_4: 'Dodaj Konto do Obserwacji', - ADD_Label_2: 'Utwórz Nazwę Użytkownika:', - ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', - ADD_Label_4: 'Dodaj Konto do Obserwacji', - ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', - ADD_Label_5: 'Wpisz Adres: ', - ADD_Label_6: 'Odblokuj Portfel', - ADD_Label_6_short: 'Odblokuj', - ADD_Label_7: 'Dodaj konto', - - /* Generate Wallets */ - GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', - GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', - GEN_Placeholder_1: 'NIE zapomnij tego hasła!', - GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', - GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', - GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', - GEN_Label_3: 'Zapisz swój adres.', - GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Ilość Portfeli do Wygenerowania', - BULK_Label_2: 'Generuj Portfele', - BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Do Adresu: ', - SEND_amount: 'Kwota do Wysłania: ', - SEND_amount_short: 'Kwota', - SEND_custom: 'Inny', - SEND_gas: 'Paliwo', - SEND_TransferTotal: 'Wyślij wszystkie środki', - SEND_generate: 'Wygeneruj Transakcję', - SEND_raw: 'Surowa Transakcja', - SEND_signed: 'Podpisana Transakcja', - SEND_trans: 'Wyślij Transakcję', - SENDModal_Title: 'Ostrzeżenie! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Wysyłasz', - SENDModal_Content_2: 'do adresu', - SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', - SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', - SENDModal_No: 'Nie, zabierz mnie stąd!', - SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Symbol Tokenu: ', - TOKEN_Dec: 'Miejsc po przecinku: ', - - /* Send Transaction */ - TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', - TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', - TRANS_standard: 'ETH (Standardowa Transakcja)', - TRANS_eth: 'Tylko ETH', - TRANS_etc: 'Tylko ETC', - TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', - TRANS_data: ' Dane: ', - TRANS_gas: ' Paliwo: ', - TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', - TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', - TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', - TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', - TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', - TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', - TRANSModal_Yes: 'Super, już rozumiem.', - TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', - OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', - OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', - OFFLINE_Step1_Button: 'Wygeneruj Informacje', - OFFLINE_Step1_Label_1: 'Od Adresu: ', - OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', - OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', - OFFLINE_Step2_Label_1: 'Do Adresu: ', - OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', - OFFLINE_Step2_Label_3: 'Cena Paliwa ', - OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_4: 'Limit Paliwa ', - OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', - OFFLINE_Step2_Label_5: 'Wyróżnik', - OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_6: 'Dane', - OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', - OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', - OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', - OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', - - /* DAO */ - DAO_bal1: 'w bloku 1,919,999', - DAO_bal2: 'aktualny', - DAO_TitleETH: 'Wypłać DAO do ETH', - DAO_TitleETC: 'Wypłać DAO do ETC', - DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', - DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', - DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', - DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', - DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', - DAOModal_Title: 'Tylko się upewniam...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Zamierzasz wypłacić', - DAOModal_2: 'DAO tokenów do', - DAOModal_3: 'za', // "w zamian za" - - /* Digix */ - DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', - DGD_Label_1: 'Szacunkowa Opłata:', - DGD_Label_2: 'Zapewniona Maksymalna Opłata:', - DGD_Label_3: 'Cena Paliwa:', - DGD_Generate: 'Wygeneruj Żądanie', - DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', - - /* Deploy Contracts */ - NAV_DeployContract: 'Wyślij Kontrakt', - DEP_generate: 'Wygeneruj Kod Bajtowy', - DEP_generated: 'Wygenerowany Kod Bajtowy', - DEP_signtx: 'Podpisz Transakcję', - DEP_interface: 'Wygeneruj Interfejs', - - /* My Wallet */ - MYWAL_Nick: 'Nazwa Portfela', - MYWAL_Address: 'Adres Portfela', - MYWAL_Bal: 'Środki', - MYWAL_Edit: 'Edytuj', - MYWAL_View: 'Podgląd', - MYWAL_Remove: 'Usuń', - MYWAL_RemoveWal: 'Usuń Portfel:', - MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', - MYWAL_Viewing: 'Podgląd Portfela: ', - MYWAL_Hide: 'Ukryj Dane Portfela', - MYWAL_Edit_2: 'Edytuj Portfel: ', - MYWAL_Name: 'Nazwa Portfela', - MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', - MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', - MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', - VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', - - /* Chrome Extension */ - CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Wyślij', - - /* Error Messages */ - ERROR_1: 'Wprowadź prawidłową kwotę.', - ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', - ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', - ERROR_4: 'To nie jest prawidłowy plik portfela. ', - ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', - ERROR_6: 'Błędny adres. ', - ERROR_7: 'Błędne hasło. ', - ERROR_8: 'Błędna wartość. ', - ERROR_9: 'Błędny limit paliwa. ', - ERROR_10: 'Błędne dane. ', - ERROR_11: 'Błędna ilość paliwa. ', - ERROR_12: 'Błędny wyróżnik. ', - ERROR_13: 'Błąd podpisu transakcji. ', - ERROR_14: 'Portfel z tą nazwą już istnieje. ', - ERROR_15: 'Nie znaleziono portfela. ', - ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', - ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', - ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', - ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', - ERROR_20: 'Nieprawidłowy symbol', - SUCCESS_1: 'Prawidłowy adres', - SUCCESS_2: 'Portfel został odszyfrowany', - SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', - SUCCESS_4: 'Twój portfel został dodany: ', - SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', - SUCCESS_6: 'Wybrany plik: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Nieprawidłowy nadawca', - GETH_Nonce: 'Wyróżnik transakcji za niski', - GETH_Cheap: 'Cena paliwa poniżej akceptacji', - GETH_Balance: 'Niewystarczająca ilość środków na koncie', - GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', - GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', - GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', - GETH_GasLimit: 'Przekroczono limit paliwa na blok', - GETH_NegativeValue: 'Ujemna wartość', - - /* Tranlsation Info */ - translate_version: '3.0 (0.3)', - Translator_Desc: 'Podziękowania tłumaczom: ', - TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', - TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: '', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', - HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', - HELP_Remind_Title: 'W ramach uściślenia', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', - HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', - - HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', - HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', - HELP_0_Desc_2: 'Wygeneruj nowy portfel.', - HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', - HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', - HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', - - HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', - HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', - HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', - HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', - HELP_1_Desc_4: 'Kliknij "GENERUJ".', - HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', - - HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', - HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', - HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', - HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', - HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', - HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', - HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', - - HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', - HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', - HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', - HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', - HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', - HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', - HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', - - HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', - HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', - HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', - HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', - HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', - - HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', - HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', - HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', - HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', - HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', - HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', - HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', - HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', - HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', - HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', - HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', - - HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', - HELP_4CX_Desc_2: 'Wyślij:', - HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', - HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', - HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', - HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', - HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', - HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', - HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', - HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', - HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', - - HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', - HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', - HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', - HELP_5_Desc_5: 'Rozpakuj paczkę.', - HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', - HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', - HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', - - HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', - HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', - HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', - HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', - HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', - HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', - HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', - HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', - - HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', - HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', - HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', - HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', - HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', - HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', - HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', - HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', - HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', - HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', - HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', - HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', - HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', - HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', - HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', - - HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', - HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', - HELP_7_Desc_2: 'Odblokuj portfel.', - HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', - HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', - HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', - HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', - HELP_7_Desc_7: 'Kliknij "Inny".', - HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', - HELP_7_Desc_9: 'Kliknij "Zapisz".', - HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', - HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', - HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', - HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', - HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', - HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', - - HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', - HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', - HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', - HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', - HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', - - HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', - HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', - HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', - HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', - - HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', - HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', - - HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', - HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', - HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', - HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', - HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', - HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', - HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', - HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', - HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', - - HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', - HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', - HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', - HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', - HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', - HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', - HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', - HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', - HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', - HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', - HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', - HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', - HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', - HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', - HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', - HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', - HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', - HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', - HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', - HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt/`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', - HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt/`', - HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', - HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', - HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', - HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', - - HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', - HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', - HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', - HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', - - HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', - HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', - - HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', - HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', - - HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', - - HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', - HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', - - HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', - HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', - - HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', - HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', - HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', - HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', - HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', - HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', - HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', - HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', - HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', - - HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', - HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', - HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', - HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', - HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', - HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', - - HELP_Sec_Title: 'Bezpieczeństwo', - HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', - HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', - HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', - HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', - HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', - HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', - HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', - HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', - - HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', - HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' -}; - -module.exports = pl; +// Norwegian +'use strict'; +var no = function() {} +no.code = 'no'; +no.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dine lommebøker', + NAV_AddWallet: 'Legg til lommebok', + NAV_GenerateWallet: 'Opprett lommebok', + NAV_BulkGenerate: 'Opprett flere lommebøker', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Token', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Ta ut DAO', + DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', + NAV_ClaimDGD: 'Gjør krav på DGD', + DGD_TitleLong: 'Gjør krav på dine DGD-token', + NAV_DeployContract: 'Utplasser kontrakt', + NAV_MyWallets: 'Mine lommebøker', + NAV_ViewWallet: 'Vis lommebok-info', + NAV_Help: 'Hjelp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Passord', + x_Download: 'Last ned', + x_Address: 'Din adresse', + x_Save: 'x_Save', + x_Cancel: 'x_Cancel', + x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', + x_PrivKey: 'Privat nøkkel (ukryptert)', + x_PrivKey2: 'Privat nøkkel', + x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', + x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', + x_Keystore2: 'Keystore/JSON-fil', + x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', + x_Json: 'JSON-fil (ukryptert)', + x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', + x_PrintShort: 'Skriv ut', + x_Print: 'Skriv ut papirlommebok', + x_PrintDesc: 'Profftips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', + x_CSV: 'CSV-fil (ukryptert)', + x_TXT: 'TXT-fil (ukryptert)', + x_Wallet: 'Lommebok', + + /* Header */ + MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', + CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ + + /* Footer */ + FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', + FOOTER_1b: 'Skapt av', + FOOTER_2: 'Donasjoner mottas med takk:', + FOOTER_3: 'Klient-side lommebok-oppretting av', + FOOTER_4: 'Ansvarsfraskrivelse', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformasjon: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Saldo på konto: ', + sidebar_TokenBal: 'Token-saldo: ', + sidebar_Equiv: 'Tilsvarende verdier: ', + sidebar_TransHistory: 'Transaksjonshistorikk: ', + sidebar_DGDBal: 'DGD Crowdsale informasjon:', + sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', + sidebar_donate: 'Doner', + sidebar_thanks: 'TAKK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', + decrypt_Title: 'Velg formatet på din private nøkkel:', + decrypt_Select: 'Velg en lommebok:', + + /* Add Wallet */ + ADD_Label_1: 'Hva ønsker du å gjøre?', + ADD_Radio_1: 'Opprett ny lommebok', + ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', + ADD_Radio_2_alt: 'Velg lommebok-fil: ', + ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', + ADD_Radio_3: 'Lim/skriv inn din private nøkkel', + ADD_Radio_4: 'Legg til en konto for overvåkning', + ADD_Label_2: 'Lag et kallenavn:', + ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', + ADD_Label_4: 'Legg til en konto for overvåkning', + ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', + ADD_Label_5: 'Oppgi adressen: ', + ADD_Label_6: 'Lås opp lommeboen din', + ADD_Label_6_short: 'Lås opp', + ADD_Label_7: 'Legg til konto', + + /* Generate Wallets */ + GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', + GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', + GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', + GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', + GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', + GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', + GEN_Label_3: 'Lagre adressen din.', + GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antall lommebøker som skal opprettes', + BULK_Label_2: 'Opprett lommebøker', + BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Til-adresse: ', + SEND_amount: 'Beløp som skal sendes: ', + SEND_amount_short: 'Beløp', + SEND_custom: 'Tilpasning', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' + SEND_generate: 'Generer transaksjon', + SEND_raw: 'Rå-transaksjon', + SEND_signed: 'Signert transaksjon', + SEND_trans: 'Send transaksjon', + SENDModal_Title: 'Advarsel! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du er i ferd med å sende', + SENDModal_Content_2: 'til adressen', + SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', + SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', + SENDModal_No: 'Nei, få meg ut herfra!', + SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-symbol: ', + TOKEN_Dec: 'Desimaler: ', + + /* Send Transaction */ + TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', + TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', + TRANS_standard: 'ETH (Standard transaksjon)', + TRANS_eth: 'Kun ETH', + TRANS_etc: 'Kun ETC', + TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', + TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', + TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', + TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', + TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', + TRANSModal_Yes: 'Flott, jeg skjønner det nå.', + TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generer & send offline transaksjon', + OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', + OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', + OFFLINE_Step1_Button: 'Generer informasjon', + OFFLINE_Step1_Label_1: 'Fra-adresse: ', + OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', + OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', + OFFLINE_Step2_Label_1: 'Til-adresse: ', + OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', + OFFLINE_Step2_Label_3: 'Gas-pris ', + OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_4: 'Gas-grense ', + OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', + OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', + OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', + OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', + + /* DAO */ + DAO_bal1: 'ved blokk 1,919,999', + DAO_bal2: 'nåværende', + DAO_TitleETH: 'Veksle inn DAO mot ETH', + DAO_TitleETC: 'Veksle inn DAO mot ETC', + DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', + DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', + DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-token, vennligst bruk "Send Token"-siden.', + DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', + DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', + DAOModal_Title: 'Bare for å være sikker...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + // note: this may be a bit rough in Norwegian. + DAOModal_1: 'Du er i ferd med å veksle inn ', + DAOModal_2: 'DAO-tokens til ', + DAOModal_3: 'i bytte mot', + + /* Digix */ + DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', + DGD_Label_1: 'Estimert avgiftsforbruk:', + DGD_Label_2: 'Oppgitt maksimal avgift:', + DGD_Label_3: 'Gas-pris:', + DGD_Generate: 'Opprett krav', + DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', + + /* Deploy Contracts */ + DEP_generate: 'Generer Bytecode', + DEP_generated: 'Generert Bytecode', + DEP_signtx: 'Signer transaksjon', + DEP_interface: 'Generer grensesnitt', + + /* My Wallet */ + MYWAL_Nick: 'Lommebok-kallenavn', + MYWAL_Address: 'Lommebok-adresse', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Rediger', + MYWAL_View: 'Se på', + MYWAL_Remove: 'Fjern', + MYWAL_RemoveWal: 'Fjern lommebok:', + MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', + MYWAL_Viewing: 'Viser lommebok: ', + MYWAL_Hide: 'Skjul lommebok-info', + MYWAL_Edit_2: 'Rediger lommebok: ', + MYWAL_Name: 'Lommeboknavn', + MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', + MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', + MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', + VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', + + /* Chrome Extension */ + CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', + CX_quicksend: 'Send', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vennligst oppgi et gyldig beløp.', + ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', + ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', + ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', + ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', + ERROR_6: 'Ugyldig adresse. ', + ERROR_7: 'Ugyldig passord. ', + ERROR_8: 'Ugyldig beløp. ', + ERROR_9: 'Ugyldig gas-grense. ', + ERROR_10: 'Ugyldig dataverdi. ', + ERROR_11: 'Ugyldig gas-mengde. ', + ERROR_12: 'Ugyldig nonce. ', + ERROR_13: 'Ugyldig signert transaksjon. ', + ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', + ERROR_15: 'Lommebok ikke funnet. ', + ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', + ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', + ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', + ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', + ERROR_20: 'Ugyldig symbol', + SUCCESS_1: 'Gyldig adresse', + SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', + SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', + SUCCESS_4: 'Lommeboken din ble lagt til: ', + SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', + SUCCESS_6: 'Valgt fil: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Feil på avsender', + GETH_Nonce: 'Nonce for liten', + GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', + GETH_Balance: 'Utilstrekkelig saldo', + GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', + GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', + GETH_IntrinsicGas: 'Gas-egenverdi for lav', + GETH_GasLimit: 'Overskrider blokkens gas-grense', + GETH_NegativeValue: 'Negativ verdi', + + /* Tranlsation Info */ + translate_version: '0.4', + Translator_Desc: 'Takk til oversetterne våre: ', + TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', + HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', + HELP_Remind_Title: 'Noen påminnelser', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', + HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', + + HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', + HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', + HELP_0_Desc_2: 'Opprett en ny lommebok.', + HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', + HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', + HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', + + HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', + HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', + HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', + HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', + HELP_1_Desc_4: 'Klikk "OPPRETT".', + HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', + + HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', + HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', + HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', + HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', + HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', + HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', + HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', + + HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', + HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', + HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', + HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', + HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', + HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', + HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', + + HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', + HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', + HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', + HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', + HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', + HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', + HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', + HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', + + HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', + HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', + HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', + HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', + HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', + HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', + HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', + HELP_4_Desc_9: 'Klikk "Generer transaksjon".', + HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', + + HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', + HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', + HELP_4CX_Desc_2: 'Send:', + HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', + HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', + HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', + HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', + HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', + HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', + HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', + HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', + HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', + + HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', + HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send offline"-siden.', + HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', + HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_5_Desc_5: 'Pakk ut zip-fila.', + HELP_5_Desc_6: 'Dobbelklikk `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', + HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', + HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', + + HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', + HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', + HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', + HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', + HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', + HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', + HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', + HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', + + HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', + HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', + HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', + HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', + HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', + HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', + HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', + HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', + HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', + HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', + HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', + HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', + HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', + HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', + HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', + + HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', + HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', + HELP_7_Desc_2: 'Lås opp lommeboken din.', + HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', + HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', + HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', + HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', + HELP_7_Desc_7: 'Klikk "Tilpasning".', + HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// + HELP_7_Desc_9: 'Klikk "Lagre".', + HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', + HELP_7_Desc_11: 'Klikk "Generer transaksjon".', + HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', + + HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', + HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', + HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', + HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', + HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', + + HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', + HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', + HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', + HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', + + HELP_9_Title: '9) Er "Send ether"-siden offline?', + HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Offline transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', + + HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', + HELP_10_Desc_1: 'Naviger til "Send Offline"-siden via din internettilknyttede datamaskin.', + HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', + HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', + HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', + HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', + HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', + HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', + HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', + + HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', + HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', + HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', + HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', + HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', + HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', + HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', + HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', + HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', + HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', + HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', + HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', + HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', + HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', + HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', + HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', + HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', + HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', + HELP_12_Desc_15: 'Hvis du er på en Mac:', + HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', + HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', + HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', + HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', + HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', + HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C:`', + HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:\\ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', + HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', + + HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', + HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', + + HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', + HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', + + HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', + HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', + + HELP_18_Title: '18) Hvor er min geth lommebok-fil', + + HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', + HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', + + HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', + HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', + + HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', + HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', + HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', + HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', + HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', + HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', + HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', + HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', + HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', + + HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', + HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', + HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', + HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', + HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', + HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', + HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', + + HELP_Sec_Title: 'Sikring', + HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', + HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', + HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', + HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', + HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', + HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', + HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', + HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', + + HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', + HELP_Contact_Title: 'Måter å ta kontakt på' +}; + +module.exports = no; },{}],53:[function(require,module,exports){ -// Portuguese -'use strict'; -var pt = function() {} -pt.code = 'pt'; -pt.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = pt; +// Polish +'use strict'; +var pl = function() {} +pl.code = 'pl'; +pl.data = { + + /* Navigation*/ + NAV_YourWallets: 'Twoje Portfele', + NAV_AddWallet: 'Dodaj Portfel', + NAV_GenerateWallet: 'Wygeneruj Portfel', + NAV_BulkGenerate: 'Generuj Hurtowo', + NAV_SendEther: 'Wyślij Ether', + NAV_SendTokens: 'Wyślij Tokeny', + NAV_Offline: 'Wyślij Offline', + NAV_WithdrawDAO: 'Wypłać DAO', + DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', + NAV_ClaimDGD: 'Odbierz DGD', + DGD_TitleLong: 'Odbierz swoje Tokeny DGD', + NAV_MyWallets: 'Moje Portfele', + NAV_ViewWallet: 'Wyświetl informacje o portfelu', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Hasło', + x_Download: 'Pobierz', + x_Address: 'Twój Adres', + x_Save: 'Zapisz', + x_Cancel: 'Anuluj', + x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', + x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', + x_PrivKey2: 'Klucz Prywatny', + x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', + x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', + x_Keystore2: 'Plik Keystore/JSON', + x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', + x_Json: 'Plik JSON (nieszyfrowany)', + x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', + x_PrintShort: 'Drukuj', + x_Print: 'Drukuj Portfel Papierowy', + x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', + x_CSV: 'Plik CSV (nieszyfrowany)', + x_TXT: 'Plik TXT (nieszyfrowany)', + x_Wallet: 'Portfel', + + /* Header */ + MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', + CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', + MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', + CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', + + /* Footer */ + FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', + FOOTER_1b: 'Twórcy:', + FOOTER_2: 'Darowizny:', + FOOTER_3: 'Generowanie portfeli po stronie klienta przez', + FOOTER_4: 'Wyłączenie odpowiedzialności', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacje o Koncie: ', + sidebar_AccountAddr: 'Adres Konta: ', + sidebar_AccountBal: 'Stan Konta: ', + sidebar_TokenBal: 'Stan Tokenów: ', + sidebar_Equiv: 'Ekwiwalent: ', + sidebar_TransHistory: 'Historia Transakcji: ', + sidebar_DGDBal: 'Informacje o sprzedaży DGD:', + sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', + sidebar_donate: 'Prześlij darowiznę', + sidebar_thanks: 'DZIĘKUJEMY!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', + decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', + decrypt_Select: 'Wybierz Portfel:', + + /* Add Wallet */ + ADD_Label_1: 'Co chciałbyś zrobić?', + ADD_Radio_1: 'Generuj Nowy Portfel', + ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', + ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', + ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', + ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', + ADD_Radio_4: 'Dodaj Konto do Obserwacji', + ADD_Label_2: 'Utwórz Nazwę Użytkownika:', + ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', + ADD_Label_4: 'Dodaj Konto do Obserwacji', + ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', + ADD_Label_5: 'Wpisz Adres: ', + ADD_Label_6: 'Odblokuj Portfel', + ADD_Label_6_short: 'Odblokuj', + ADD_Label_7: 'Dodaj konto', + + /* Generate Wallets */ + GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', + GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', + GEN_Placeholder_1: 'NIE zapomnij tego hasła!', + GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', + GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', + GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', + GEN_Label_3: 'Zapisz swój adres.', + GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Ilość Portfeli do Wygenerowania', + BULK_Label_2: 'Generuj Portfele', + BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Do Adresu: ', + SEND_amount: 'Kwota do Wysłania: ', + SEND_amount_short: 'Kwota', + SEND_custom: 'Inny', + SEND_gas: 'Paliwo', + SEND_TransferTotal: 'Wyślij wszystkie środki', + SEND_generate: 'Wygeneruj Transakcję', + SEND_raw: 'Surowa Transakcja', + SEND_signed: 'Podpisana Transakcja', + SEND_trans: 'Wyślij Transakcję', + SENDModal_Title: 'Ostrzeżenie! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Wysyłasz', + SENDModal_Content_2: 'do adresu', + SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', + SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', + SENDModal_No: 'Nie, zabierz mnie stąd!', + SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Symbol Tokenu: ', + TOKEN_Dec: 'Miejsc po przecinku: ', + + /* Send Transaction */ + TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', + TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', + TRANS_standard: 'ETH (Standardowa Transakcja)', + TRANS_eth: 'Tylko ETH', + TRANS_etc: 'Tylko ETC', + TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', + TRANS_data: ' Dane: ', + TRANS_gas: ' Paliwo: ', + TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', + TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', + TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', + TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', + TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', + TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', + TRANSModal_Yes: 'Super, już rozumiem.', + TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', + OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', + OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', + OFFLINE_Step1_Button: 'Wygeneruj Informacje', + OFFLINE_Step1_Label_1: 'Od Adresu: ', + OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', + OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', + OFFLINE_Step2_Label_1: 'Do Adresu: ', + OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', + OFFLINE_Step2_Label_3: 'Cena Paliwa ', + OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_4: 'Limit Paliwa ', + OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', + OFFLINE_Step2_Label_5: 'Wyróżnik', + OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_6: 'Dane', + OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', + OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', + OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', + OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', + + /* DAO */ + DAO_bal1: 'w bloku 1,919,999', + DAO_bal2: 'aktualny', + DAO_TitleETH: 'Wypłać DAO do ETH', + DAO_TitleETC: 'Wypłać DAO do ETC', + DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', + DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', + DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', + DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', + DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', + DAOModal_Title: 'Tylko się upewniam...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Zamierzasz wypłacić', + DAOModal_2: 'DAO tokenów do', + DAOModal_3: 'za', // "w zamian za" + + /* Digix */ + DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', + DGD_Label_1: 'Szacunkowa Opłata:', + DGD_Label_2: 'Zapewniona Maksymalna Opłata:', + DGD_Label_3: 'Cena Paliwa:', + DGD_Generate: 'Wygeneruj Żądanie', + DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', + + /* Deploy Contracts */ + NAV_DeployContract: 'Wyślij Kontrakt', + DEP_generate: 'Wygeneruj Kod Bajtowy', + DEP_generated: 'Wygenerowany Kod Bajtowy', + DEP_signtx: 'Podpisz Transakcję', + DEP_interface: 'Wygeneruj Interfejs', + + /* My Wallet */ + MYWAL_Nick: 'Nazwa Portfela', + MYWAL_Address: 'Adres Portfela', + MYWAL_Bal: 'Środki', + MYWAL_Edit: 'Edytuj', + MYWAL_View: 'Podgląd', + MYWAL_Remove: 'Usuń', + MYWAL_RemoveWal: 'Usuń Portfel:', + MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', + MYWAL_Viewing: 'Podgląd Portfela: ', + MYWAL_Hide: 'Ukryj Dane Portfela', + MYWAL_Edit_2: 'Edytuj Portfel: ', + MYWAL_Name: 'Nazwa Portfela', + MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', + MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', + MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', + VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', + + /* Chrome Extension */ + CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Wyślij', + + /* Error Messages */ + ERROR_1: 'Wprowadź prawidłową kwotę.', + ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', + ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', + ERROR_4: 'To nie jest prawidłowy plik portfela. ', + ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', + ERROR_6: 'Błędny adres. ', + ERROR_7: 'Błędne hasło. ', + ERROR_8: 'Błędna wartość. ', + ERROR_9: 'Błędny limit paliwa. ', + ERROR_10: 'Błędne dane. ', + ERROR_11: 'Błędna ilość paliwa. ', + ERROR_12: 'Błędny wyróżnik. ', + ERROR_13: 'Błąd podpisu transakcji. ', + ERROR_14: 'Portfel z tą nazwą już istnieje. ', + ERROR_15: 'Nie znaleziono portfela. ', + ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', + ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', + ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', + ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', + ERROR_20: 'Nieprawidłowy symbol', + SUCCESS_1: 'Prawidłowy adres', + SUCCESS_2: 'Portfel został odszyfrowany', + SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', + SUCCESS_4: 'Twój portfel został dodany: ', + SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', + SUCCESS_6: 'Wybrany plik: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Nieprawidłowy nadawca', + GETH_Nonce: 'Wyróżnik transakcji za niski', + GETH_Cheap: 'Cena paliwa poniżej akceptacji', + GETH_Balance: 'Niewystarczająca ilość środków na koncie', + GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', + GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', + GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', + GETH_GasLimit: 'Przekroczono limit paliwa na blok', + GETH_NegativeValue: 'Ujemna wartość', + + /* Tranlsation Info */ + translate_version: '3.0 (0.3)', + Translator_Desc: 'Podziękowania tłumaczom: ', + TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', + TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: '', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', + HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', + HELP_Remind_Title: 'W ramach uściślenia', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', + HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', + + HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', + HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', + HELP_0_Desc_2: 'Wygeneruj nowy portfel.', + HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', + HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', + HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', + + HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', + HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', + HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', + HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', + HELP_1_Desc_4: 'Kliknij "GENERUJ".', + HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', + + HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', + HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', + HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', + HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', + HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', + HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', + HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', + + HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', + HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', + HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', + HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', + HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', + HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', + HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', + + HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', + HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', + HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', + HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', + HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', + + HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', + HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', + HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', + HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', + HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', + HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', + HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', + HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', + HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', + HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', + HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', + + HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', + HELP_4CX_Desc_2: 'Wyślij:', + HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', + HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', + HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', + HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', + HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', + HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', + HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', + HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', + HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', + + HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', + HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', + HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', + HELP_5_Desc_5: 'Rozpakuj paczkę.', + HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', + HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', + HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', + + HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', + HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', + HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', + HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', + HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', + HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', + HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', + HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', + + HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', + HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', + HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', + HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', + HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', + HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', + HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', + HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', + HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', + HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', + HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', + HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', + HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', + HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', + HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', + + HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', + HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', + HELP_7_Desc_2: 'Odblokuj portfel.', + HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', + HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', + HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', + HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', + HELP_7_Desc_7: 'Kliknij "Inny".', + HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', + HELP_7_Desc_9: 'Kliknij "Zapisz".', + HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', + HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', + HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', + HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', + HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', + HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', + + HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', + HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', + HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', + HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', + HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', + + HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', + HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', + HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', + HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', + + HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', + HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', + + HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', + HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', + HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', + HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', + HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', + HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', + HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', + HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', + HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', + + HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', + HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', + HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', + HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', + HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', + HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', + HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', + HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', + HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', + HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', + HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', + HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', + HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', + HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', + HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', + HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', + HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', + HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', + HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', + HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', + HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', + HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', + HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', + HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', + + HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', + HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', + HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', + HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', + + HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', + HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', + + HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', + HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', + + HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', + + HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', + HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', + + HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', + HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', + + HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', + HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', + HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', + HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', + HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', + HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', + HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', + HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', + HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', + + HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', + HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', + HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', + HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', + HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', + HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', + + HELP_Sec_Title: 'Bezpieczeństwo', + HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', + HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', + HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', + HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', + HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', + HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', + HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', + HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', + + HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', + HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' +}; + +module.exports = pl; },{}],54:[function(require,module,exports){ -// Portuguese -'use strict'; -var ptbr = function() {} -ptbr.code = 'ptbr'; -ptbr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ptbr; +// Portuguese +'use strict'; +var pt = function() {} +pt.code = 'pt'; +pt.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = pt; },{}],55:[function(require,module,exports){ -// Russian -'use strict'; -var ru = function() {} -ru.code = 'ru'; -ru.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ваши кошельки', - NAV_AddWallet: 'Добавить кошелёк', - NAV_GenerateWallet: 'Создать кошелёк', - NAV_BulkGenerate: 'Создать несколько кошельков', - NAV_SendEther: 'Перевести эфир (ether)', - NAV_SendTokens: 'Перевести токены', - NAV_Offline: 'Оффлайн-перевод', - NAV_WithdrawDAO: 'Обменять DAO', - DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', - NAV_ClaimDGD: 'Получить DGD', - DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', - NAV_DeployContract: 'Опубликовать контракт', - NAV_MyWallets: 'Мои кошельки', - NAV_ViewWallet: 'Информация о кошельке', - NAV_Help: 'Справка', - NAV_Contact: 'Контакты', - - /* General */ - x_Password: 'Пароль', - x_Download: 'Скачать', - x_Address: 'Ваш адрес', - x_Save: 'Сохранить', - x_Cancel: 'Отменить', - x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', - x_PrivKey: 'Закрытый ключ (не зашифрован)', - x_PrivKey2: 'Закрытый ключ', - x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', - x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', - x_Keystore2: 'Файл Keystore/JSON', - x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', - x_Json: 'Файл JSON (не зашифрован)', - x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', - x_PrintShort: 'Печать', - x_Print: 'Напечатать бумажный кошелёк', - x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', - x_CSV: 'Файл CSV (не зашифрован)', - x_TXT: 'Файл TXT (не зашифрован)', - x_Wallet: 'кошелёк', - - /* Header */ - MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', - CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', - MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', - CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', - - /* Footer */ - FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', - FOOTER_1b: 'Авторы:', - FOOTER_2: 'Пожертвования приветствуются:', - FOOTER_3: 'Создание кошелька на стороне клиента от', - FOOTER_4: 'Отказ от ответственности', - - /* Sidebar */ - sidebar_AccountInfo: 'Информация о счёте: ', - sidebar_AccountAddr: 'Адрес (номер) счёта: ', - sidebar_AccountBal: 'Баланс счёта: ', - sidebar_TokenBal: 'Балансы токенов: ', - sidebar_Equiv: 'Эквивалентные значения: ', - sidebar_TransHistory: 'История транзакций: ', - sidebar_DGDBal: 'Информация о распродаже DGD:', - sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', - sidebar_donate: 'Пожертвовать', - sidebar_thanks: 'СПАСИБО!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', - decrypt_Title: 'Выберите формат Вашего закрытого ключа:', - decrypt_Select: 'Выберите кошелёк:', - - /* Add Wallet */ - ADD_Label_1: 'Что Вы хотите сделать?', - ADD_Radio_1: 'Создать новый кошелёк', - ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', - ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', - ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', - ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', - ADD_Radio_4: 'Добавить счёт в список слежения', - ADD_Label_2: 'Присвоить название:', - ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', - ADD_Label_4: 'Добавить счёт в список слежения', - ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', - ADD_Label_5: 'Введите адрес: ', - ADD_Label_6: 'Отпереть кошелёк', - ADD_Label_6_short: 'Отпереть', - ADD_Label_7: 'Добавить счёт', - - /* Generate Wallets */ - GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', - GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', - GEN_Placeholder_1: 'Не забудьте сохранить это!', - GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', - GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', - GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', - GEN_Label_3: 'Сохраните Ваш адрес.', - GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Сколько кошельков создать', - BULK_Label_2: 'Создать кошельки', - BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Адрес получателя: ', - SEND_amount: 'Сумма перевода: ', - SEND_amount_short: 'Сумма', - SEND_custom: 'Другое', - SEND_gas: 'Газ', - SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter - SEND_generate: 'Сформировать транзакцию', - SEND_raw: 'Готовая транзакция', - SEND_signed: 'Подписанная транзакция', - SEND_trans: 'Отправить транзакцию', - SENDModal_Title: 'Внимание! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Вы собираетесь перевести', - SENDModal_Content_2: 'на адрес', - SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', - SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', - SENDModal_No: 'Нет, отменить транзакцию!', - SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', - - /* Tokens */ - TOKEN_Addr: 'Адрес: ', - TOKEN_Symbol: 'Символ токена: ', - TOKEN_Dec: 'Дробность (знаков после запятой): ', - - /* Send Transaction */ - TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', - TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', - TRANS_standard: 'Эфир (ether, обычная транзакция)', - TRANS_eth: 'Только ETH', - TRANS_etc: 'Только ETC', - TRANS_advanced: '+Дополнительно: добавить газ или данные ', - TRANS_data: ' Данные: ', - TRANS_gas: ' Газ: ', - TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', - TRANSModal_Content_0: 'О видах транзакций и сервисах:', - TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', - TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', - TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', - TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', - TRANSModal_Yes: 'Спасибо, я всё понял.', - TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', - - /* Offline Transaction */ - OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', - OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', - OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', - OFFLINE_Step1_Button: 'Подготовка информации', - OFFLINE_Step1_Label_1: 'Адрес отправителя: ', - OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', - OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', - OFFLINE_Step2_Label_1: 'Адрес получателя: ', - OFFLINE_Step2_Label_2: 'Сумма перевода', - OFFLINE_Step2_Label_3: 'Цена газа ', - OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_4: 'Лимит газа ', - OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', - OFFLINE_Step2_Label_5: '№ перевода (nonce)', - OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_6: 'Данные', - OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', - OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', - OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', - OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', - - /* DAO */ - DAO_bal1: 'на момент создания блока №1.919.999', - DAO_bal2: 'текущий', - DAO_TitleETH: 'Обменять DAO токены на ETH', - DAO_TitleETC: 'Обменять DAO токены на ETC', - DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', - DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', - DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', - DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', - DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', - DAOModal_Title: 'Просто чтобы убедиться...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Вы собираетесь обменять', - DAOModal_2: 'DAO токенов. На адрес', - DAOModal_3: 'будет зачислено', // "in return for" - - /* Digix */ - DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', - DGD_Label_1: 'Предположительный размер комиссии:', - DGD_Label_2: 'Максимальный размер комиссии:', - DGD_Label_3: 'Цена газа:', - DGD_Generate: 'Сформировать требование', - DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', - - /* Deploy Contracts */ - DEP_generate: 'Сформировать байткод', - DEP_generated: 'Сформированный байткод', - DEP_signtx: 'Подписать транзакцию', - DEP_interface: 'Сформированный интерфейс', - - /* My Wallet */ - MYWAL_Nick: 'Название кошелька', - MYWAL_Address: 'Адрес кошелька', - MYWAL_Bal: 'Баланс', - MYWAL_Edit: 'Редактировать', - MYWAL_View: 'Просмотреть', - MYWAL_Remove: 'Удалить', - MYWAL_RemoveWal: 'Удалить кошелёк:', - MYWAL_WatchOnly: 'Список слежения', - MYWAL_Viewing: 'Просматриваемый кошелёк: ', - MYWAL_Hide: 'Скрыть информацию о кошельке', - MYWAL_Edit_2: 'Редактировать кошелёк: ', - MYWAL_Name: 'Имя кошелька', - MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', - MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', - MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', - VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', - - /* Chrome Extension */ - CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" - - - /* Error Messages */ - ERROR_1: 'Пожалуйста, введите сумму корректно.', - ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', - ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', - ERROR_4: 'Этот файл не является файлом кошелька. ', - ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', - ERROR_6: 'Неправильный адрес. ', - ERROR_7: 'Неверный пароль. ', - ERROR_8: 'Некорректная сумма. ', - ERROR_9: 'Некорректно указан лимит газа. ', - ERROR_10: 'Недопустимые данные. ', - ERROR_11: 'Некорректно указано количество газа. ', - ERROR_12: 'Неверный номер перевода (nonce). ', - ERROR_13: 'Подписанная транзакция некорректна. ', - ERROR_14: 'Кошелёк с таким названием уже существует. ', - ERROR_15: 'Кошелёк не найден. ', - ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', - ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', - ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', - ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', - ERROR_20: 'Неправильный символ', - SUCCESS_1: 'Адрес указан верно', - SUCCESS_2: 'Кошелёк успешно расшифрован', - SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', - SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', - SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', - SUCCESS_6: 'Выбранный файл: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Спасибо нашим переводчикам: ', - TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Если вы используете ПК:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ru; +// Portuguese +'use strict'; +var ptbr = function() {} +ptbr.code = 'ptbr'; +ptbr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ptbr; },{}],56:[function(require,module,exports){ -// Slovak -'use strict'; -var sk = function() {} -sk.code = 'sk'; -sk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sk; +// Russian +'use strict'; +var ru = function() {} +ru.code = 'ru'; +ru.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Неверный адрес отправителя', + GETH_Nonce: 'Номер перевода (nonce) слишком мал', + GETH_Cheap: 'Цена газа слишком низкая', + GETH_Balance: 'Баланс недостаточен', + GETH_NonExistentAccount: 'Счёт не существует или баланс счёта слишком мал', + GETH_InsufficientFunds: 'Недостаточно средств для ГАЗ * ЦЕНА + СУММА', + GETH_IntrinsicGas: 'Недостаточно газа для выполнения транзакции', + GETH_GasLimit: 'Превышен лимит газа на блок', + GETH_NegativeValue: 'Отрицательная сумма', + + /* Navigation*/ + NAV_YourWallets: 'Ваши кошельки', + NAV_AddWallet: 'Добавить кошелёк', + NAV_GenerateWallet: 'Создать кошелёк', + NAV_BulkGenerate: 'Создать несколько кошельков', + NAV_SendEther: 'Перевести эфир (ether)', + NAV_SendTokens: 'Перевести токены', + NAV_Offline: 'Оффлайн-перевод', + NAV_WithdrawDAO: 'Обменять DAO', + DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', + NAV_ClaimDGD: 'Получить DGD', + DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', + NAV_DeployContract: 'Опубликовать контракт', + NAV_MyWallets: 'Мои кошельки', + NAV_ViewWallet: 'Информация о кошельке', + NAV_Help: 'Справка', + NAV_Contact: 'Контакты', + + /* General */ + x_Password: 'Пароль', + x_Download: 'Скачать', + x_Address: 'Ваш адрес', + x_Save: 'Сохранить', + x_Cancel: 'Отменить', + x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', + x_PrivKey: 'Закрытый ключ (не зашифрован)', + x_PrivKey2: 'Закрытый ключ', + x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', + x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', + x_Keystore2: 'Файл Keystore/JSON', + x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', + x_Json: 'Файл JSON (не зашифрован)', + x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', + x_PrintShort: 'Печать', + x_Print: 'Напечатать бумажный кошелёк', + x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', + x_CSV: 'Файл CSV (не зашифрован)', + x_TXT: 'Файл TXT (не зашифрован)', + x_Wallet: 'кошелёк', + + /* Header */ + MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', + CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', + MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', + CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', + + /* Footer */ + FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', + FOOTER_1b: 'Авторы:', + FOOTER_2: 'Пожертвования приветствуются:', + FOOTER_3: 'Создание кошелька на стороне клиента от', + FOOTER_4: 'Отказ от ответственности', + + /* Sidebar */ + sidebar_AccountInfo: 'Информация о счёте: ', + sidebar_AccountAddr: 'Адрес (номер) счёта: ', + sidebar_AccountBal: 'Баланс счёта: ', + sidebar_TokenBal: 'Балансы токенов: ', + sidebar_Equiv: 'Эквивалентные значения: ', + sidebar_TransHistory: 'История транзакций: ', + sidebar_DGDBal: 'Информация о распродаже DGD:', + sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', + sidebar_donate: 'Пожертвовать', + sidebar_thanks: 'СПАСИБО!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', + decrypt_Title: 'Выберите формат Вашего закрытого ключа:', + decrypt_Select: 'Выберите кошелёк:', + + /* Add Wallet */ + ADD_Label_1: 'Что Вы хотите сделать?', + ADD_Radio_1: 'Создать новый кошелёк', + ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', + ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', + ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', + ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', + ADD_Radio_4: 'Добавить счёт в список слежения', + ADD_Label_2: 'Присвоить название:', + ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', + ADD_Label_4: 'Добавить счёт в список слежения', + ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', + ADD_Label_5: 'Введите адрес: ', + ADD_Label_6: 'Отпереть кошелёк', + ADD_Label_6_short: 'Отпереть', + ADD_Label_7: 'Добавить счёт', + + /* Generate Wallets */ + GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', + GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', + GEN_Placeholder_1: 'Не забудьте сохранить это!', + GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', + GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', + GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', + GEN_Label_3: 'Сохраните Ваш адрес.', + GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Сколько кошельков создать', + BULK_Label_2: 'Создать кошельки', + BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Адрес получателя: ', + SEND_amount: 'Сумма перевода: ', + SEND_amount_short: 'Сумма', + SEND_custom: 'Другое', + SEND_gas: 'Газ', + SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter + SEND_generate: 'Сформировать транзакцию', + SEND_raw: 'Готовая транзакция', + SEND_signed: 'Подписанная транзакция', + SEND_trans: 'Отправить транзакцию', + SENDModal_Title: 'Внимание! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Вы собираетесь перевести', + SENDModal_Content_2: 'на адрес', + SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', + SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', + SENDModal_No: 'Нет, отменить транзакцию!', + SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', + + /* Tokens */ + TOKEN_Addr: 'Адрес: ', + TOKEN_Symbol: 'Символ токена: ', + TOKEN_Dec: 'Дробность (знаков после запятой): ', + + /* Send Transaction */ + TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', + TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', + TRANS_standard: 'Эфир (ether, обычная транзакция)', + TRANS_eth: 'Только ETH', + TRANS_etc: 'Только ETC', + TRANS_advanced: '+Дополнительно: добавить газ или данные ', + TRANS_data: ' Данные: ', + TRANS_gas: ' Газ: ', + TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', + TRANSModal_Content_0: 'О видах транзакций и сервисах:', + TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', + TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', + TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', + TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', + TRANSModal_Yes: 'Спасибо, я всё понял.', + TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', + + /* Offline Transaction */ + OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', + OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', + OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', + OFFLINE_Step1_Button: 'Подготовка информации', + OFFLINE_Step1_Label_1: 'Адрес отправителя: ', + OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', + OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', + OFFLINE_Step2_Label_1: 'Адрес получателя: ', + OFFLINE_Step2_Label_2: 'Сумма перевода', + OFFLINE_Step2_Label_3: 'Цена газа ', + OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_4: 'Лимит газа ', + OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', + OFFLINE_Step2_Label_5: '№ перевода (nonce)', + OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_6: 'Данные', + OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', + OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', + OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', + OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', + + /* DAO */ + DAO_bal1: 'на момент создания блока №1.919.999', + DAO_bal2: 'текущий', + DAO_TitleETH: 'Обменять DAO токены на ETH', + DAO_TitleETC: 'Обменять DAO токены на ETC', + DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', + DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', + DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', + DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', + DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', + DAOModal_Title: 'Просто чтобы убедиться...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Вы собираетесь обменять', + DAOModal_2: 'DAO токенов. На адрес', + DAOModal_3: 'будет зачислено', // "in return for" + + /* Digix */ + DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', + DGD_Label_1: 'Предположительный размер комиссии:', + DGD_Label_2: 'Максимальный размер комиссии:', + DGD_Label_3: 'Цена газа:', + DGD_Generate: 'Сформировать требование', + DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', + + /* Deploy Contracts */ + DEP_generate: 'Сформировать байткод', + DEP_generated: 'Сформированный байткод', + DEP_signtx: 'Подписать транзакцию', + DEP_interface: 'Сформированный интерфейс', + + /* My Wallet */ + MYWAL_Nick: 'Название кошелька', + MYWAL_Address: 'Адрес кошелька', + MYWAL_Bal: 'Баланс', + MYWAL_Edit: 'Редактировать', + MYWAL_View: 'Просмотреть', + MYWAL_Remove: 'Удалить', + MYWAL_RemoveWal: 'Удалить кошелёк:', + MYWAL_WatchOnly: 'Список слежения', + MYWAL_Viewing: 'Просматриваемый кошелёк: ', + MYWAL_Hide: 'Скрыть информацию о кошельке', + MYWAL_Edit_2: 'Редактировать кошелёк: ', + MYWAL_Name: 'Имя кошелька', + MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', + MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', + MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', + VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', + + /* Chrome Extension */ + CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Пожалуйста, введите сумму корректно.', + ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', + ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', + ERROR_4: 'Этот файл не является файлом кошелька. ', + ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', + ERROR_6: 'Неправильный адрес. ', + ERROR_7: 'Неверный пароль. ', + ERROR_8: 'Некорректная сумма. ', + ERROR_9: 'Некорректно указан лимит газа. ', + ERROR_10: 'Недопустимые данные. ', + ERROR_11: 'Некорректно указано количество газа. ', + ERROR_12: 'Неверный номер перевода (nonce). ', + ERROR_13: 'Подписанная транзакция некорректна. ', + ERROR_14: 'Кошелёк с таким названием уже существует. ', + ERROR_15: 'Кошелёк не найден. ', + ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', + ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', + ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', + ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', + ERROR_20: 'Неправильный символ', + SUCCESS_1: 'Адрес указан верно', + SUCCESS_2: 'Кошелёк успешно расшифрован', + SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', + SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', + SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', + SUCCESS_6: 'Выбранный файл: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Спасибо нашим переводчикам: ', + TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Если вы используете ПК:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ru; },{}],57:[function(require,module,exports){ -// Slovenian -'use strict'; -var sl = function() {} -sl.code = 'sl'; -sl.data = { - - /* Geth Error Messages */ - SUCCESS_6: 'File Selected: ', - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* New */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter - FOOTER_1b: 'Created by', - - /* Navigation*/ - NAV_YourWallets: 'Vaše Denarnice', - NAV_AddWallet: 'Dodaj Denarnico', - NAV_GenerateWallet: 'Ustvari Denarnico', - NAV_BulkGenerate: 'Ustvari Serijo Denarnic', - NAV_SendEther: 'Pošlji Ether', - NAV_SendTokens: 'Pošlji Žetone', - NAV_Offline: 'Pošlji Brez Povezave', - NAV_WithdrawDAO: 'Izplačaj DAO', - DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', - NAV_ClaimDGD: 'Zahtevaj DGD', - DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', - NAV_MyWallets: 'Moje Denarnice', - NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', - NAV_Help: 'Pomoč', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Geslo', - x_Download: 'Prenesi', - x_Address: 'Vaš Naslov', - x_Save: 'x_Shrani', - x_Cancel: 'x_Prekliči', - x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', - x_PrivKey: 'Osebni Ključ (nekriptiran)', - x_PrivKey2: 'Osebni Ključ', - x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', - x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', - x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', - x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', - x_Json: 'JSON Datoteka (nekriptirana)', - x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', - x_PrintShort: 'Natisni', - x_Print: 'Natisni Papirnato Denarnico', - x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', - x_CSV: 'CSV datoteka (nekriptirana)', - x_TXT: 'TXT datoteka (nekriptirana)', - x_Wallet: 'Denarnice', - - /* Header */ - MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', - CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', - MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', - CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', - - /* Footer */ - FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', - FOOTER_2: 'Donacije so zelo dobrodošle:', - FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacije o Računu: ', - sidebar_AccountAddr: 'Naslov Računa: ', - sidebar_AccountBal: 'Stanje Računa: ', - sidebar_TokenBal: 'Stanje Žetonov: ', - sidebar_Equiv: 'Ekvivalentne Vrednosti: ', - sidebar_TransHistory: 'Zgodovina Transakcij', - sidebar_DGDBal: 'Informacije o DGD Crowdsale:', - sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', - sidebar_donate: 'Doniraj', - sidebar_thanks: 'Najlepša vam hvala!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', - decrypt_Title: 'Izberite format vašega osebnega ključa:', - decrypt_Select: 'Izberite Denarnico:', - - /* Add Wallet */ - ADD_Label_1: 'Kaj želite storiti?', - ADD_Radio_1: 'Ustvari Novo Denarnico', - ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', - ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', - ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', - ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Label_2: 'Ustvari Vzdevek:', - ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', - ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', - ADD_Label_5: 'Vnestie Naslov: ', - ADD_Label_6: 'Odklenite vašo Denarnico', - ADD_Label_6_short: 'Odkleni', - ADD_Label_7: 'Dodaj Račun', - - /* Generate Wallets */ - GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', - GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', - GEN_Placeholder_1: 'NE pozabite shraniti tega!', - GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', - GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', - GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', - GEN_Label_3: 'Shranite Vaš Naslov.', - GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Signed Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet.', - MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'jkocjan', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sl; +// Slovak +'use strict'; +var sk = function() {} +sk.code = 'sk'; +sk.data = { + + NAV_DeployContract: 'Deploy Contract', + x_Keystore2: 'Keystore / JSON File', + x_PrivKey2: 'Private Key', + FOOTER_4: 'Disclaimer', + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Peňaženky', + NAV_AddWallet: 'Pridať peňaženku', + NAV_GenerateWallet: 'Vytvoriť peňaženku', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Poslať Ether', + NAV_SendTokens: 'Poslať Tokens', + NAV_Offline: 'Poslať Offline', + NAV_WithdrawDAO: 'Vybrať DAO', + DAO_TitleLong: 'Vymeniť Vaše Dao Tokens za ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_MyWallets: 'Moje peňaženky', + NAV_ViewWallet: 'Zobraziť detaily peňaženky', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Heslo', + x_Wallet: 'Peňaženka', + x_Download: 'Stiahnuť', + x_Address: 'Vaša Adresa', + x_Save: 'Uložiť', + x_Cancel: 'Zrušiť', + x_AddessDesc: 'Možno to poznate ako vaše "Konto #" alebo váš "Verejný Kľúč". Adresa je to, čo pošlete ľudom, aby vám mohli poslať ETH. Táto ikona vám pomôže rozpoznať vašu adresu.', + x_PrivKey: 'Súkromný Kľúč (nezašifrovaný)', + x_PrivKeyDesc: 'Toto je nezašifrovaná textova verzia vašho Súkromneho Kľuča, to znamená, že heslo nie je potrebné. Ak niekto získa vaš nezašifrovaný Súkromný Kľúč, môže získať prístup do vašej peňaženky bez hesla. Práve kvôli tomuto sú šifrované verzie odporúčané.', + x_Keystore: 'Keystore/JSON Súbor (Odporúčané · Šifrované · Mist/Geth Format)', + x_KeystoreDesc: 'Tento Keystore / JSON súbor je rovnakého formatu ako Mist & Geth takže ho budete môcť jednoducho importovať. Tento subor odporúčame stiahnuť a zálohovať.', + x_Json: 'JSON Súbor (nezašifrovaný)', + x_JsonDesc: 'Toto je nezašifrovaný JSON format vášho sukromného kľúča. To znamená, že nepotrebujete heslo, ale ak niekto získa váš JSON, je schopný sprístupniť vašu peňaženku a Ether bez hesla.', + x_PrintShort: 'Vytlačiť', + x_Print: 'Vytlačiť Papierovú Peňaženku', + x_PrintDesc: 'Rada: Ak nevlastnite tlačiareň, jednoducho kliknite tlačiť a uložte to ako PDF.', + x_CSV: 'CSV súbor (nezašifrovaný)', + x_TXT: 'TXT súbor (nezašifrovaný)', + + /* Header */ + MEW_Warning_1: 'Vždy skontrolujte URL adresu pred tým ako vytvoríte alebo sprístupnite vašu peňaženku. Davajte si pozor na Phisingové stránky!', + CX_Warning_1: 'Uistita sa, že máťe **externé zálohy** všetkych peňaženiek. Mnoho vecí može spôsobiť stratu dát tohoto Chrome rozširenia, vrátane odinštalovania a preinštalovania tohto rozšírenia. Toto rozšírenie pomáha jednoducho sprístupniť vašu peňaženku, **nie** ju zálohovať.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions.', + FOOTER_1b: 'Vytvorené', + FOOTER_2: 'Dotácie srdečne vítane:', + FOOTER_3: 'Client-side wallet generation by', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ETH to your account to cover the gas cost of sending tokens. Gas is paid in ETH.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + SEND_TransferTotal: 'Send Entire Balance', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* CX */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + +/* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sk; },{}],58:[function(require,module,exports){ -// Swedish -'use strict'; -var sv = function() {} -sv.code = 'sv'; -sv.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Dina Plånböcker', - NAV_AddWallet: 'Lägg till Plånbok', - NAV_GenerateWallet: 'Generera Plånbok', - NAV_BulkGenerate: 'Mass Generera', - NAV_SendEther: 'Skicka Ether', - NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ - NAV_Offline: 'Skicka Offline', - NAV_WithdrawDAO: 'Växla DAO', - DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', - NAV_ClaimDGD: 'Hämta DGD', - DGD_TitleLong: 'Hämta Dina DGD Tokens', - NAV_MyWallets: 'Mina Plånböcker', - NAV_ViewWallet: 'Visa Plånboks Info', - NAV_Help: 'Hjälp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Lösenord', - x_Download: 'Ladda Ner', - x_Address: 'Din Adress', - x_Save: 'Spara', - x_Cancel: 'Avbryt', - x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', - x_PrivKey: 'Privat Nyckel (okrypterad)', - x_PrivKey2: 'Privat Nyckel', - x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', - x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON Fil', - x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', - x_Json: 'JSON Fil (okrypterad)', - x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', - x_PrintShort: 'Skriv Ut', - x_Print: 'Skriv Ut Pappers Plånbok', - x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', - x_CSV: 'CSV fil (okrypterad)', - x_TXT: 'TXT fil (okrypterad)', - x_Wallet: 'Plånbok', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Konto Adress: ', - sidebar_AccountBal: 'Konto Saldo: ', - sidebar_TokenBal: 'Token Saldon: ', - sidebar_Equiv: 'Motsvarande Värden: ', - sidebar_TransHistory: 'Transaktionshistorik: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', - sidebar_donate: 'Donera', - sidebar_thanks: 'TACK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Adress: ', - ADD_Label_6: 'Unlock your Wallet', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Adress.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antal Plånböcker att Generera', - BULK_Label_2: 'Generera Plånböcker', - BULK_SuccessMsg: 'Dina plånböcker har genererats.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Adress: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SEND_TransferTotal: 'Send Entire Balance', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to adress', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adress: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimaler: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Adress: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Adress: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Plånboks Namn', - MYWAL_Address: 'Plånboks Adress', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Ändra', - MYWAL_View: 'Visa', - MYWAL_Remove: 'Ta Bort', - MYWAL_RemoveWal: 'Ta Bort Plånbok:', - MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ - MYWAL_Viewing: 'Visar Plånbok: ', - MYWAL_Hide: 'Dölj Plånboks Info', - MYWAL_Edit_2: 'Ändra Plånbok: ', - MYWAL_Name: 'Plånboks Namn', - MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', - MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', - MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', - TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sv; +// Slovenian +'use strict'; +var sl = function() {} +sl.code = 'sl'; +sl.data = { + + /* Geth Error Messages */ + SUCCESS_6: 'File Selected: ', + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* New */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter + FOOTER_1b: 'Created by', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Denarnice', + NAV_AddWallet: 'Dodaj Denarnico', + NAV_GenerateWallet: 'Ustvari Denarnico', + NAV_BulkGenerate: 'Ustvari Serijo Denarnic', + NAV_SendEther: 'Pošlji Ether', + NAV_SendTokens: 'Pošlji Žetone', + NAV_Offline: 'Pošlji Brez Povezave', + NAV_WithdrawDAO: 'Izplačaj DAO', + DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', + NAV_ClaimDGD: 'Zahtevaj DGD', + DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', + NAV_MyWallets: 'Moje Denarnice', + NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', + NAV_Help: 'Pomoč', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Geslo', + x_Download: 'Prenesi', + x_Address: 'Vaš Naslov', + x_Save: 'x_Shrani', + x_Cancel: 'x_Prekliči', + x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', + x_PrivKey: 'Osebni Ključ (nekriptiran)', + x_PrivKey2: 'Osebni Ključ', + x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', + x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', + x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', + x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', + x_Json: 'JSON Datoteka (nekriptirana)', + x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', + x_PrintShort: 'Natisni', + x_Print: 'Natisni Papirnato Denarnico', + x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', + x_CSV: 'CSV datoteka (nekriptirana)', + x_TXT: 'TXT datoteka (nekriptirana)', + x_Wallet: 'Denarnice', + + /* Header */ + MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', + CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', + MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', + CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', + + /* Footer */ + FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', + FOOTER_2: 'Donacije so zelo dobrodošle:', + FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacije o Računu: ', + sidebar_AccountAddr: 'Naslov Računa: ', + sidebar_AccountBal: 'Stanje Računa: ', + sidebar_TokenBal: 'Stanje Žetonov: ', + sidebar_Equiv: 'Ekvivalentne Vrednosti: ', + sidebar_TransHistory: 'Zgodovina Transakcij', + sidebar_DGDBal: 'Informacije o DGD Crowdsale:', + sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', + sidebar_donate: 'Doniraj', + sidebar_thanks: 'Najlepša vam hvala!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', + decrypt_Title: 'Izberite format vašega osebnega ključa:', + decrypt_Select: 'Izberite Denarnico:', + + /* Add Wallet */ + ADD_Label_1: 'Kaj želite storiti?', + ADD_Radio_1: 'Ustvari Novo Denarnico', + ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', + ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', + ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', + ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Label_2: 'Ustvari Vzdevek:', + ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', + ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', + ADD_Label_5: 'Vnestie Naslov: ', + ADD_Label_6: 'Odklenite vašo Denarnico', + ADD_Label_6_short: 'Odkleni', + ADD_Label_7: 'Dodaj Račun', + + /* Generate Wallets */ + GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', + GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', + GEN_Placeholder_1: 'NE pozabite shraniti tega!', + GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', + GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', + GEN_Label_3: 'Shranite Vaš Naslov.', + GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Signed Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet.', + MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Tranlsation Info */ + translate_version: '0.2', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'jkocjan', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sl; },{}],59:[function(require,module,exports){ -// Turkish -'use strict'; -var tr = function() {} -tr.code = 'tr'; -tr.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Cüzdanin', - NAV_AddWallet: 'Cüzdan ekle', - NAV_GenerateWallet: 'Cüzdan oluştur', - NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', - NAV_SendEther: 'Ether gönder', - NAV_SendTokens: 'Tokens gönder', - NAV_Offline: 'Offline gönder', - NAV_WithdrawDAO: 'DAO çek', - DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', - NAV_ClaimDGD: 'DGD talep et', - DGD_TitleLong: 'DGD tokenlerini talep et', - NAV_MyWallets: 'Cüzdanim', - NAV_ViewWallet: 'Cüzdan bilgilerni göster', - NAV_Help: 'Yardim et', - NAV_Contact: 'Iletişime geç', - - /* General */ - x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', - x_Address: 'Adresin', - x_Cancel: 'Iptal et', - x_Download: 'Indir', - x_Json: 'JSON dosya (şifrelenmemis)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', - x_Keystore2: 'Keystore/JSON dosya', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Parola', - x_Print: 'Cüzdanin kağıt versiyonunu yazdir', - x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', - x_PrintShort: 'Yazdir', - x_PrivKey: 'Özel anahtar (şifrelenmemis)', - x_PrivKey2: 'Özel anahtar', - x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', - x_Save: 'Indir', - x_TXT: 'TXT dosya (şifrelenmemis)', - x_CSV: 'CSV dosya (şifrelenmemis)', - x_Wallet: 'Cüzdan', - -/* Header */ - MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', - CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', - - /* Footer */ - FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', - FOOTER_1b: 'tarafından yaratıldı', - FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', - FOOTER_3: 'Client-side cüzdan olusturma', - FOOTER_4: 'Verzicht', - - /* Sidebar */ - sidebar_AccountInfo: 'Hesap bilgiler: ', - sidebar_AccountAddr: 'Hesap adres: ', - sidebar_AccountBal: 'Bakiye: ', - sidebar_TokenBal: 'Token bakiye: ', - sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ - sidebar_TransHistory: 'Işlem geçmişi: ', - sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', - sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', - sidebar_donate: 'Bağışta bulun', - sidebar_thanks: 'TEŞEKKÜRLER!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Cüzdanını nasıl acmak istersin?', - decrypt_Title: 'Özel anahtarinin formatini sec:', - decrypt_Select: 'Bir cüzdan sec:', - - /* Add Wallet */ - ADD_Label_1: 'Ne yapmak istiyorsun?', - ADD_Radio_1: 'Yeni cüzdan olustur', - ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', - ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', - ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', - ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', - ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ - ADD_Label_2: 'Bir nickname oluştur: ', - ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', - ADD_Label_4: 'Izlenecek hesap adresi ekle', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Adresi ekle: ', - ADD_Label_6: 'Cüzdani ac: ', - ADD_Label_6_short: 'Ac', - ADD_Label_7: 'Hesap ekle', - - /* Generate Wallets */ - GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', - GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', - GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', - GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', - GEN_Label_3: 'Adresini kaydet.', - GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Oluşturulacak cüzdan sayısı', - BULK_Label_2: 'Cüzdanlari olustur', - BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Bu Adrese gönder: ', - SEND_amount: 'Gönderilecek miktar: ', - SEND_amount_short: 'Miktar', - SEND_custom: 'Kullanici özel', /*maybe another word here too */ - SEND_gas: 'Gas', - SEND_TransferTotal: 'Tüm dengeyi gönder', - SEND_generate: 'Generate Transaction', - SEND_raw: 'İşlem oluştur', /* add Binär */ - SEND_signed: 'Imzali İşlem', - SEND_trans: 'Islemi gönder', - SENDModal_Title: 'Uyarı! ', - - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'şu an ', - SENDModal_Content_2: 'bu adresse', - SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'Hayir, cikar beni burdan!', - SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token symbolu: ', - TOKEN_Dec: 'Ondalık: ', - - /* Send Transaction */ - TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', - TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', - TRANS_standard: 'ETH (Standart işlem)', - TRANS_eth: 'Yalnızca ETH', - TRANS_etc: 'Yalnızca ETC', - TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', - TRANS_data: 'Veri: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', - TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', - TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ - TRANSModal_Yes: 'Güzel, şimdi anladım.', - TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', - - /* Offline Transaction */ - OFFLINE_Title: 'Olustur & offline islem', - OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', - OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', - OFFLINE_Step1_Button: 'Bilgileri olustur', - OFFLINE_Step1_Label_1: 'Adres\'den: ', - OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'Adrese: ', - OFFLINE_Step2_Label_2: 'Gönderilen miktar', - OFFLINE_Step2_Label_3: 'Gas fiyati ', - OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', - OFFLINE_Step2_Label_4: 'Gas limiti ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Veri', - OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', - OFFLINE_Step2_Label_6: 'Veri', - OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'block 1,919,999\'ta', - DAO_bal2: 'şimdiki', - DAO_TitleETH: 'DAO ETH olarak cek', - DAO_TitleETC: 'DAO ETC olarak cek', - DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', - DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Sadece emin olmak için...', - - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Cekmek üzeresin', - DAOModal_2: 'DAO token\'i ', - DAOModal_3: ' yerine', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Tahmini bedel:', - DGD_Label_2: 'Maximum bedel:', - DGD_Label_3: 'Gas fiyati:', - DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ - DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode oluştur', - DEP_generated: 'Oluşturulan Bytecode', - DEP_signtx: 'Islmemi Imzala', - DEP_interface: 'Interface oluştur', - - /* My Wallet */ - MYWAL_Nick: 'Cüzdan nickname', - MYWAL_Address: 'Cüzdan adres', - MYWAL_Bal: 'Bakiye', - MYWAL_Edit: 'Düzenle', - MYWAL_View: 'Göster', - MYWAL_Remove: 'Kaldir', - MYWAL_RemoveWal: 'Cüzdani kaldir:', - MYWAL_WatchOnly: 'Sadece izlenen hesaplar', - MYWAL_Viewing: 'Izlenen Cüzdan: ', - MYWAL_Hide: 'Cüzdan bilgilerini gizle', - MYWAL_Edit_2: 'Cüzdani düzenle: ', - MYWAL_Name: 'Cüzdan Ismi', - MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', - MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', - CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli - - /* Error Messages */ - ERROR_1: 'Geçerli tutar yaz.', - ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', - ERROR_6: 'Geçersiz adres. ', - ERROR_7: 'Geçersiz parola. ', - ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ - ERROR_9: 'Geçersiz gas limit. ', - ERROR_10: 'Geçersiz data value. ', - ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ - ERROR_12: 'Geçersiz veri. ', - ERROR_13: 'Geçersiz imzali isleme. ', - ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', - ERROR_15: 'Cüzdan bulunmadi. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Geçersiz sembol', - SUCCESS_1: 'Geçerli adres', - SUCCESS_2: 'Cüzdan basariyla desifre edildi', - SUCCESS_3: 'İşlem teslim edildi TX ID: ', - SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', - SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', - SUCCESS_6: 'Dosya secildi ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'ffidan61', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = tr; +// Swedish +'use strict'; +var sv = function() {} +sv.code = 'sv'; +sv.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Dina Plånböcker', + NAV_AddWallet: 'Lägg till Plånbok', + NAV_GenerateWallet: 'Generera Plånbok', + NAV_BulkGenerate: 'Mass Generera', + NAV_SendEther: 'Skicka Ether', + NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ + NAV_Offline: 'Skicka Offline', + NAV_WithdrawDAO: 'Växla DAO', + DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', + NAV_ClaimDGD: 'Hämta DGD', + DGD_TitleLong: 'Hämta Dina DGD Tokens', + NAV_MyWallets: 'Mina Plånböcker', + NAV_ViewWallet: 'Visa Plånboks Info', + NAV_Help: 'Hjälp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Lösenord', + x_Download: 'Ladda Ner', + x_Address: 'Din Adress', + x_Save: 'Spara', + x_Cancel: 'Avbryt', + x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', + x_PrivKey: 'Privat Nyckel (okrypterad)', + x_PrivKey2: 'Privat Nyckel', + x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', + x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON Fil', + x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', + x_Json: 'JSON Fil (okrypterad)', + x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', + x_PrintShort: 'Skriv Ut', + x_Print: 'Skriv Ut Pappers Plånbok', + x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', + x_CSV: 'CSV fil (okrypterad)', + x_TXT: 'TXT fil (okrypterad)', + x_Wallet: 'Plånbok', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Konto Adress: ', + sidebar_AccountBal: 'Konto Saldo: ', + sidebar_TokenBal: 'Token Saldon: ', + sidebar_Equiv: 'Motsvarande Värden: ', + sidebar_TransHistory: 'Transaktionshistorik: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', + sidebar_donate: 'Donera', + sidebar_thanks: 'TACK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Adress: ', + ADD_Label_6: 'Unlock your Wallet', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Adress.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antal Plånböcker att Generera', + BULK_Label_2: 'Generera Plånböcker', + BULK_SuccessMsg: 'Dina plånböcker har genererats.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Adress: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SEND_TransferTotal: 'Send Entire Balance', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to adress', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adress: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimaler: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Adress: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Adress: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Plånboks Namn', + MYWAL_Address: 'Plånboks Adress', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Ändra', + MYWAL_View: 'Visa', + MYWAL_Remove: 'Ta Bort', + MYWAL_RemoveWal: 'Ta Bort Plånbok:', + MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ + MYWAL_Viewing: 'Visar Plånbok: ', + MYWAL_Hide: 'Dölj Plånboks Info', + MYWAL_Edit_2: 'Ändra Plånbok: ', + MYWAL_Name: 'Plånboks Namn', + MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', + MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', + MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', + TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sv; },{}],60:[function(require,module,exports){ -'use strict'; -var ar = require('./ar'); -var bg = require('./bg'); -var de = require('./de'); -var el = require('./el'); -var en = require('./en'); -var es = require('./es'); -var et = require('./et'); -var fr = require('./fr'); -var he = require('./he'); -var hi = require('./hi'); -var hu = require('./hu'); -var id = require('./id'); -var it = require('./it'); -var ja = require('./ja'); -var ko = require('./ko'); -var nl = require('./nl'); -var no = require('./no'); -var pl = require('./pl'); -var pt = require('./pt'); -var ptbr = require('./ptbr'); -var ru = require('./ru'); -var sk = require('./sk'); -var sl = require('./sl'); -var sv = require('./sv'); -var tr = require('./tr'); -var uk = require('./uk'); -var vi = require('./vi'); -var zh = require('./zh'); - -var translate = function($translateProvider) { - $translateProvider.translations(ar.code, translate.marked(ar.data)); - $translateProvider.translations(bg.code, translate.marked(bg.data)); - $translateProvider.translations(de.code, translate.marked(de.data)); - $translateProvider.translations(el.code, translate.marked(el.data)); - $translateProvider.translations(en.code, translate.marked(en.data)); - $translateProvider.translations(es.code, translate.marked(es.data)); - $translateProvider.translations(et.code, translate.marked(et.data)); - $translateProvider.translations(fr.code, translate.marked(fr.data)); - $translateProvider.translations(he.code, translate.marked(he.data)); - $translateProvider.translations(hi.code, translate.marked(hi.data)); - $translateProvider.translations(hu.code, translate.marked(hu.data)); - $translateProvider.translations(id.code, translate.marked(id.data)); - $translateProvider.translations(it.code, translate.marked(it.data)); - $translateProvider.translations(ja.code, translate.marked(ja.data)); - $translateProvider.translations(ko.code, translate.marked(ko.data)); - $translateProvider.translations(nl.code, translate.marked(nl.data)); - $translateProvider.translations(no.code, translate.marked(no.data)); - $translateProvider.translations(pl.code, translate.marked(pl.data)); - $translateProvider.translations(pt.code, translate.marked(pt.data)); - $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); - $translateProvider.translations(ru.code, translate.marked(ru.data)); - $translateProvider.translations(sk.code, translate.marked(sk.data)); - $translateProvider.translations(sl.code, translate.marked(sl.data)); - $translateProvider.translations(sv.code, translate.marked(sv.data)); - $translateProvider.translations(tr.code, translate.marked(tr.data)); - $translateProvider.translations(uk.code, translate.marked(uk.data)); - $translateProvider.translations(vi.code, translate.marked(vi.data)); - $translateProvider.translations(zh.code, translate.marked(zh.data)); - $translateProvider.preferredLanguage('en'); - $translateProvider.useSanitizeValueStrategy(null); -} -translate.marked = function(data) { - var tData = data; - for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); - return tData; -} -module.exports = translate; - -},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fr":42,"./he":43,"./hi":44,"./hu":45,"./id":46,"./it":47,"./ja":48,"./ko":49,"./nl":50,"./no":51,"./pl":52,"./pt":53,"./ptbr":54,"./ru":55,"./sk":56,"./sl":57,"./sv":58,"./tr":59,"./uk":61,"./vi":62,"./zh":63}],61:[function(require,module,exports){ -// Ukranian -'use strict'; -var uk = function() {} -uk.code = 'uk'; -uk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = uk; - -},{}],62:[function(require,module,exports){ -// Vietnamese -'use strict'; -var vi = function() {} -vi.code = 'vi'; -vi.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Sai người nhận', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas quá thấp', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ví Của Bạn', - NAV_AddWallet: 'Thêm Ví', - NAV_GenerateWallet: 'Tạo Ví', - NAV_BulkGenerate: 'Tạo Nhiều Ví', - NAV_SendEther: 'Gửi Ether', - NAV_SendTokens: 'Gửi Token', - NAV_Offline: 'Giao Dịch Offline', - NAV_WithdrawDAO: 'Thu Hồi DAO Token', - DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', - NAV_ClaimDGD: 'Khiếu Nại Về DGD', - DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', - NAV_DeployContract: 'Phát Triển Hợp Đồng', - NAV_MyWallets: 'Ví Của Tôi', - NAV_ViewWallet: 'Thông Tin Ví', - NAV_Help: 'Trợ Giúp', - NAV_Contact: 'Liên Hệ', - - /* General */ - x_Address: 'Địa Chỉ Của Bạn', - x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', - x_CSV: 'Định Dạng CSV (Không mã hoá)', - x_Cancel: 'Huỷ', - x_Download: 'Tải Về Máy', - x_Json: 'Định Dạng JSON (Không mã hoá)', - x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', - x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', - x_Keystore2: 'Định Dạng Keystore / JSON', - x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', - x_Password: 'Mật Khẩu', - x_Print: 'Tạo Ví Giấy', - x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', - x_PrintShort: 'In Ví', - x_PrivKey: 'Private Key (Không mã hoá)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', - x_Save: 'Lưu', - x_TXT: 'Định Dạng TXT (Không mã Hoá)', - x_Wallet: 'Ví', - - /* Header */ - MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', - CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Nhà Phát Triển:', - FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Những Điều Cần Lưu Ý', - - /* Sidebar */ - sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', - sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', - sidebar_AccountBal: 'Số Dư Tài Khoản: ', - sidebar_TokenBal: 'Số Dư Token: ', - sidebar_Equiv: 'Giá Trị Tương Đương: ', - sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', - sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', - sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', - sidebar_donate: 'Quyên Góp', - sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', - decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', - decrypt_Select: 'Chọn ví:', - - /* Add Wallet */ - ADD_Label_1: 'Bạn đang cần làm gì?', - ADD_Radio_1: 'Tạo Ví Mới', - ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', - ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', - ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', - ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', - ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Label_2: 'Tạo Tên Gọi:', - ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', - ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', - ADD_Label_5: 'Điền Địa Chỉ Ví: ', - ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', - ADD_Label_6_short: 'Mở Khoá', - ADD_Label_7: 'Thêm Tài Khoản', - - /* Generate Wallets */ - GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', - GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', - GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', - GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', - GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', - GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', - GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Số Lượng Ví Cần Tạo', - BULK_Label_2: 'Tạo Ví', - BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Địa Chỉ Đến: ', - SEND_amount: 'Số Lượng Cần Gửi: ', - SEND_amount_short: 'Số Lượng', - SEND_custom: 'Tuỳ Chỉnh', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', - SEND_generate: 'Tạo Giao Dịch', - SEND_raw: 'Định Dạng Giao Dịch', - SEND_signed: 'Chữ Ký Giao Dich', - SEND_trans: 'Gửi Đi', - SENDModal_Title: 'Cảnh Báo! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Bạn muốn gửi đi', - SENDModal_Content_2: 'Địa chỉ đến', - SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', - SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', - SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', - SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', - - /* Tokens */ - TOKEN_Addr: 'Địa Chỉ: ', - TOKEN_Symbol: 'Ký Hiệu Token: ', - TOKEN_Dec: 'Phân Số Thập Phân: ', - - /* Send Transaction */ - TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', - TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', - TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', - TRANS_eth: 'Chỉ ETH', - TRANS_etc: 'Chỉ ETC', - TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', - TRANS_data: 'Dữ Liệu:', - TRANS_gas: 'Gas:', - TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', - TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', - TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', - TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', - TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', - TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', - TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', - - /* Offline Transaction */ - OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', - OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', - OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', - OFFLINE_Step1_Button: 'Tạo Thông Tin', - OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', - OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', - OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', - OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', - OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', - OFFLINE_Step2_Label_3: 'Giá Gas', - OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_4: 'Giới hạn Gas', - OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_6: 'Dữ Liệu', - OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', - OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', - OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', - OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', - - /* DAO */ - DAO_bal1: 'Tại Block 1,919,999', - DAO_bal2: 'Hiện Tại', - DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', - DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', - DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', - DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', - DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', - DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', - DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', - DAOModal_Title: 'Đảm bảo rằng...', - DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', - DAOModal_2: 'Số Dao Token đến', - DAOModal_3: 'Hoàn Lại', // "in return for" - - /* Digix */ - DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', - DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', - DGD_Label_2: 'Cung Cấp Phí Tối Đa:', - DGD_Label_3: 'Giá Gas:', - DGD_Generate: 'Tạo Khiếu Nại', - DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', - - /* Deploy Contracts */ - DEP_generate: 'Tạo Bytecode', - DEP_generated: 'Bytecode Đã Được Tạo', - DEP_signtx: 'Chữ Ký Giao Dịch', - DEP_interface: 'Đã Tạo Giao Diện', - - /* My Wallet */ - MYWAL_Nick: 'Tên Gọi Của Ví', - MYWAL_Address: 'Địa Chỉ Ví', - MYWAL_Bal: 'Số Dư', - MYWAL_Edit: 'Chỉnh Sửa', - MYWAL_View: 'Xem', - MYWAL_Remove: 'Gỡ Bỏ', - MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', - MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', - MYWAL_Viewing: 'Xem Ví: ', - MYWAL_Hide: 'Ẩn Thông Tin Ví', - MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', - MYWAL_Name: 'Tên Ví', - MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', - MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', - MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', - VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', - - /* Chrome Extension */ - CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', - CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vui lòng nhập số dư hợp lệ.', - ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', - ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', - ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', - ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', - ERROR_6: 'Địa chỉ không hợp lệ. ', - ERROR_7: 'Mật khẩu không hợp lệ. ', - ERROR_8: 'Tổng số không hợp lệ. ', - ERROR_9: 'Giới hạn gas không hợp lệ. ', - ERROR_10: 'Dữ liệu không hợp lệ. ', - ERROR_11: 'Tổng số gas không hợp lệ. ', - ERROR_12: 'Nonce không hợp lệ. ', - ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', - ERROR_14: 'Tên gọi này đã được sữ dụng. ', - ERROR_15: 'Không tìm thấy Ví. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', - ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', - ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', - ERROR_20: 'Biểu tượng không hợp lệ', - SUCCESS_1: 'Địa Chỉ Hợp Lệ', - SUCCESS_2: 'Ví đã được giải mã thành công', - SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', - SUCCESS_4: 'Ví của bạn đã được thêm thành công:', - SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', - SUCCESS_6: 'Tập Tin Được Chọn: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Chân Thành Cảm Ơn: ', - TranslatorName_1: 'Phạm Thế Vũ', - TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ - TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', - HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Lưu ý:', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', - HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', - - HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', - HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', - HELP_0_Desc_2: 'Tạo ví mới.', - HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', - HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', - HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', - - HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', - HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', - HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', - HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', - HELP_1_Desc_4: 'Bám "Tạo Ví', - HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', - - HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', - HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', - HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', - HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', - HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', - HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', - HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', - - HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', - HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', - HELP_2b_Desc_3: 'Tải tệp zip về máy.', - HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', - HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', - HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', - HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', - HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', - - HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', - HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', - HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', - HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', - HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', - HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_3_Desc_6: 'Bấm "Mở Khóa".', - HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', - HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - - HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', - HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', - HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', - HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_4_Desc_5: 'Bấm "Mở Khóa"', - HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', - HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', - HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', - HELP_4CX_Desc_11: 'Xác nhận giao dịch', - HELP_4CX_Desc_12: '', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = vi; +// Turkish +'use strict'; +var tr = function() {} +tr.code = 'tr'; +tr.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Cüzdanin', + NAV_AddWallet: 'Cüzdan ekle', + NAV_GenerateWallet: 'Cüzdan oluştur', + NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', + NAV_SendEther: 'Ether gönder', + NAV_SendTokens: 'Tokens gönder', + NAV_Offline: 'Offline gönder', + NAV_WithdrawDAO: 'DAO çek', + DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', + NAV_ClaimDGD: 'DGD talep et', + DGD_TitleLong: 'DGD tokenlerini talep et', + NAV_MyWallets: 'Cüzdanim', + NAV_ViewWallet: 'Cüzdan bilgilerni göster', + NAV_Help: 'Yardim et', + NAV_Contact: 'Iletişime geç', + + /* General */ + x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', + x_Address: 'Adresin', + x_Cancel: 'Iptal et', + x_Download: 'Indir', + x_Json: 'JSON dosya (şifrelenmemis)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', + x_Keystore2: 'Keystore/JSON dosya', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Parola', + x_Print: 'Cüzdanin kağıt versiyonunu yazdir', + x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', + x_PrintShort: 'Yazdir', + x_PrivKey: 'Özel anahtar (şifrelenmemis)', + x_PrivKey2: 'Özel anahtar', + x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', + x_Save: 'Indir', + x_TXT: 'TXT dosya (şifrelenmemis)', + x_CSV: 'CSV dosya (şifrelenmemis)', + x_Wallet: 'Cüzdan', + +/* Header */ + MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', + CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', + + /* Footer */ + FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', + FOOTER_1b: 'tarafından yaratıldı', + FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', + FOOTER_3: 'Client-side cüzdan olusturma', + FOOTER_4: 'Verzicht', + + /* Sidebar */ + sidebar_AccountInfo: 'Hesap bilgiler: ', + sidebar_AccountAddr: 'Hesap adres: ', + sidebar_AccountBal: 'Bakiye: ', + sidebar_TokenBal: 'Token bakiye: ', + sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ + sidebar_TransHistory: 'Işlem geçmişi: ', + sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', + sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', + sidebar_donate: 'Bağışta bulun', + sidebar_thanks: 'TEŞEKKÜRLER!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Cüzdanını nasıl acmak istersin?', + decrypt_Title: 'Özel anahtarinin formatini sec:', + decrypt_Select: 'Bir cüzdan sec:', + + /* Add Wallet */ + ADD_Label_1: 'Ne yapmak istiyorsun?', + ADD_Radio_1: 'Yeni cüzdan olustur', + ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', + ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', + ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', + ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', + ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ + ADD_Label_2: 'Bir nickname oluştur: ', + ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', + ADD_Label_4: 'Izlenecek hesap adresi ekle', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Adresi ekle: ', + ADD_Label_6: 'Cüzdani ac: ', + ADD_Label_6_short: 'Ac', + ADD_Label_7: 'Hesap ekle', + + /* Generate Wallets */ + GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', + GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', + GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', + GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', + GEN_Label_3: 'Adresini kaydet.', + GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Oluşturulacak cüzdan sayısı', + BULK_Label_2: 'Cüzdanlari olustur', + BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Bu Adrese gönder: ', + SEND_amount: 'Gönderilecek miktar: ', + SEND_amount_short: 'Miktar', + SEND_custom: 'Kullanici özel', /*maybe another word here too */ + SEND_gas: 'Gas', + SEND_TransferTotal: 'Tüm dengeyi gönder', + SEND_generate: 'Generate Transaction', + SEND_raw: 'İşlem oluştur', /* add Binär */ + SEND_signed: 'Imzali İşlem', + SEND_trans: 'Islemi gönder', + SENDModal_Title: 'Uyarı! ', + + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'şu an ', + SENDModal_Content_2: 'bu adresse', + SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'Hayir, cikar beni burdan!', + SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token symbolu: ', + TOKEN_Dec: 'Ondalık: ', + + /* Send Transaction */ + TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', + TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', + TRANS_standard: 'ETH (Standart işlem)', + TRANS_eth: 'Yalnızca ETH', + TRANS_etc: 'Yalnızca ETC', + TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', + TRANS_data: 'Veri: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', + TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', + TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ + TRANSModal_Yes: 'Güzel, şimdi anladım.', + TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', + + /* Offline Transaction */ + OFFLINE_Title: 'Olustur & offline islem', + OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', + OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', + OFFLINE_Step1_Button: 'Bilgileri olustur', + OFFLINE_Step1_Label_1: 'Adres\'den: ', + OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'Adrese: ', + OFFLINE_Step2_Label_2: 'Gönderilen miktar', + OFFLINE_Step2_Label_3: 'Gas fiyati ', + OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', + OFFLINE_Step2_Label_4: 'Gas limiti ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Veri', + OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', + OFFLINE_Step2_Label_6: 'Veri', + OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'block 1,919,999\'ta', + DAO_bal2: 'şimdiki', + DAO_TitleETH: 'DAO ETH olarak cek', + DAO_TitleETC: 'DAO ETC olarak cek', + DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', + DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Sadece emin olmak için...', + + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Cekmek üzeresin', + DAOModal_2: 'DAO token\'i ', + DAOModal_3: ' yerine', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Tahmini bedel:', + DGD_Label_2: 'Maximum bedel:', + DGD_Label_3: 'Gas fiyati:', + DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ + DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode oluştur', + DEP_generated: 'Oluşturulan Bytecode', + DEP_signtx: 'Islmemi Imzala', + DEP_interface: 'Interface oluştur', + + /* My Wallet */ + MYWAL_Nick: 'Cüzdan nickname', + MYWAL_Address: 'Cüzdan adres', + MYWAL_Bal: 'Bakiye', + MYWAL_Edit: 'Düzenle', + MYWAL_View: 'Göster', + MYWAL_Remove: 'Kaldir', + MYWAL_RemoveWal: 'Cüzdani kaldir:', + MYWAL_WatchOnly: 'Sadece izlenen hesaplar', + MYWAL_Viewing: 'Izlenen Cüzdan: ', + MYWAL_Hide: 'Cüzdan bilgilerini gizle', + MYWAL_Edit_2: 'Cüzdani düzenle: ', + MYWAL_Name: 'Cüzdan Ismi', + MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', + MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', + CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli + + /* Error Messages */ + ERROR_1: 'Geçerli tutar yaz.', + ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', + ERROR_6: 'Geçersiz adres. ', + ERROR_7: 'Geçersiz parola. ', + ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ + ERROR_9: 'Geçersiz gas limit. ', + ERROR_10: 'Geçersiz data value. ', + ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ + ERROR_12: 'Geçersiz veri. ', + ERROR_13: 'Geçersiz imzali isleme. ', + ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', + ERROR_15: 'Cüzdan bulunmadi. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Geçersiz sembol', + SUCCESS_1: 'Geçerli adres', + SUCCESS_2: 'Cüzdan basariyla desifre edildi', + SUCCESS_3: 'İşlem teslim edildi TX ID: ', + SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', + SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', + SUCCESS_6: 'Dosya secildi ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'ffidan61', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = tr; + +},{}],61:[function(require,module,exports){ + 'use strict'; + var ar = require('./ar'); + var bg = require('./bg'); + var de = require('./de'); + var de = require('./de'); + var el = require('./el'); + var en = require('./en'); + var es = require('./es'); + var et = require('./et'); + var fi = require('./fi'); + var fr = require('./fr'); + var he = require('./he'); + var hi = require('./hi'); + var hu = require('./hu'); + var id = require('./id'); + var it = require('./it'); + var ja = require('./ja'); + var ko = require('./ko'); + var nl = require('./nl'); + var no = require('./no'); + var pl = require('./pl'); + var pt = require('./pt'); + var ptbr = require('./ptbr'); + var ru = require('./ru'); + var sk = require('./sk'); + var sl = require('./sl'); + var sv = require('./sv'); + var tr = require('./tr'); + var uk = require('./uk'); + var vi = require('./vi'); + var zh = require('./zh'); + + var translate = function($translateProvider) { + $translateProvider.translations(ar.code, translate.marked(ar.data)); + $translateProvider.translations(bg.code, translate.marked(bg.data)); + $translateProvider.translations(de.code, translate.marked(de.data)); + $translateProvider.translations(el.code, translate.marked(el.data)); + $translateProvider.translations(en.code, translate.marked(en.data)); + $translateProvider.translations(es.code, translate.marked(es.data)); + $translateProvider.translations(et.code, translate.marked(et.data)); + $translateProvider.translations(fi.code, translate.marked(fi.data)); + $translateProvider.translations(fr.code, translate.marked(fr.data)); + $translateProvider.translations(he.code, translate.marked(he.data)); + $translateProvider.translations(hi.code, translate.marked(hi.data)); + $translateProvider.translations(hu.code, translate.marked(hu.data)); + $translateProvider.translations(id.code, translate.marked(id.data)); + $translateProvider.translations(it.code, translate.marked(it.data)); + $translateProvider.translations(ja.code, translate.marked(ja.data)); + $translateProvider.translations(ko.code, translate.marked(ko.data)); + $translateProvider.translations(nl.code, translate.marked(nl.data)); + $translateProvider.translations(no.code, translate.marked(no.data)); + $translateProvider.translations(pl.code, translate.marked(pl.data)); + $translateProvider.translations(pt.code, translate.marked(pt.data)); + $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); + $translateProvider.translations(ru.code, translate.marked(ru.data)); + $translateProvider.translations(sk.code, translate.marked(sk.data)); + $translateProvider.translations(sl.code, translate.marked(sl.data)); + $translateProvider.translations(sv.code, translate.marked(sv.data)); + $translateProvider.translations(tr.code, translate.marked(tr.data)); + $translateProvider.translations(uk.code, translate.marked(uk.data)); + $translateProvider.translations(vi.code, translate.marked(vi.data)); + $translateProvider.translations(zh.code, translate.marked(zh.data)); + $translateProvider.preferredLanguage('en'); + $translateProvider.useSanitizeValueStrategy(null); + } + +translate.marked = function(data) { + var tData = data; + for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); + return tData; +} +module.exports = translate; + +},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fi":42,"./fr":43,"./he":44,"./hi":45,"./hu":46,"./id":47,"./it":48,"./ja":49,"./ko":50,"./nl":51,"./no":52,"./pl":53,"./pt":54,"./ptbr":55,"./ru":56,"./sk":57,"./sl":58,"./sv":59,"./tr":60,"./uk":62,"./vi":63,"./zh":64}],62:[function(require,module,exports){ +// Ukranian +'use strict'; +var uk = function() {} +uk.code = 'uk'; +uk.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = uk; },{}],63:[function(require,module,exports){ -// Chinese -'use strict'; -var zh = function() {} -zh.code = 'zh'; -zh.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_2_success: 'File Selected: ', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = zh; +// Vietnamese +'use strict'; +var vi = function() {} +vi.code = 'vi'; +vi.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Sai người nhận', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas quá thấp', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Ví Của Bạn', + NAV_AddWallet: 'Thêm Ví', + NAV_GenerateWallet: 'Tạo Ví', + NAV_BulkGenerate: 'Tạo Nhiều Ví', + NAV_SendEther: 'Gửi Ether', + NAV_SendTokens: 'Gửi Token', + NAV_Offline: 'Giao Dịch Offline', + NAV_WithdrawDAO: 'Thu Hồi DAO Token', + DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', + NAV_ClaimDGD: 'Khiếu Nại Về DGD', + DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', + NAV_DeployContract: 'Phát Triển Hợp Đồng', + NAV_MyWallets: 'Ví Của Tôi', + NAV_ViewWallet: 'Thông Tin Ví', + NAV_Help: 'Trợ Giúp', + NAV_Contact: 'Liên Hệ', + + /* General */ + x_Address: 'Địa Chỉ Của Bạn', + x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', + x_CSV: 'Định Dạng CSV (Không mã hoá)', + x_Cancel: 'Huỷ', + x_Download: 'Tải Về Máy', + x_Json: 'Định Dạng JSON (Không mã hoá)', + x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', + x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', + x_Keystore2: 'Định Dạng Keystore / JSON', + x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', + x_Password: 'Mật Khẩu', + x_Print: 'Tạo Ví Giấy', + x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', + x_PrintShort: 'In Ví', + x_PrivKey: 'Private Key (Không mã hoá)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', + x_Save: 'Lưu', + x_TXT: 'Định Dạng TXT (Không mã Hoá)', + x_Wallet: 'Ví', + + /* Header */ + MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', + CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Nhà Phát Triển:', + FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Những Điều Cần Lưu Ý', + + /* Sidebar */ + sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', + sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', + sidebar_AccountBal: 'Số Dư Tài Khoản: ', + sidebar_TokenBal: 'Số Dư Token: ', + sidebar_Equiv: 'Giá Trị Tương Đương: ', + sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', + sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', + sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', + sidebar_donate: 'Quyên Góp', + sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', + decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', + decrypt_Select: 'Chọn ví:', + + /* Add Wallet */ + ADD_Label_1: 'Bạn đang cần làm gì?', + ADD_Radio_1: 'Tạo Ví Mới', + ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', + ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', + ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', + ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', + ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Label_2: 'Tạo Tên Gọi:', + ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', + ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', + ADD_Label_5: 'Điền Địa Chỉ Ví: ', + ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', + ADD_Label_6_short: 'Mở Khoá', + ADD_Label_7: 'Thêm Tài Khoản', + + /* Generate Wallets */ + GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', + GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', + GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', + GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', + GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', + GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', + GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Số Lượng Ví Cần Tạo', + BULK_Label_2: 'Tạo Ví', + BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Địa Chỉ Đến: ', + SEND_amount: 'Số Lượng Cần Gửi: ', + SEND_amount_short: 'Số Lượng', + SEND_custom: 'Tuỳ Chỉnh', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', + SEND_generate: 'Tạo Giao Dịch', + SEND_raw: 'Định Dạng Giao Dịch', + SEND_signed: 'Chữ Ký Giao Dich', + SEND_trans: 'Gửi Đi', + SENDModal_Title: 'Cảnh Báo! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Bạn muốn gửi đi', + SENDModal_Content_2: 'Địa chỉ đến', + SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', + SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', + SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', + SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', + + /* Tokens */ + TOKEN_Addr: 'Địa Chỉ: ', + TOKEN_Symbol: 'Ký Hiệu Token: ', + TOKEN_Dec: 'Phân Số Thập Phân: ', + + /* Send Transaction */ + TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', + TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', + TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', + TRANS_eth: 'Chỉ ETH', + TRANS_etc: 'Chỉ ETC', + TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', + TRANS_data: 'Dữ Liệu:', + TRANS_gas: 'Gas:', + TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', + TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', + TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', + TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', + TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', + TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', + TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', + + /* Offline Transaction */ + OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', + OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', + OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', + OFFLINE_Step1_Button: 'Tạo Thông Tin', + OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', + OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', + OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', + OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', + OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', + OFFLINE_Step2_Label_3: 'Giá Gas', + OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_4: 'Giới hạn Gas', + OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_6: 'Dữ Liệu', + OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', + OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', + OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', + OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', + + /* DAO */ + DAO_bal1: 'Tại Block 1,919,999', + DAO_bal2: 'Hiện Tại', + DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', + DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', + DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', + DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', + DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', + DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', + DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', + DAOModal_Title: 'Đảm bảo rằng...', + DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', + DAOModal_2: 'Số Dao Token đến', + DAOModal_3: 'Hoàn Lại', // "in return for" + + /* Digix */ + DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', + DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', + DGD_Label_2: 'Cung Cấp Phí Tối Đa:', + DGD_Label_3: 'Giá Gas:', + DGD_Generate: 'Tạo Khiếu Nại', + DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', + + /* Deploy Contracts */ + DEP_generate: 'Tạo Bytecode', + DEP_generated: 'Bytecode Đã Được Tạo', + DEP_signtx: 'Chữ Ký Giao Dịch', + DEP_interface: 'Đã Tạo Giao Diện', + + /* My Wallet */ + MYWAL_Nick: 'Tên Gọi Của Ví', + MYWAL_Address: 'Địa Chỉ Ví', + MYWAL_Bal: 'Số Dư', + MYWAL_Edit: 'Chỉnh Sửa', + MYWAL_View: 'Xem', + MYWAL_Remove: 'Gỡ Bỏ', + MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', + MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', + MYWAL_Viewing: 'Xem Ví: ', + MYWAL_Hide: 'Ẩn Thông Tin Ví', + MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', + MYWAL_Name: 'Tên Ví', + MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', + MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', + MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', + VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', + + /* Chrome Extension */ + CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', + CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vui lòng nhập số dư hợp lệ.', + ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', + ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', + ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', + ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', + ERROR_6: 'Địa chỉ không hợp lệ. ', + ERROR_7: 'Mật khẩu không hợp lệ. ', + ERROR_8: 'Tổng số không hợp lệ. ', + ERROR_9: 'Giới hạn gas không hợp lệ. ', + ERROR_10: 'Dữ liệu không hợp lệ. ', + ERROR_11: 'Tổng số gas không hợp lệ. ', + ERROR_12: 'Nonce không hợp lệ. ', + ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', + ERROR_14: 'Tên gọi này đã được sữ dụng. ', + ERROR_15: 'Không tìm thấy Ví. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', + ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', + ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', + ERROR_20: 'Biểu tượng không hợp lệ', + SUCCESS_1: 'Địa Chỉ Hợp Lệ', + SUCCESS_2: 'Ví đã được giải mã thành công', + SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', + SUCCESS_4: 'Ví của bạn đã được thêm thành công:', + SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', + SUCCESS_6: 'Tập Tin Được Chọn: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Chân Thành Cảm Ơn: ', + TranslatorName_1: 'Phạm Thế Vũ', + TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ + TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', + HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Lưu ý:', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', + HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', + + HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', + HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', + HELP_0_Desc_2: 'Tạo ví mới.', + HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', + HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', + HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', + + HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', + HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', + HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', + HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', + HELP_1_Desc_4: 'Bám "Tạo Ví', + HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', + + HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', + HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', + HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', + HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', + HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', + HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', + HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', + + HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', + HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', + HELP_2b_Desc_3: 'Tải tệp zip về máy.', + HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', + HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', + HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', + HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', + HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', + + HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', + HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', + HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', + HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', + HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', + HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_3_Desc_6: 'Bấm "Mở Khóa".', + HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', + HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + + HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', + HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', + HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', + HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_4_Desc_5: 'Bấm "Mở Khóa"', + HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', + HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', + HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', + HELP_4CX_Desc_11: 'Xác nhận giao dịch', + HELP_4CX_Desc_12: '', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = vi; },{}],64:[function(require,module,exports){ +// Chinese +'use strict'; +var zh = function() {} +zh.code = 'zh'; +zh.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_2_success: 'File Selected: ', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = zh; + +},{}],65:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var uiFuncs = function() {} -uiFuncs.getTxData = function($scope) { - return { - to: $scope.tx.to, - value: $scope.tx.value, - unit: $scope.tx.unit, - gasLimit: $scope.tx.gasLimit, - data: $scope.tx.data, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }; -} -uiFuncs.isTxDataValid = function(txData) { - if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; - if (txData.to == "0xCONTRACT") txData.to = ''; -} -uiFuncs.generateClassicTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getClassicTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendClassicTx = function(signedTx, callback) { - ajaxReq.sendClassicRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.generateTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendTx = function(signedTx, callback) { - ajaxReq.sendRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { - try { - ajaxReq.getTransactionData(fromAdd, function(data) { - if (data.error) throw data.msg; - data = data.data; - var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); - var maxVal = new BigNumber(data.balance).minus(gasPrice); - maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); - if (callback !== undefined) callback({ - isError: false, - unit: "ether", - value: maxVal - }); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} +'use strict'; +var uiFuncs = function() {} +uiFuncs.getTxData = function($scope) { + return { + to: $scope.tx.to, + value: $scope.tx.value, + unit: $scope.tx.unit, + gasLimit: $scope.tx.gasLimit, + data: $scope.tx.data, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }; +} +uiFuncs.isTxDataValid = function(txData) { + if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; + if (txData.to == "0xCONTRACT") txData.to = ''; +} +uiFuncs.generateClassicTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getClassicTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendClassicTx = function(signedTx, callback) { + ajaxReq.sendClassicRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.generateTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendTx = function(signedTx, callback) { + ajaxReq.sendRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { + try { + ajaxReq.getTransactionData(fromAdd, function(data) { + if (data.error) throw data.msg; + data = data.data; + var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); + var maxVal = new BigNumber(data.balance).minus(gasPrice); + maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); + if (callback !== undefined) callback({ + isError: false, + unit: "ether", + value: maxVal + }); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":121}],65:[function(require,module,exports){ -'use strict'; -var validator = function() {} -validator.isValidAddress = function(address){ - return ethFuncs.validateEtherAddress(address); -} -validator.isPositiveNumber = function(value){ - return globalFuncs.isNumeric(value) && parseFloat(value) > 0; -} -validator.isValidHex = function(hex){ - return ethFuncs.validateHexString(hex); -} -validator.isValidPrivKey = function(privkeyLen){ - return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; -} -validator.isPasswordLenValid = function(pass, len){ - if(pass === 'undefined' || pass == null ) return false; - return pass.length > len; -} +},{"buffer":122}],66:[function(require,module,exports){ +'use strict'; +var validator = function() {} +validator.isValidAddress = function(address){ + return ethFuncs.validateEtherAddress(address); +} +validator.isPositiveNumber = function(value){ + return globalFuncs.isNumeric(value) && parseFloat(value) >= 0; +} +validator.isValidHex = function(hex){ + return ethFuncs.validateHexString(hex); +} +validator.isValidPrivKey = function(privkeyLen){ + return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; +} +validator.isPasswordLenValid = function(pass, len){ + if(pass === 'undefined' || pass == null ) return false; + return pass.length > len; +} module.exports = validator; -},{}],66:[function(require,module,exports){ + +},{}],67:[function(require,module,exports){ /** * @license AngularJS v1.5.8 * (c) 2010-2016 Google, Inc. http://angularjs.org @@ -19053,11 +19580,11 @@ angular.module('ngSanitize').filter('linky', ['$sanitize', function($sanitize) { })(window, window.angular); -},{}],67:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":66}],68:[function(require,module,exports){ +},{"./angular-sanitize":67}],69:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -19109,7 +19636,7 @@ return 'pascalprecht.translate'; })); -},{}],69:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -22583,9 +23110,9 @@ return 'pascalprecht.translate'; })); -},{}],70:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ /** - * @license AngularJS v1.5.8 + * @license AngularJS v1.5.6 * (c) 2010-2016 Google, Inc. http://angularjs.org * License: MIT */ @@ -22643,7 +23170,7 @@ function minErr(module, ErrorConstructor) { return match; }); - message += '\nhttp://errors.angularjs.org/1.5.8/' + + message += '\nhttp://errors.angularjs.org/1.5.6/' + (module ? module + '/' : '') + code; for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') { @@ -22712,6 +23239,7 @@ function minErr(module, ErrorConstructor) { includes: true, arrayRemove: true, copy: true, + shallowCopy: true, equals: true, csp: true, jq: true, @@ -23407,13 +23935,7 @@ function arrayRemove(array, value) { * * If a destination is provided, all of its elements (for arrays) or properties (for objects) * are deleted and then all elements/properties from the source are copied to it. * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. - * * If `source` is identical to `destination` an exception will be thrown. - * - *
- *
- * Only enumerable properties are taken into account. Non-enumerable properties (both on `source` - * and on `destination`) will be ignored. - *
+ * * If `source` is identical to 'destination' an exception will be thrown. * * @param {*} source The source that will be used to make a copy. * Can be any type, including primitives, `null`, and `undefined`. @@ -23422,42 +23944,41 @@ function arrayRemove(array, value) { * @returns {*} The copy or updated `destination`, if `destination` was specified. * * @example - - -
-
-
-
- Gender: -
- - -
-
form = {{user | json}}
-
master = {{master | json}}
-
-
- - // Module: copyExample - angular. - module('copyExample', []). - controller('ExampleController', ['$scope', function($scope) { - $scope.master = {}; - - $scope.reset = function() { - // Example with 1 argument - $scope.user = angular.copy($scope.master); - }; + + +
+
+ Name:
+ E-mail:
+ Gender: male + female
+ + +
+
form = {{user | json}}
+
master = {{master | json}}
+
+ + +
+
*/ function copy(source, destination) { var stackSource = []; @@ -23564,7 +24085,7 @@ function copy(source, destination) { case '[object Uint8ClampedArray]': case '[object Uint16Array]': case '[object Uint32Array]': - return new source.constructor(copyElement(source.buffer), source.byteOffset, source.length); + return new source.constructor(copyElement(source.buffer)); case '[object ArrayBuffer]': //Support: IE10 @@ -23596,6 +24117,31 @@ function copy(source, destination) { } } +/** + * Creates a shallow copy of an object, an array or a primitive. + * + * Assumes that there are no proto properties for objects. + */ +function shallowCopy(src, dst) { + if (isArray(src)) { + dst = dst || []; + + for (var i = 0, ii = src.length; i < ii; i++) { + dst[i] = src[i]; + } + } else if (isObject(src)) { + dst = dst || {}; + + for (var key in src) { + if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { + dst[key] = src[key]; + } + } + } + + return dst || src; +} + /** * @ngdoc function @@ -24936,34 +25482,7 @@ function setupModuleLoader(window) { } -/* global shallowCopy: true */ - -/** - * Creates a shallow copy of an object, an array or a primitive. - * - * Assumes that there are no proto properties for objects. - */ -function shallowCopy(src, dst) { - if (isArray(src)) { - dst = dst || []; - - for (var i = 0, ii = src.length; i < ii; i++) { - dst[i] = src[i]; - } - } else if (isObject(src)) { - dst = dst || {}; - - for (var key in src) { - if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { - dst[key] = src[key]; - } - } - } - - return dst || src; -} - -/* global toDebugString: true */ +/* global: toDebugString: true */ function serializeObject(obj) { var seen = []; @@ -25067,7 +25586,6 @@ function toDebugString(obj) { $HttpParamSerializerJQLikeProvider, $HttpBackendProvider, $xhrFactoryProvider, - $jsonpCallbacksProvider, $LocationProvider, $LogProvider, $ParseProvider, @@ -25105,11 +25623,11 @@ function toDebugString(obj) { * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". */ var version = { - full: '1.5.8', // all of these placeholder strings will be replaced by grunt's + full: '1.5.6', // all of these placeholder strings will be replaced by grunt's major: 1, // package task minor: 5, - dot: 8, - codeName: 'arbitrary-fallbacks' + dot: 6, + codeName: 'arrow-stringification' }; @@ -25140,7 +25658,7 @@ function publishExternalAPI(angular) { 'isDate': isDate, 'lowercase': lowercase, 'uppercase': uppercase, - 'callbacks': {$$counter: 0}, + 'callbacks': {counter: 0}, 'getTestability': getTestability, '$$minErr': minErr, '$$csp': csp, @@ -25229,7 +25747,6 @@ function publishExternalAPI(angular) { $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider, $httpBackend: $HttpBackendProvider, $xhrFactory: $xhrFactoryProvider, - $jsonpCallbacks: $jsonpCallbacksProvider, $location: $LocationProvider, $log: $LogProvider, $parse: $ParseProvider, @@ -25306,7 +25823,7 @@ function publishExternalAPI(angular) { * ## Angular's jqLite * jqLite provides only the following jQuery methods: * - * - [`addClass()`](http://api.jquery.com/addClass/) - Does not support a function as first argument + * - [`addClass()`](http://api.jquery.com/addClass/) * - [`after()`](http://api.jquery.com/after/) * - [`append()`](http://api.jquery.com/append/) * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters @@ -25333,7 +25850,7 @@ function publishExternalAPI(angular) { * - [`ready()`](http://api.jquery.com/ready/) * - [`remove()`](http://api.jquery.com/remove/) * - [`removeAttr()`](http://api.jquery.com/removeAttr/) - * - [`removeClass()`](http://api.jquery.com/removeClass/) - Does not support a function as first argument + * - [`removeClass()`](http://api.jquery.com/removeClass/) * - [`removeData()`](http://api.jquery.com/removeData/) * - [`replaceWith()`](http://api.jquery.com/replaceWith/) * - [`text()`](http://api.jquery.com/text/) @@ -25468,7 +25985,7 @@ function jqLiteBuildFragment(html, context) { nodes.push(context.createTextNode(html)); } else { // Convert html into DOM nodes - tmp = fragment.appendChild(context.createElement("div")); + tmp = tmp || fragment.appendChild(context.createElement("div")); tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase(); wrap = wrapMap[tag] || wrapMap._default; tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1>") + wrap[2]; @@ -27281,10 +27798,10 @@ function createInjector(modulesToLoad, strictDi) { if (msie <= 11) { return false; } - // Support: Edge 12-13 only - // See: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/6156135/ + // Workaround for MS Edge. + // Check https://connect.microsoft.com/IE/Feedback/Details/2211653 return typeof func === 'function' - && /^(?:class\b|constructor\()/.test(stringifyFn(func)); + && /^(?:class\s|constructor\()/.test(stringifyFn(func)); } function invoke(fn, self, locals, serviceName) { @@ -28025,13 +28542,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28057,13 +28568,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28084,13 +28589,7 @@ var $AnimateProvider = ['$provide', function($provide) { * digest once the animation has completed. * * @param {DOMElement} element the element which will be removed from the DOM - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28114,13 +28613,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be added (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28144,13 +28637,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28175,13 +28662,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} add the CSS class(es) that will be added (multiple classes are separated via spaces) * @param {string} remove the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28222,13 +28703,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {string=} className an optional CSS class that will be applied to the element for the duration of the animation. If * this value is left as empty then a CSS class of `ng-inline-animate` will be applied to the element. * (Note that if no animation is detected then this value will not be applied to the element.) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -29316,9 +29791,8 @@ function $TemplateCacheProvider() { * There are many different options for a directive. * * The difference resides in the return value of the factory function. - * You can either return a {@link $compile#directive-definition-object Directive Definition Object (see below)} - * that defines the directive properties, or just the `postLink` function (all other properties will have - * the default values). + * You can either return a "Directive Definition Object" (see below) that defines the directive properties, + * or just the `postLink` function (all other properties will have the default values). * *
* **Best Practice:** It's recommended to use the "directive definition object" form. @@ -29382,125 +29856,6 @@ function $TemplateCacheProvider() { * }); * ``` * - * ### Life-cycle hooks - * Directive controllers can provide the following methods that are called by Angular at points in the life-cycle of the - * directive: - * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and - * had their bindings initialized (and before the pre & post linking functions for the directives on - * this element). This is a good place to put initialization code for your controller. - * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The - * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an - * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a - * component such as cloning the bound value to prevent accidental mutation of the outer value. - * * `$doCheck()` - Called on each turn of the digest cycle. Provides an opportunity to detect and act on - * changes. Any actions that you wish to take in response to the changes that you detect must be - * invoked from this hook; implementing this has no effect on when `$onChanges` is called. For example, this hook - * could be useful if you wish to perform a deep equality check, or to check a Date object, changes to which would not - * be detected by Angular's change detector and thus not trigger `$onChanges`. This hook is invoked with no arguments; - * if detecting changes, you must store the previous value(s) for comparison to the current values. - * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing - * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in - * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent - * components will have their `$onDestroy()` hook called before child components. - * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link - * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. - * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since - * they are waiting for their template to load asynchronously and their own compilation and linking has been - * suspended until that occurs. - * - * #### Comparison with Angular 2 life-cycle hooks - * Angular 2 also uses life-cycle hooks for its components. While the Angular 1 life-cycle hooks are similar there are - * some differences that you should be aware of, especially when it comes to moving your code from Angular 1 to Angular 2: - * - * * Angular 1 hooks are prefixed with `$`, such as `$onInit`. Angular 2 hooks are prefixed with `ng`, such as `ngOnInit`. - * * Angular 1 hooks can be defined on the controller prototype or added to the controller inside its constructor. - * In Angular 2 you can only define hooks on the prototype of the Component class. - * * Due to the differences in change-detection, you may get many more calls to `$doCheck` in Angular 1 than you would to - * `ngDoCheck` in Angular 2 - * * Changes to the model inside `$doCheck` will trigger new turns of the digest loop, which will cause the changes to be - * propagated throughout the application. - * Angular 2 does not allow the `ngDoCheck` hook to trigger a change outside of the component. It will either throw an - * error or do nothing depending upon the state of `enableProdMode()`. - * - * #### Life-cycle hook examples - * - * This example shows how you can check for mutations to a Date object even though the identity of the object - * has not changed. - * - * - * - * angular.module('do-check-module', []) - * .component('app', { - * template: - * 'Month: ' + - * 'Date: {{ $ctrl.date }}' + - * '', - * controller: function() { - * this.date = new Date(); - * this.month = this.date.getMonth(); - * this.updateDate = function() { - * this.date.setMonth(this.month); - * }; - * } - * }) - * .component('test', { - * bindings: { date: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * var previousValue; - * this.log = []; - * this.$doCheck = function() { - * var currentValue = this.date && this.date.valueOf(); - * if (previousValue !== currentValue) { - * this.log.push('doCheck: date mutated: ' + this.date); - * previousValue = currentValue; - * } - * }; - * } - * }); - *
- * - * - * - *
- * - * This example show how you might use `$doCheck` to trigger changes in your component's inputs even if the - * actual identity of the component doesn't change. (Be aware that cloning and deep equality checks on large - * arrays or objects can have a negative impact on your application performance) - * - * - * - *
- * - * - *
{{ items }}
- * - *
- *
- * - * angular.module('do-check-module', []) - * .component('test', { - * bindings: { items: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * this.log = []; - * - * this.$doCheck = function() { - * if (this.items_ref !== this.items) { - * this.log.push('doCheck: items changed'); - * this.items_ref = this.items; - * } - * if (!angular.equals(this.items_clone, this.items)) { - * this.log.push('doCheck: items mutated'); - * this.items_clone = angular.copy(this.items); - * } - * }; - * } - * }); - *
- *
* * * ### Directive Definition Object @@ -29676,6 +30031,25 @@ function $TemplateCacheProvider() { * The `$transclude` function also has a method on it, `$transclude.isSlotFilled(slotName)`, which returns * `true` if the specified slot contains content (i.e. one or more DOM nodes). * + * The controller can provide the following methods that act as life-cycle hooks: + * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and + * had their bindings initialized (and before the pre & post linking functions for the directives on + * this element). This is a good place to put initialization code for your controller. + * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The + * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an + * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a + * component such as cloning the bound value to prevent accidental mutation of the outer value. + * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing + * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in + * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent + * components will have their `$onDestroy()` hook called before child components. + * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link + * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. + * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since + * they are waiting for their template to load asynchronously and their own compilation and linking has been + * suspended until that occurs. + * + * * #### `require` * Require another directive and inject its controller as the fourth argument to the linking function. The * `require` property can be a string, an array or an object: @@ -29873,8 +30247,8 @@ function $TemplateCacheProvider() { * any other controller. * * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. - * This is the same as the `$transclude` parameter of directive controllers, - * see {@link ng.$compile#-controller- the controller section for details}. + * This is the same as the `$transclude` + * parameter of directive controllers, see there for details. * `function([scope], cloneLinkingFn, futureParentElement)`. * * #### Pre-linking function @@ -30676,19 +31050,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } // We must run this hook in an apply since the $$postDigest runs outside apply $rootScope.$apply(function() { - var errors = []; for (var i = 0, ii = onChangesQueue.length; i < ii; ++i) { - try { - onChangesQueue[i](); - } catch (e) { - errors.push(e); - } + onChangesQueue[i](); } // Reset the queue to trigger a new schedule next time there is a change onChangesQueue = undefined; - if (errors.length) { - throw errors; - } }); } finally { onChangesTtl++; @@ -31329,7 +31695,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { addTextInterpolateDirective(directives, node.nodeValue); break; case NODE_TYPE_COMMENT: /* Comment */ - collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective); + try { + match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); + if (match) { + nName = directiveNormalize(match[1]); + if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { + attrs[nName] = trim(match[2]); + } + } + } catch (e) { + // turns out that under some circumstances IE9 throws errors when one attempts to read + // comment's node value. + // Just ignore it and continue. (Can't seem to reproduce in test case.) + } break; } @@ -31337,24 +31715,6 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return directives; } - function collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective) { - // function created because of performance, try/catch disables - // the optimization of the whole function #14848 - try { - var match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); - if (match) { - var nName = directiveNormalize(match[1]); - if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[2]); - } - } - } catch (e) { - // turns out that under some circumstances IE9 throws errors when one attempts to read - // comment's node value. - // Just ignore it and continue. (Can't seem to reproduce in test case.) - } - } - /** * Given a node with an directive-start it collects all of the siblings until it finds * directive-end. @@ -31870,22 +32230,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(elementControllers, function(controller) { var controllerInstance = controller.instance; if (isFunction(controllerInstance.$onChanges)) { - try { - controllerInstance.$onChanges(controller.bindingInfo.initialChanges); - } catch (e) { - $exceptionHandler(e); - } + controllerInstance.$onChanges(controller.bindingInfo.initialChanges); } if (isFunction(controllerInstance.$onInit)) { - try { - controllerInstance.$onInit(); - } catch (e) { - $exceptionHandler(e); - } - } - if (isFunction(controllerInstance.$doCheck)) { - controllerScope.$watch(function() { controllerInstance.$doCheck(); }); - controllerInstance.$doCheck(); + controllerInstance.$onInit(); } if (isFunction(controllerInstance.$onDestroy)) { controllerScope.$on('$destroy', function callOnDestroyHook() { @@ -32149,16 +32497,18 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // copy the new attributes on the old attrs object forEach(src, function(value, key) { - // Check if we already set this attribute in the loop above. - // `dst` will never contain hasOwnProperty as DOM parser won't let it. - // You will get an "InvalidCharacterError: DOM Exception 5" error if you - // have an attribute like "has-own-property" or "data-has-own-property", etc. - if (!dst.hasOwnProperty(key) && key.charAt(0) !== '$') { + if (key == 'class') { + safeAddClass($element, value); + dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; + } else if (key == 'style') { + $element.attr('style', $element.attr('style') + ';' + value); + dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; + // `dst` will never contain hasOwnProperty as DOM parser won't let it. + // You will get an "InvalidCharacterError: DOM Exception 5" error if you + // have an attribute like "has-own-property" or "data-has-own-property", etc. + } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { dst[key] = value; - - if (key !== 'class' && key !== 'style') { - dstAttr[key] = srcAttr[key]; - } + dstAttr[key] = srcAttr[key]; } }); } @@ -32533,7 +32883,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(bindings, function initializeBinding(definition, scopeName) { var attrName = definition.attrName, optional = definition.optional, - mode = definition.mode, // @, =, <, or & + mode = definition.mode, // @, =, or & lastValue, parentGet, parentSet, compare, removeWatch; @@ -33019,21 +33369,18 @@ function $DocumentProvider() { * * ## Example: * - * The example below will overwrite the default `$exceptionHandler` in order to (a) log uncaught - * errors to the backend for later inspection by the developers and (b) to use `$log.warn()` instead - * of `$log.error()`. - * * ```js - * angular. - * module('exceptionOverwrite', []). - * factory('$exceptionHandler', ['$log', 'logErrorsToBackend', function($log, logErrorsToBackend) { - * return function myExceptionHandler(exception, cause) { - * logErrorsToBackend(exception, cause); - * $log.warn(exception, cause); - * }; - * }]); + * angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { + * return function(exception, cause) { + * exception.message += ' (caused by "' + cause + '")'; + * throw exception; + * }; + * }); * ``` * + * This example will override the normal action of `$exceptionHandler`, to make angular + * exceptions fail hard when they happen, instead of just logging to the console. + * *
* Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind` * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler} @@ -33043,7 +33390,7 @@ function $DocumentProvider() { * `try { ... } catch(e) { $exceptionHandler(e); }` * * @param {Error} exception Exception associated with the error. - * @param {string=} cause Optional information about the context in which + * @param {string=} cause optional information about the context in which * the error was thrown. * */ @@ -33113,7 +33460,7 @@ function $HttpParamSerializerProvider() { * * `{'foo': 'bar'}` results in `foo=bar` * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object) * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element) - * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object) + * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object) * * Note that serializer will sort the request parameters alphabetically. * */ @@ -33664,7 +34011,7 @@ function $HttpProvider() { * * ### Overriding the Default Transformations Per Request * - * If you wish to override the request/response transformations only for a single request then provide + * If you wish override the request/response transformations only for a single request then provide * `transformRequest` and/or `transformResponse` properties on the configuration object passed * into `$http`. * @@ -33707,7 +34054,7 @@ function $HttpProvider() { * * cache a specific response - set config.cache value to TRUE or to a cache object * * If caching is enabled, but neither the default cache nor config.cache are set to a cache object, - * then the default `$cacheFactory("$http")` object is used. + * then the default `$cacheFactory($http)` object is used. * * The default cache value can be set by updating the * {@link ng.$http#defaults `$http.defaults.cache`} property or the @@ -34035,25 +34382,48 @@ function $HttpProvider() { config.headers = mergeHeaders(requestConfig); config.method = uppercase(config.method); config.paramSerializer = isString(config.paramSerializer) ? - $injector.get(config.paramSerializer) : config.paramSerializer; + $injector.get(config.paramSerializer) : config.paramSerializer; - var requestInterceptors = []; - var responseInterceptors = []; + var serverRequest = function(config) { + var headers = config.headers; + var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); + + // strip content-type if data is undefined + if (isUndefined(reqData)) { + forEach(headers, function(value, header) { + if (lowercase(header) === 'content-type') { + delete headers[header]; + } + }); + } + + if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { + config.withCredentials = defaults.withCredentials; + } + + // send request + return sendReq(config, reqData).then(transformResponse, transformResponse); + }; + + var chain = [serverRequest, undefined]; var promise = $q.when(config); // apply interceptors forEach(reversedInterceptors, function(interceptor) { if (interceptor.request || interceptor.requestError) { - requestInterceptors.unshift(interceptor.request, interceptor.requestError); + chain.unshift(interceptor.request, interceptor.requestError); } if (interceptor.response || interceptor.responseError) { - responseInterceptors.push(interceptor.response, interceptor.responseError); + chain.push(interceptor.response, interceptor.responseError); } }); - promise = chainInterceptors(promise, requestInterceptors); - promise = promise.then(serverRequest); - promise = chainInterceptors(promise, responseInterceptors); + while (chain.length) { + var thenFn = chain.shift(); + var rejectFn = chain.shift(); + + promise = promise.then(thenFn, rejectFn); + } if (useLegacyPromise) { promise.success = function(fn) { @@ -34080,18 +34450,14 @@ function $HttpProvider() { return promise; - - function chainInterceptors(promise, interceptors) { - for (var i = 0, ii = interceptors.length; i < ii;) { - var thenFn = interceptors[i++]; - var rejectFn = interceptors[i++]; - - promise = promise.then(thenFn, rejectFn); - } - - interceptors.length = 0; - - return promise; + function transformResponse(response) { + // make a copy since the response must be cacheable + var resp = extend({}, response); + resp.data = transformData(response.data, response.headers, response.status, + config.transformResponse); + return (isSuccess(response.status)) + ? resp + : $q.reject(resp); } function executeHeaderFns(headers, config) { @@ -34135,37 +34501,6 @@ function $HttpProvider() { // execute if header value is a function for merged headers return executeHeaderFns(reqHeaders, shallowCopy(config)); } - - function serverRequest(config) { - var headers = config.headers; - var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); - - // strip content-type if data is undefined - if (isUndefined(reqData)) { - forEach(headers, function(value, header) { - if (lowercase(header) === 'content-type') { - delete headers[header]; - } - }); - } - - if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { - config.withCredentials = defaults.withCredentials; - } - - // send request - return sendReq(config, reqData).then(transformResponse, transformResponse); - } - - function transformResponse(response) { - // make a copy since the response must be cacheable - var resp = extend({}, response); - resp.data = transformData(response.data, response.headers, response.status, - config.transformResponse); - return (isSuccess(response.status)) - ? resp - : $q.reject(resp); - } } $http.pendingRequests = []; @@ -34212,8 +34547,6 @@ function $HttpProvider() { * * @description * Shortcut method to perform `JSONP` request. - * If you would like to customise where and how the callbacks are stored then try overriding - * or decorating the {@link $jsonpCallbacks} service. * * @param {string} url Relative or absolute URL specifying the destination of the request. * The name of the callback should be the string `JSON_CALLBACK`. @@ -34487,7 +34820,7 @@ function $xhrFactoryProvider() { /** * @ngdoc service * @name $httpBackend - * @requires $jsonpCallbacks + * @requires $window * @requires $document * @requires $xhrFactory * @@ -34502,8 +34835,8 @@ function $xhrFactoryProvider() { * $httpBackend} which can be trained with responses. */ function $HttpBackendProvider() { - this.$get = ['$browser', '$jsonpCallbacks', '$document', '$xhrFactory', function($browser, $jsonpCallbacks, $document, $xhrFactory) { - return createHttpBackend($browser, $xhrFactory, $browser.defer, $jsonpCallbacks, $document[0]); + this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) { + return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]); }]; } @@ -34513,13 +34846,17 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc $browser.$$incOutstandingRequestCount(); url = url || $browser.url(); - if (lowercase(method) === 'jsonp') { - var callbackPath = callbacks.createCallback(url); - var jsonpDone = jsonpReq(url, callbackPath, function(status, text) { - // jsonpReq only ever sets status to 200 (OK), 404 (ERROR) or -1 (WAITING) - var response = (status === 200) && callbacks.getResponse(callbackPath); - completeRequest(callback, status, response, "", text); - callbacks.removeCallback(callbackPath); + if (lowercase(method) == 'jsonp') { + var callbackId = '_' + (callbacks.counter++).toString(36); + callbacks[callbackId] = function(data) { + callbacks[callbackId].data = data; + callbacks[callbackId].called = true; + }; + + var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), + callbackId, function(status, text) { + completeRequest(callback, status, callbacks[callbackId].data, "", text); + callbacks[callbackId] = noop; }); } else { @@ -34621,8 +34958,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc } }; - function jsonpReq(url, callbackPath, done) { - url = url.replace('JSON_CALLBACK', callbackPath); + function jsonpReq(url, callbackId, done) { // we can't use jQuery/jqLite here because jQuery does crazy stuff with script elements, e.g.: // - fetches local scripts via XHR and evals them // - adds and immediately removes script elements from the document @@ -34640,7 +34976,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc var text = "unknown"; if (event) { - if (event.type === "load" && !callbacks.wasCalled(callbackPath)) { + if (event.type === "load" && !callbacks[callbackId].called) { event = { type: "error" }; } text = event.type; @@ -34839,7 +35175,7 @@ function $InterpolateProvider() { * * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior. * - * #### Escaped Interpolation + * ####Escaped Interpolation * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash). * It will be rendered as a regular start/end marker, and will not be interpreted as an expression @@ -35262,87 +35598,6 @@ function $IntervalProvider() { }]; } -/** - * @ngdoc service - * @name $jsonpCallbacks - * @requires $window - * @description - * This service handles the lifecycle of callbacks to handle JSONP requests. - * Override this service if you wish to customise where the callbacks are stored and - * how they vary compared to the requested url. - */ -var $jsonpCallbacksProvider = function() { - this.$get = ['$window', function($window) { - var callbacks = $window.angular.callbacks; - var callbackMap = {}; - - function createCallback(callbackId) { - var callback = function(data) { - callback.data = data; - callback.called = true; - }; - callback.id = callbackId; - return callback; - } - - return { - /** - * @ngdoc method - * @name $jsonpCallbacks#createCallback - * @param {string} url the url of the JSONP request - * @returns {string} the callback path to send to the server as part of the JSONP request - * @description - * {@link $httpBackend} calls this method to create a callback and get hold of the path to the callback - * to pass to the server, which will be used to call the callback with its payload in the JSONP response. - */ - createCallback: function(url) { - var callbackId = '_' + (callbacks.$$counter++).toString(36); - var callbackPath = 'angular.callbacks.' + callbackId; - var callback = createCallback(callbackId); - callbackMap[callbackPath] = callbacks[callbackId] = callback; - return callbackPath; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#wasCalled - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {boolean} whether the callback has been called, as a result of the JSONP response - * @description - * {@link $httpBackend} calls this method to find out whether the JSONP response actually called the - * callback that was passed in the request. - */ - wasCalled: function(callbackPath) { - return callbackMap[callbackPath].called; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#getResponse - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {*} the data received from the response via the registered callback - * @description - * {@link $httpBackend} calls this method to get hold of the data that was provided to the callback - * in the JSONP response. - */ - getResponse: function(callbackPath) { - return callbackMap[callbackPath].data; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#removeCallback - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @description - * {@link $httpBackend} calls this method to remove the callback after the JSONP request has - * completed or timed-out. - */ - removeCallback: function(callbackPath) { - var callback = callbackMap[callbackPath]; - delete callbacks[callback.id]; - delete callbackMap[callbackPath]; - } - }; - }]; -}; - /** * @ngdoc service * @name $locale @@ -35682,12 +35937,6 @@ function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) { var locationPrototype = { - /** - * Ensure absolute url is initialized. - * @private - */ - $$absUrl:'', - /** * Are we in html5 mode? * @private @@ -37061,7 +37310,7 @@ AST.prototype = { var args = []; if (this.peekToken().text !== ')') { do { - args.push(this.filterChain()); + args.push(this.expression()); } while (this.expect(',')); } return args; @@ -38788,7 +39037,7 @@ function $ParseProvider() { * * **Methods** * - * - `then(successCallback, [errorCallback], [notifyCallback])` – regardless of when the promise was or + * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously * as soon as the result is available. The callbacks are called with a single argument: the result * or rejection reason. Additionally, the notify callback may be called zero or more times to @@ -38799,8 +39048,7 @@ function $ParseProvider() { * with the value which is resolved in that promise using * [promise chaining](http://www.html5rocks.com/en/tutorials/es6/promises/#toc-promises-queues)). * It also notifies via the return value of the `notifyCallback` method. The promise cannot be - * resolved or rejected from the notifyCallback method. The errorCallback and notifyCallback - * arguments are optional. + * resolved or rejected from the notifyCallback method. * * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` * @@ -39215,30 +39463,6 @@ function qFactory(nextTick, exceptionHandler) { return deferred.promise; } - /** - * @ngdoc method - * @name $q#race - * @kind function - * - * @description - * Returns a promise that resolves or rejects as soon as one of those promises - * resolves or rejects, with the value or reason from that promise. - * - * @param {Array.|Object.} promises An array or hash of promises. - * @returns {Promise} a promise that resolves or rejects as soon as one of the `promises` - * resolves or rejects, with the value or reason from that promise. - */ - - function race(promises) { - var deferred = defer(); - - forEach(promises, function(promise) { - when(promise).then(deferred.resolve, deferred.reject); - }); - - return deferred.promise; - } - var $Q = function Q(resolver) { if (!isFunction(resolver)) { throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver); @@ -39268,7 +39492,6 @@ function qFactory(nextTick, exceptionHandler) { $Q.when = when; $Q.resolve = resolve; $Q.all = all; - $Q.race = race; return $Q; } @@ -42620,11 +42843,10 @@ function $FilterProvider($provide) { * - `Object`: A pattern object can be used to filter specific properties on objects contained * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items * which have property `name` containing "M" and property `phone` containing "1". A special - * property name (`$` by default) can be used (e.g. as in `{$: "text"}`) to accept a match - * against any property of the object or its nested object properties. That's equivalent to the - * simple substring match with a `string` as described above. The special property name can be - * overwritten, using the `anyPropertyKey` parameter. - * The predicate can be negated by prefixing the string with `!`. + * property name `$` can be used (as in `{$:"text"}`) to accept a match against any + * property of the object or its nested object properties. That's equivalent to the simple + * substring match with a `string` as described above. The predicate can be negated by prefixing + * the string with `!`. * For example `{name: "!M"}` predicate will return an array of items which have property `name` * not containing "M". * @@ -42658,9 +42880,6 @@ function $FilterProvider($provide) { * Primitive values are converted to strings. Objects are not compared against primitives, * unless they have a custom `toString` method (e.g. `Date` objects). * - * @param {string=} anyPropertyKey The special property name that matches against any property. - * By default `$`. - * * @example @@ -42729,9 +42948,8 @@ function $FilterProvider($provide) { */ - function filterFilter() { - return function(array, expression, comparator, anyPropertyKey) { + return function(array, expression, comparator) { if (!isArrayLike(array)) { if (array == null) { return array; @@ -42740,7 +42958,6 @@ function filterFilter() { } } - anyPropertyKey = anyPropertyKey || '$'; var expressionType = getTypeForFilter(expression); var predicateFn; var matchAgainstAnyProp; @@ -42757,7 +42974,7 @@ function filterFilter() { //jshint -W086 case 'object': //jshint +W086 - predicateFn = createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp); + predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp); break; default: return array; @@ -42768,8 +42985,8 @@ function filterFilter() { } // Helper functions for `filterFilter` -function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp) { - var shouldMatchPrimitives = isObject(expression) && (anyPropertyKey in expression); +function createPredicateFn(expression, comparator, matchAgainstAnyProp) { + var shouldMatchPrimitives = isObject(expression) && ('$' in expression); var predicateFn; if (comparator === true) { @@ -42797,25 +43014,25 @@ function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstA predicateFn = function(item) { if (shouldMatchPrimitives && !isObject(item)) { - return deepCompare(item, expression[anyPropertyKey], comparator, anyPropertyKey, false); + return deepCompare(item, expression.$, comparator, false); } - return deepCompare(item, expression, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expression, comparator, matchAgainstAnyProp); }; return predicateFn; } -function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstAnyProp, dontMatchWholeObject) { +function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) { var actualType = getTypeForFilter(actual); var expectedType = getTypeForFilter(expected); if ((expectedType === 'string') && (expected.charAt(0) === '!')) { - return !deepCompare(actual, expected.substring(1), comparator, anyPropertyKey, matchAgainstAnyProp); + return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp); } else if (isArray(actual)) { // In case `actual` is an array, consider it a match // if ANY of it's items matches `expected` return actual.some(function(item) { - return deepCompare(item, expected, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expected, comparator, matchAgainstAnyProp); }); } @@ -42824,11 +43041,11 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA var key; if (matchAgainstAnyProp) { for (key in actual) { - if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, anyPropertyKey, true)) { + if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) { return true; } } - return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, anyPropertyKey, false); + return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false); } else if (expectedType === 'object') { for (key in expected) { var expectedVal = expected[key]; @@ -42836,9 +43053,9 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA continue; } - var matchAnyProperty = key === anyPropertyKey; + var matchAnyProperty = key === '$'; var actualVal = matchAnyProperty ? actual : actual[key]; - if (!deepCompare(actualVal, expectedVal, comparator, anyPropertyKey, matchAnyProperty, matchAnyProperty)) { + if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) { return false; } } @@ -43576,22 +43793,21 @@ var uppercaseFilter = valueFn(uppercase); * @kind function * * @description - * Creates a new array or string containing only a specified number of elements. The elements are - * taken from either the beginning or the end of the source array, string or number, as specified by - * the value and sign (positive or negative) of `limit`. Other array-like objects are also supported - * (e.g. array subclasses, NodeLists, jqLite/jQuery collections etc). If a number is used as input, - * it is converted to a string. - * - * @param {Array|ArrayLike|string|number} input - Array/array-like, string or number to be limited. - * @param {string|number} limit - The length of the returned array or string. If the `limit` number + * Creates a new array or string containing only a specified number of elements. The elements + * are taken from either the beginning or the end of the source array, string or number, as specified by + * the value and sign (positive or negative) of `limit`. If a number is used as input, it is + * converted to a string. + * + * @param {Array|string|number} input Source array, string or number to be limited. + * @param {string|number} limit The length of the returned array or string. If the `limit` number * is positive, `limit` number of items from the beginning of the source array/string are copied. * If the number is negative, `limit` number of items from the end of the source array/string * are copied. The `limit` will be trimmed if it exceeds `array.length`. If `limit` is undefined, * the input will be returned unchanged. - * @param {(string|number)=} begin - Index at which to begin limitation. As a negative index, - * `begin` indicates an offset from the end of `input`. Defaults to `0`. - * @returns {Array|string} A new sub-array or substring of length `limit` or less if the input had - * less than `limit` elements. + * @param {(string|number)=} begin Index at which to begin limitation. As a negative index, `begin` + * indicates an offset from the end of `input`. Defaults to `0`. + * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array + * had less than `limit` elements. * * @example @@ -43679,157 +43895,67 @@ function limitToFilter() { if (isNaN(limit)) return input; if (isNumber(input)) input = input.toString(); - if (!isArrayLike(input)) return input; + if (!isArray(input) && !isString(input)) return input; begin = (!begin || isNaN(begin)) ? 0 : toInt(begin); begin = (begin < 0) ? Math.max(0, input.length + begin) : begin; if (limit >= 0) { - return sliceFn(input, begin, begin + limit); + return input.slice(begin, begin + limit); } else { if (begin === 0) { - return sliceFn(input, limit, input.length); + return input.slice(limit, input.length); } else { - return sliceFn(input, Math.max(0, begin + limit), begin); + return input.slice(Math.max(0, begin + limit), begin); } } }; } -function sliceFn(input, begin, end) { - if (isString(input)) return input.slice(begin, end); - - return slice.call(input, begin, end); -} - /** * @ngdoc filter * @name orderBy * @kind function * * @description - * Returns an array containing the items from the specified `collection`, ordered by a `comparator` - * function based on the values computed using the `expression` predicate. - * - * For example, `[{id: 'foo'}, {id: 'bar'}] | orderBy:'id'` would result in - * `[{id: 'bar'}, {id: 'foo'}]`. - * - * The `collection` can be an Array or array-like object (e.g. NodeList, jQuery object, TypedArray, - * String, etc). + * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically + * for strings and numerically for numbers. Note: if you notice numbers are not being sorted + * as expected, make sure they are actually being saved as numbers and not strings. + * Array-like values (e.g. NodeLists, jQuery objects, TypedArrays, Strings, etc) are also supported. * - * The `expression` can be a single predicate, or a list of predicates each serving as a tie-breaker - * for the preceeding one. The `expression` is evaluated against each item and the output is used - * for comparing with other items. - * - * You can change the sorting order by setting `reverse` to `true`. By default, items are sorted in - * ascending order. - * - * The comparison is done using the `comparator` function. If none is specified, a default, built-in - * comparator is used (see below for details - in a nutshell, it compares numbers numerically and - * strings alphabetically). - * - * ### Under the hood - * - * Ordering the specified `collection` happens in two phases: - * - * 1. All items are passed through the predicate (or predicates), and the returned values are saved - * along with their type (`string`, `number` etc). For example, an item `{label: 'foo'}`, passed - * through a predicate that extracts the value of the `label` property, would be transformed to: - * ``` - * { - * value: 'foo', - * type: 'string', - * index: ... - * } - * ``` - * 2. The comparator function is used to sort the items, based on the derived values, types and - * indices. - * - * If you use a custom comparator, it will be called with pairs of objects of the form - * `{value: ..., type: '...', index: ...}` and is expected to return `0` if the objects are equal - * (as far as the comparator is concerned), `-1` if the 1st one should be ranked higher than the - * second, or `1` otherwise. - * - * In order to ensure that the sorting will be deterministic across platforms, if none of the - * specified predicates can distinguish between two items, `orderBy` will automatically introduce a - * dummy predicate that returns the item's index as `value`. - * (If you are using a custom comparator, make sure it can handle this predicate as well.) - * - * Finally, in an attempt to simplify things, if a predicate returns an object as the extracted - * value for an item, `orderBy` will try to convert that object to a primitive value, before passing - * it to the comparator. The following rules govern the conversion: - * - * 1. If the object has a `valueOf()` method that returns a primitive, its return value will be - * used instead.
- * (If the object has a `valueOf()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 2. If the object has a custom `toString()` method (i.e. not the one inherited from `Object`) that - * returns a primitive, its return value will be used instead.
- * (If the object has a `toString()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 3. No conversion; the object itself is used. - * - * ### The default comparator - * - * The default, built-in comparator should be sufficient for most usecases. In short, it compares - * numbers numerically, strings alphabetically (and case-insensitively), for objects falls back to - * using their index in the original collection, and sorts values of different types by type. - * - * More specifically, it follows these steps to determine the relative order of items: - * - * 1. If the compared values are of different types, compare the types themselves alphabetically. - * 2. If both values are of type `string`, compare them alphabetically in a case- and - * locale-insensitive way. - * 3. If both values are objects, compare their indices instead. - * 4. Otherwise, return: - * - `0`, if the values are equal (by strict equality comparison, i.e. using `===`). - * - `-1`, if the 1st value is "less than" the 2nd value (compared using the `<` operator). - * - `1`, otherwise. - * - * **Note:** If you notice numbers not being sorted as expected, make sure they are actually being - * saved as numbers and not strings. - * - * @param {Array|ArrayLike} collection - The collection (array or array-like object) to sort. - * @param {(Function|string|Array.)=} expression - A predicate (or list of - * predicates) to be used by the comparator to determine the order of elements. + * @param {Array} array The array (or array-like object) to sort. + * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be + * used by the comparator to determine the order of elements. * * Can be one of: * - * - `Function`: A getter function. This function will be called with each item as argument and - * the return value will be used for sorting. - * - `string`: An Angular expression. This expression will be evaluated against each item and the - * result will be used for sorting. For example, use `'label'` to sort by a property called - * `label` or `'label.substring(0, 3)'` to sort by the first 3 characters of the `label` - * property.
- * (The result of a constant expression is interpreted as a property name to be used for - * comparison. For example, use `'"special name"'` (note the extra pair of quotes) to sort by a - * property called `special name`.)
- * An expression can be optionally prefixed with `+` or `-` to control the sorting direction, - * ascending or descending. For example, `'+label'` or `'-label'`. If no property is provided, - * (e.g. `'+'` or `'-'`), the collection element itself is used in comparisons. - * - `Array`: An array of function and/or string predicates. If a predicate cannot determine the - * relative order of two items, the next predicate is used as a tie-breaker. + * - `function`: Getter function. The result of this function will be sorted using the + * `<`, `===`, `>` operator. + * - `string`: An Angular expression. The result of this expression is used to compare elements + * (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by + * 3 first characters of a property called `name`). The result of a constant expression + * is interpreted as a property name to be used in comparisons (for example `"special name"` + * to sort object by the value of their `special name` property). An expression can be + * optionally prefixed with `+` or `-` to control ascending or descending sort order + * (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array + * element itself is used to compare where sorting. + * - `Array`: An array of function or string predicates. The first predicate in the array + * is used for sorting, but when two items are equivalent, the next predicate is used. * - * **Note:** If the predicate is missing or empty then it defaults to `'+'`. + * If the predicate is missing or empty then it defaults to `'+'`. * - * @param {boolean=} reverse - If `true`, reverse the sorting order. - * @param {(Function)=} comparator - The comparator function used to determine the relative order of - * value pairs. If omitted, the built-in comparator will be used. - * - * @returns {Array} - The sorted array. + * @param {boolean=} reverse Reverse the order of the array. + * @returns {Array} Sorted copy of the source array. * * * @example - * ### Ordering a table with `ngRepeat` - * - * The example below demonstrates a simple {@link ngRepeat ngRepeat}, where the data is sorted by - * age in descending order (expression is set to `'-age'`). The `comparator` is not set, which means - * it defaults to the built-in comparator. - * - + * The example below demonstrates a simple ngRepeat, where the data is sorted + * by age in descending order (predicate is set to `'-age'`). + * `reverse` is not set, which means it defaults to `false`. +
- +
@@ -43844,77 +43970,43 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample1', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; }]); - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - - - // Element locators - var names = element.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by age in reverse order', function() { - expect(names.get(0).getText()).toBe('Adam'); - expect(names.get(1).getText()).toBe('Julie'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('John'); - }); - - *
* + * The predicate and reverse parameters can be controlled dynamically through scope properties, + * as shown in the next example. * @example - * ### Changing parameters dynamically - * - * All parameters can be changed dynamically. The next example shows how you can make the columns of - * a table sortable, by binding the `expression` and `reverse` parameters to scope properties. - * - +
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- +
Sorting predicate = {{predicate}}; reverse = {{reverse}}

-
Name Phone Number
+ +
- - - + + + - + @@ -43923,335 +44015,100 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample2', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + $scope.predicate = 'age'; $scope.reverse = true; - $scope.friends = friends; - - $scope.sortBy = function(propertyName) { - $scope.reverse = ($scope.propertyName === propertyName) ? !$scope.reverse : false; - $scope.propertyName = propertyName; + $scope.order = function(predicate) { + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.predicate = predicate; }; }]); - + - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE + content: '\25bc'; } - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - - *
* - * @example - * ### Using `orderBy` inside a controller + * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the + * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the + * desired parameters. * - * It is also possible to call the `orderBy` filter manually, by injecting `orderByFilter`, and - * calling it with the desired parameters. (Alternatively, you could inject the `$filter` factory - * and retrieve the `orderBy` filter with `$filter('orderBy')`.) + * Example: * - - -
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- -
-
- - - - - - - - - + + + + + + + + +
{{friend.name}} {{friend.phone}} {{friend.age}}
- - - - - - - - - - -
- - - - - - - - -
{{friend.name}}{{friend.phone}}{{friend.age}}
-
-
- - angular.module('orderByExample3', []) - .controller('ExampleController', ['$scope', 'orderByFilter', function($scope, orderBy) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; - $scope.reverse = true; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - - $scope.sortBy = function(propertyName) { - $scope.reverse = (propertyName !== null && $scope.propertyName === propertyName) - ? !$scope.reverse : false; - $scope.propertyName = propertyName; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - }; - }]); - - - .friends { - border-collapse: collapse; - } + * @example + + +
+
Sorting predicate = {{predicate}}; reverse = {{reverse}}
+ + + + + + + + + + + +
+ + + + + + + + +
{{friend.name}}{{friend.phone}}{{friend.age}}
+
+
- .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) { + var orderBy = $filter('orderBy'); + $scope.friends = [ + { name: 'John', phone: '555-1212', age: 10 }, + { name: 'Mary', phone: '555-9876', age: 19 }, + { name: 'Mike', phone: '555-4321', age: 21 }, + { name: 'Adam', phone: '555-5678', age: 35 }, + { name: 'Julie', phone: '555-8765', age: 29 } + ]; + $scope.order = function(predicate) { + $scope.predicate = predicate; + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.friends = orderBy($scope.friends, predicate, $scope.reverse); + }; + $scope.order('age', true); + }]); + + .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE - } - - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - -
- *
- * - * @example - * ### Using a custom comparator - * - * If you have very specific requirements about the way items are sorted, you can pass your own - * comparator function. For example, you might need to compare some strings in a locale-sensitive - * way. (When specifying a custom comparator, you also need to pass a value for the `reverse` - * argument - passing `false` retains the default sorting order, i.e. ascending.) - * - - -
-
-

Locale-sensitive Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-

Default Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-
- - angular.module('orderByExample4', []) - .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', favoriteLetter: 'Ä'}, - {name: 'Mary', favoriteLetter: 'Ü'}, - {name: 'Mike', favoriteLetter: 'Ö'}, - {name: 'Adam', favoriteLetter: 'H'}, - {name: 'Julie', favoriteLetter: 'Z'} - ]; - - $scope.localeSensitiveComparator = function(v1, v2) { - // If we don't get strings, just compare by index - if (v1.type !== 'string' || v2.type !== 'string') { - return (v1.index < v2.index) ? -1 : 1; - } - - // Compare strings alphabetically, taking locale into account - return v1.value.localeCompare(v2.value); - }; - }]); - - - .friends-container { - display: inline-block; - margin: 0 30px; - } - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; + content: '\25bc'; } - - - // Element locators - var container = element(by.css('.custom-comparator')); - var names = container.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by favorite letter (in correct alphabetical order)', function() { - expect(names.get(0).getText()).toBe('John'); - expect(names.get(1).getText()).toBe('Adam'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('Julie'); - }); - -
- * +
+
*/ orderByFilter.$inject = ['$parse']; function orderByFilter($parse) { - return function(array, sortPredicate, reverseOrder, compareFn) { + return function(array, sortPredicate, reverseOrder) { if (array == null) return array; if (!isArrayLike(array)) { @@ -44261,12 +44118,11 @@ function orderByFilter($parse) { if (!isArray(sortPredicate)) { sortPredicate = [sortPredicate]; } if (sortPredicate.length === 0) { sortPredicate = ['+']; } - var predicates = processPredicates(sortPredicate); - - var descending = reverseOrder ? -1 : 1; - - // Define the `compare()` function. Use a default comparator if none is specified. - var compare = isFunction(compareFn) ? compareFn : defaultCompare; + var predicates = processPredicates(sortPredicate, reverseOrder); + // Add a predicate at the end that evaluates to the element index. This makes the + // sort stable as it works as a tie-breaker when all the input predicates cannot + // distinguish between two elements. + predicates.push({ get: function() { return {}; }, descending: reverseOrder ? -1 : 1}); // The next three lines are a version of a Swartzian Transform idiom from Perl // (sometimes called the Decorate-Sort-Undecorate idiom) @@ -44278,12 +44134,8 @@ function orderByFilter($parse) { return array; function getComparisonObject(value, index) { - // NOTE: We are adding an extra `tieBreaker` value based on the element's index. - // This will be used to keep the sort stable when none of the input predicates can - // distinguish between two elements. return { value: value, - tieBreaker: {value: index, type: 'number', index: index}, predicateValues: predicates.map(function(predicate) { return getPredicateValue(predicate.get(value), index); }) @@ -44291,19 +44143,18 @@ function orderByFilter($parse) { } function doComparison(v1, v2) { - for (var i = 0, ii = predicates.length; i < ii; i++) { - var result = compare(v1.predicateValues[i], v2.predicateValues[i]); - if (result) { - return result * predicates[i].descending * descending; - } + var result = 0; + for (var index=0, length = predicates.length; index < length; ++index) { + result = compare(v1.predicateValues[index], v2.predicateValues[index]) * predicates[index].descending; + if (result) break; } - - return compare(v1.tieBreaker, v2.tieBreaker) * descending; + return result; } }; - function processPredicates(sortPredicates) { - return sortPredicates.map(function(predicate) { + function processPredicates(sortPredicate, reverseOrder) { + reverseOrder = reverseOrder ? -1 : 1; + return sortPredicate.map(function(predicate) { var descending = 1, get = identity; if (isFunction(predicate)) { @@ -44321,7 +44172,7 @@ function orderByFilter($parse) { } } } - return {get: get, descending: descending}; + return { get: get, descending: descending * reverseOrder }; }); } @@ -44336,9 +44187,9 @@ function orderByFilter($parse) { } } - function objectValue(value) { + function objectValue(value, index) { // If `valueOf` is a valid function use that - if (isFunction(value.valueOf)) { + if (typeof value.valueOf === 'function') { value = value.valueOf(); if (isPrimitive(value)) return value; } @@ -44347,8 +44198,8 @@ function orderByFilter($parse) { value = value.toString(); if (isPrimitive(value)) return value; } - - return value; + // We have a basic object so we use the position of the object in the collection + return index; } function getPredicateValue(value, index) { @@ -44356,39 +44207,23 @@ function orderByFilter($parse) { if (value === null) { type = 'string'; value = 'null'; + } else if (type === 'string') { + value = value.toLowerCase(); } else if (type === 'object') { - value = objectValue(value); + value = objectValue(value, index); } - return {value: value, type: type, index: index}; + return { value: value, type: type }; } - function defaultCompare(v1, v2) { + function compare(v1, v2) { var result = 0; - var type1 = v1.type; - var type2 = v2.type; - - if (type1 === type2) { - var value1 = v1.value; - var value2 = v2.value; - - if (type1 === 'string') { - // Compare strings case-insensitively - value1 = value1.toLowerCase(); - value2 = value2.toLowerCase(); - } else if (type1 === 'object') { - // For basic objects, use the position of the object - // in the collection instead of the value - if (isObject(value1)) value1 = v1.index; - if (isObject(value2)) value2 = v2.index; - } - - if (value1 !== value2) { - result = value1 < value2 ? -1 : 1; + if (v1.type === v2.type) { + if (v1.value !== v2.value) { + result = v1.value < v2.value ? -1 : 1; } } else { - result = type1 < type2 ? -1 : 1; + result = v1.type < v2.type ? -1 : 1; } - return result; } } @@ -44668,11 +44503,9 @@ var htmlAnchorDirective = valueFn({ * * @description * - * Sets the `readonly` attribute on the element, if the expression inside `ngReadonly` is truthy. - * Note that `readonly` applies only to `input` elements with specific types. [See the input docs on - * MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly) for more information. + * Sets the `readOnly` attribute on the element, if the expression inside `ngReadonly` is truthy. * - * A special directive is necessary because we cannot use interpolation inside the `readonly` + * A special directive is necessary because we cannot use interpolation inside the `readOnly` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * * @example @@ -44709,13 +44542,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `selected` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - *
- * **Note:** `ngSelected` does not interact with the `select` and `ngModel` directives, it only - * sets the `selected` attribute on the element. If you are using `ngModel` on the select, you - * should not use `ngSelected` on the options, as `ngModel` will set the select value and - * selected options. - *
- * * @example @@ -44752,11 +44578,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `open` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - * ## A note about browser compatibility - * - * Edge, Firefox, and Internet Explorer do not support the `details` element, it is - * recommended to use {@link ng.ngShow} and {@link ng.ngHide} instead. - * * @example @@ -45447,9 +45268,7 @@ var ISO_DATE_REGEXP = /^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+- // 9. Fragment // 1111111111111111 222 333333 44444 555555555555555555555555 666 77777777 8888888 999 var URL_REGEXP = /^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i; -/* jshint maxlen:220 */ -var EMAIL_REGEXP = /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/; -/* jshint maxlen:200 */ +var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4,})-(\d{2})-(\d{2})$/; var DATETIMELOCAL_REGEXP = /^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; @@ -46834,7 +46653,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('min', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } minVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -46850,7 +46669,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('max', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } maxVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -47657,11 +47476,6 @@ function classDirective(name, selector) { * When the expression changes, the previously added classes are removed and only then are the * new classes added. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `class` - * attribute, when using the `ngClass` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @animations * | Animation | Occurs | * |----------------------------------|-------------------------------------| @@ -51607,7 +51421,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, for (var i = options.items.length - 1; i >= 0; i--) { var option = options.items[i]; - if (isDefined(option.group)) { + if (option.group) { jqLiteRemove(option.element.parentNode); } else { jqLiteRemove(option.element); @@ -51639,8 +51453,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, listFragment.appendChild(groupElement); // Update the label on the group element - // "null" is special cased because of Safari - groupElement.label = option.group === null ? 'null' : option.group; + groupElement.label = option.group; // Store it for use later groupElementMap[option.group] = groupElement; @@ -51976,7 +51789,7 @@ var ngPluralizeDirective = ['$locale', '$interpolate', '$log', function($locale, * it's a prefix used by Angular for public (`$`) and private (`$$`) properties. * * - The built-in filters {@link ng.orderBy orderBy} and {@link ng.filter filter} do not work with - * objects, and will throw an error if used with one. + * objects, and will throw if used with one. * * If you are hitting any of these limitations, the recommended workaround is to convert your object into an array * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could @@ -52825,11 +52638,6 @@ var ngHideDirective = ['$animate', function($animate) { * @description * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `style` - * attribute, when using the `ngStyle` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @element ANY * @param {expression} ngStyle * @@ -53241,63 +53049,37 @@ var ngSwitchDefaultDirective = ngDirective({ * */ var ngTranscludeMinErr = minErr('ngTransclude'); -var ngTranscludeDirective = ['$compile', function($compile) { - return { - restrict: 'EAC', - terminal: true, - compile: function ngTranscludeCompile(tElement) { - - // Remove and cache any original content to act as a fallback - var fallbackLinkFn = $compile(tElement.contents()); - tElement.empty(); - - return function ngTranscludePostLink($scope, $element, $attrs, controller, $transclude) { - - if (!$transclude) { - throw ngTranscludeMinErr('orphan', - 'Illegal use of ngTransclude directive in the template! ' + - 'No parent directive that requires a transclusion found. ' + - 'Element: {0}', - startingTag($element)); - } - - - // If the attribute is of the form: `ng-transclude="ng-transclude"` then treat it like the default - if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { - $attrs.ngTransclude = ''; - } - var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; +var ngTranscludeDirective = ngDirective({ + restrict: 'EAC', + link: function($scope, $element, $attrs, controller, $transclude) { - // If the slot is required and no transclusion content is provided then this call will throw an error - $transclude(ngTranscludeCloneAttachFn, null, slotName); - - // If the slot is optional and no transclusion content is provided then use the fallback content - if (slotName && !$transclude.isSlotFilled(slotName)) { - useFallbackContent(); - } + if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { + // If the attribute is of the form: `ng-transclude="ng-transclude"` + // then treat it like the default + $attrs.ngTransclude = ''; + } - function ngTranscludeCloneAttachFn(clone, transcludedScope) { - if (clone.length) { - $element.append(clone); - } else { - useFallbackContent(); - // There is nothing linked against the transcluded scope since no content was available, - // so it should be safe to clean up the generated scope. - transcludedScope.$destroy(); - } - } + function ngTranscludeCloneAttachFn(clone) { + if (clone.length) { + $element.empty(); + $element.append(clone); + } + } - function useFallbackContent() { - // Since this is the fallback content rather than the transcluded content, - // we link against the scope of this directive rather than the transcluded scope - fallbackLinkFn($scope, function(clone) { - $element.append(clone); - }); - } - }; + if (!$transclude) { + throw ngTranscludeMinErr('orphan', + 'Illegal use of ngTransclude directive in the template! ' + + 'No parent directive that requires a transclusion found. ' + + 'Element: {0}', + startingTag($element)); } - }; -}]; + + // If there is no slot name defined or the slot name is not optional + // then transclude the slot + var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; + $transclude(ngTranscludeCloneAttachFn, null, slotName); + } +}); /** * @ngdoc directive @@ -54352,11 +54134,11 @@ $provide.value("$locale", { })(window); !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],71:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ require('./angular'); module.exports = angular; -},{"./angular":70}],72:[function(require,module,exports){ +},{"./angular":71}],73:[function(require,module,exports){ var asn1 = exports; asn1.bignum = require('bn.js'); @@ -54367,7 +54149,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":73,"./asn1/base":75,"./asn1/constants":79,"./asn1/decoders":81,"./asn1/encoders":84,"bn.js":91}],73:[function(require,module,exports){ +},{"./asn1/api":74,"./asn1/base":76,"./asn1/constants":80,"./asn1/decoders":82,"./asn1/encoders":85,"bn.js":92}],74:[function(require,module,exports){ var asn1 = require('../asn1'); var inherits = require('inherits'); @@ -54430,7 +54212,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":72,"inherits":465,"vm":521}],74:[function(require,module,exports){ +},{"../asn1":73,"inherits":467,"vm":523}],75:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -54548,7 +54330,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":75,"buffer":121,"inherits":465}],75:[function(require,module,exports){ +},{"../base":76,"buffer":122,"inherits":467}],76:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -54556,7 +54338,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":74,"./node":76,"./reporter":77}],76:[function(require,module,exports){ +},{"./buffer":75,"./node":77,"./reporter":78}],77:[function(require,module,exports){ var Reporter = require('../base').Reporter; var EncoderBuffer = require('../base').EncoderBuffer; var DecoderBuffer = require('../base').DecoderBuffer; @@ -54622,7 +54404,7 @@ module.exports = Node; var stateProps = [ 'enc', 'parent', 'children', 'tag', 'args', 'reverseArgs', 'choice', 'optional', 'any', 'obj', 'use', 'alteredUse', 'key', 'default', 'explicit', - 'implicit', 'contains' + 'implicit' ]; Node.prototype.clone = function clone() { @@ -54827,17 +54609,17 @@ Node.prototype.contains = function contains(item) { // Decoding // -Node.prototype._decode = function decode(input, options) { +Node.prototype._decode = function decode(input) { var state = this._baseState; // Decode root node if (state.parent === null) - return input.wrapResult(state.children[0]._decode(input, options)); + return input.wrapResult(state.children[0]._decode(input)); var result = state['default']; var present = true; - var prevKey = null; + var prevKey; if (state.key !== null) prevKey = input.enterKey(state.key); @@ -54856,9 +54638,9 @@ Node.prototype._decode = function decode(input, options) { var save = input.save(); try { if (state.choice === null) - this._decodeGeneric(state.tag, input, options); + this._decodeGeneric(state.tag, input); else - this._decodeChoice(input, options); + this._decodeChoice(input); present = true; } catch (e) { present = false; @@ -54886,8 +54668,6 @@ Node.prototype._decode = function decode(input, options) { input = explicit; } - var start = input.offset; - // Unwrap implicit and normal values if (state.use === null && state.choice === null) { if (state.any) @@ -54906,19 +54686,13 @@ Node.prototype._decode = function decode(input, options) { input = body; } - if (options && options.track && state.tag !== null) - options.track(input.path(), start, input.length, 'tagged'); - - if (options && options.track && state.tag !== null) - options.track(input.path(), input.offset, input.length, 'content'); - // Select proper method for tag if (state.any) result = result; else if (state.choice === null) - result = this._decodeGeneric(state.tag, input, options); + result = this._decodeGeneric(state.tag, input); else - result = this._decodeChoice(input, options); + result = this._decodeChoice(input); if (input.isError(result)) return result; @@ -54928,15 +54702,14 @@ Node.prototype._decode = function decode(input, options) { state.children.forEach(function decodeChildren(child) { // NOTE: We are ignoring errors here, to let parser continue with other // parts of encoded data - child._decode(input, options); + child._decode(input); }); } // Decode contained/encoded by schema, only in bit or octet strings if (state.contains && (state.tag === 'octstr' || state.tag === 'bitstr')) { var data = new DecoderBuffer(result); - result = this._getUse(state.contains, input._reporterState.obj) - ._decode(data, options); + result = this._getUse(state.contains, input._reporterState.obj)._decode(data); } } @@ -54947,40 +54720,35 @@ Node.prototype._decode = function decode(input, options) { // Set key if (state.key !== null && (result !== null || present === true)) input.leaveKey(prevKey, state.key, result); - else if (prevKey !== null) - input.exitKey(prevKey); return result; }; -Node.prototype._decodeGeneric = function decodeGeneric(tag, input, options) { +Node.prototype._decodeGeneric = function decodeGeneric(tag, input) { var state = this._baseState; if (tag === 'seq' || tag === 'set') return null; if (tag === 'seqof' || tag === 'setof') - return this._decodeList(input, tag, state.args[0], options); + return this._decodeList(input, tag, state.args[0]); else if (/str$/.test(tag)) - return this._decodeStr(input, tag, options); + return this._decodeStr(input, tag); else if (tag === 'objid' && state.args) - return this._decodeObjid(input, state.args[0], state.args[1], options); + return this._decodeObjid(input, state.args[0], state.args[1]); else if (tag === 'objid') - return this._decodeObjid(input, null, null, options); + return this._decodeObjid(input, null, null); else if (tag === 'gentime' || tag === 'utctime') - return this._decodeTime(input, tag, options); + return this._decodeTime(input, tag); else if (tag === 'null_') - return this._decodeNull(input, options); + return this._decodeNull(input); else if (tag === 'bool') - return this._decodeBool(input, options); + return this._decodeBool(input); else if (tag === 'int' || tag === 'enum') - return this._decodeInt(input, state.args && state.args[0], options); - - if (state.use !== null) { - return this._getUse(state.use, input._reporterState.obj) - ._decode(input, options); - } else { + return this._decodeInt(input, state.args && state.args[0]); + else if (state.use !== null) + return this._getUse(state.use, input._reporterState.obj)._decode(input); + else return input.error('unknown tag: ' + tag); - } }; Node.prototype._getUse = function _getUse(entity, obj) { @@ -54997,7 +54765,7 @@ Node.prototype._getUse = function _getUse(entity, obj) { return state.useDecoder; }; -Node.prototype._decodeChoice = function decodeChoice(input, options) { +Node.prototype._decodeChoice = function decodeChoice(input) { var state = this._baseState; var result = null; var match = false; @@ -55006,7 +54774,7 @@ Node.prototype._decodeChoice = function decodeChoice(input, options) { var save = input.save(); var node = state.choice[key]; try { - var value = node._decode(input, options); + var value = node._decode(input); if (input.isError(value)) return false; @@ -55187,7 +54955,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":75,"minimalistic-assert":472}],77:[function(require,module,exports){ +},{"../base":76,"minimalistic-assert":474}],78:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -55221,24 +54989,14 @@ Reporter.prototype.enterKey = function enterKey(key) { return this._reporterState.path.push(key); }; -Reporter.prototype.exitKey = function exitKey(index) { - var state = this._reporterState; - - state.path = state.path.slice(0, index - 1); -}; - Reporter.prototype.leaveKey = function leaveKey(index, key, value) { var state = this._reporterState; - this.exitKey(index); + state.path = state.path.slice(0, index - 1); if (state.obj !== null) state.obj[key] = value; }; -Reporter.prototype.path = function path() { - return this._reporterState.path.join('/'); -}; - Reporter.prototype.enterObject = function enterObject() { var state = this._reporterState; @@ -55310,7 +55068,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":465}],78:[function(require,module,exports){ +},{"inherits":467}],79:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -55354,7 +55112,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":79}],79:[function(require,module,exports){ +},{"../constants":80}],80:[function(require,module,exports){ var constants = exports; // Helper @@ -55375,7 +55133,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":78}],80:[function(require,module,exports){ +},{"./der":79}],81:[function(require,module,exports){ var inherits = require('inherits'); var asn1 = require('../../asn1'); @@ -55486,15 +55244,14 @@ DERNode.prototype._skipUntilEnd = function skipUntilEnd(buffer, fail) { } }; -DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder, - options) { +DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder) { var result = []; while (!buffer.isEmpty()) { var possibleEnd = this._peekTag(buffer, 'end'); if (buffer.isError(possibleEnd)) return possibleEnd; - var res = decoder.decode(buffer, 'der', options); + var res = decoder.decode(buffer, 'der'); if (buffer.isError(res) && possibleEnd) break; result.push(res); @@ -55699,13 +55456,13 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":72,"inherits":465}],81:[function(require,module,exports){ +},{"../../asn1":73,"inherits":467}],82:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":80,"./pem":82}],82:[function(require,module,exports){ +},{"./der":81,"./pem":83}],83:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -55756,7 +55513,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":80,"buffer":121,"inherits":465}],83:[function(require,module,exports){ +},{"./der":81,"buffer":122,"inherits":467}],84:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -56051,13 +55808,13 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":72,"buffer":121,"inherits":465}],84:[function(require,module,exports){ +},{"../../asn1":73,"buffer":122,"inherits":467}],85:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":83,"./pem":85}],85:[function(require,module,exports){ +},{"./der":84,"./pem":86}],86:[function(require,module,exports){ var inherits = require('inherits'); var DEREncoder = require('./der'); @@ -56080,7 +55837,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":83,"inherits":465}],86:[function(require,module,exports){ +},{"./der":84,"inherits":467}],87:[function(require,module,exports){ // http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8! @@ -56441,7 +56198,7 @@ var objectKeys = Object.keys || function (obj) { return keys; }; -},{"util/":518}],87:[function(require,module,exports){ +},{"util/":520}],88:[function(require,module,exports){ (function (global){ "use strict"; @@ -56476,7 +56233,7 @@ define(String.prototype, "padRight", "".padEnd); [][key] && define(Array, key, Function.call.bind([][key])); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":123,"core-js/shim":416,"regenerator-runtime/runtime":497}],88:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":124,"core-js/shim":418,"regenerator-runtime/runtime":499}],89:[function(require,module,exports){ 'use strict' exports.toByteArray = toByteArray @@ -56587,14 +56344,14 @@ function fromByteArray (uint8) { return parts.join('') } -},{}],89:[function(require,module,exports){ -/*! bignumber.js v2.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ +},{}],90:[function(require,module,exports){ +/*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ ;(function (globalObj) { 'use strict'; /* - bignumber.js v2.4.0 + bignumber.js v2.3.0 A JavaScript library for arbitrary-precision arithmetic. https://github.com/MikeMcl/bignumber.js Copyright (c) 2016 Michael Mclaughlin @@ -56602,7 +56359,7 @@ function fromByteArray (uint8) { */ - var BigNumber, cryptoObj, parseNumeric, + var cryptoObj, parseNumeric, isNumeric = /^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, mathceil = Math.ceil, mathfloor = Math.floor, @@ -59304,17 +59061,13 @@ function fromByteArray (uint8) { // EXPORT - BigNumber = constructorFactory(); - BigNumber.default = BigNumber.BigNumber = BigNumber; - - - // AMD. + // AMD. if ( typeof define == 'function' && define.amd ) { - define( function () { return BigNumber; } ); + define( function () { return constructorFactory(); } ); // Node.js and other environments that support module.exports. } else if ( typeof module != 'undefined' && module.exports ) { - module.exports = BigNumber; + module.exports = constructorFactory(); // Split string stops browserify adding crypto shim. if ( !cryptoObj ) try { cryptoObj = require('cry' + 'pto'); } catch (e) {} @@ -59322,11 +59075,11 @@ function fromByteArray (uint8) { // Browser. } else { if ( !globalObj ) globalObj = typeof self != 'undefined' ? self : Function('return this')(); - globalObj.BigNumber = BigNumber; + globalObj.BigNumber = constructorFactory(); } })(this); -},{}],90:[function(require,module,exports){ +},{}],91:[function(require,module,exports){ (function (Buffer){ // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] @@ -59441,7 +59194,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],91:[function(require,module,exports){ +},{"buffer":122}],92:[function(require,module,exports){ (function (module, exports) { 'use strict'; @@ -59499,12 +59252,8 @@ module.exports = { } BN.isBN = function isBN (num) { - if (num instanceof BN) { - return true; - } - return num !== null && typeof num === 'object' && - num.constructor.wordSize === BN.wordSize && Array.isArray(num.words); + num.constructor.name === 'BN' && Array.isArray(num.words); }; BN.max = function max (left, right) { @@ -61545,10 +61294,6 @@ module.exports = { assert(this.negative === 0, 'imaskn works only with positive numbers'); - if (this.length <= s) { - return this; - } - if (r !== 0) { s++; } @@ -62870,7 +62615,7 @@ module.exports = { }; })(typeof module === 'undefined' || module, this); -},{}],92:[function(require,module,exports){ +},{}],93:[function(require,module,exports){ var r; module.exports = function rand(len) { @@ -62929,9 +62674,9 @@ if (typeof window === 'object') { } } -},{}],93:[function(require,module,exports){ - },{}],94:[function(require,module,exports){ + +},{}],95:[function(require,module,exports){ (function (Buffer){ // based on the aes implimentation in triple sec // https://github.com/keybase/triplesec @@ -63112,7 +62857,7 @@ AES.prototype._doCryptBlock = function (M, keySchedule, SUB_MIX, SBOX) { exports.AES = AES }).call(this,require("buffer").Buffer) -},{"buffer":121}],95:[function(require,module,exports){ +},{"buffer":122}],96:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63213,7 +62958,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"./ghash":99,"buffer":121,"buffer-xor":120,"cipher-base":122,"inherits":465}],96:[function(require,module,exports){ +},{"./aes":95,"./ghash":100,"buffer":122,"buffer-xor":121,"cipher-base":123,"inherits":467}],97:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -63226,7 +62971,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"./decrypter":97,"./encrypter":98,"./modes":100}],97:[function(require,module,exports){ +},{"./decrypter":98,"./encrypter":99,"./modes":101}],98:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63367,7 +63112,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],98:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],99:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63493,7 +63238,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],99:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],100:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -63595,7 +63340,7 @@ function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],100:[function(require,module,exports){ +},{"buffer":122}],101:[function(require,module,exports){ exports['aes-128-ecb'] = { cipher: 'AES', key: 128, @@ -63768,7 +63513,7 @@ exports['aes-256-gcm'] = { type: 'auth' } -},{}],101:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ var xor = require('buffer-xor') exports.encrypt = function (self, block) { @@ -63787,7 +63532,7 @@ exports.decrypt = function (self, block) { return xor(out, pad) } -},{"buffer-xor":120}],102:[function(require,module,exports){ +},{"buffer-xor":121}],103:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63822,7 +63567,7 @@ function encryptStart (self, data, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],103:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],104:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad @@ -63860,7 +63605,7 @@ function shiftIn (buffer, value) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],104:[function(require,module,exports){ +},{"buffer":122}],105:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad = self._cipher.encryptBlock(self._prev) @@ -63879,7 +63624,7 @@ exports.encrypt = function (self, chunk, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],105:[function(require,module,exports){ +},{"buffer":122}],106:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63914,7 +63659,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],106:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],107:[function(require,module,exports){ exports.encrypt = function (self, block) { return self._cipher.encryptBlock(block) } @@ -63922,7 +63667,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block) } -},{}],107:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63942,7 +63687,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],108:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],109:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63971,7 +63716,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"buffer":121,"cipher-base":122,"inherits":465}],109:[function(require,module,exports){ +},{"./aes":95,"buffer":122,"cipher-base":123,"inherits":467}],110:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -64046,7 +63791,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"browserify-aes/browser":96,"browserify-aes/modes":100,"browserify-des":110,"browserify-des/modes":111,"evp_bytestokey":456}],110:[function(require,module,exports){ +},{"browserify-aes/browser":97,"browserify-aes/modes":101,"browserify-des":111,"browserify-des/modes":112,"evp_bytestokey":458}],111:[function(require,module,exports){ (function (Buffer){ var CipherBase = require('cipher-base') var des = require('des.js') @@ -64093,7 +63838,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"cipher-base":122,"des.js":424,"inherits":465}],111:[function(require,module,exports){ +},{"buffer":122,"cipher-base":123,"des.js":426,"inherits":467}],112:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -64119,7 +63864,7 @@ exports['des-ede'] = { iv: 0 } -},{}],112:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); var randomBytes = require('randombytes'); @@ -64163,7 +63908,7 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":91,"buffer":121,"randombytes":486}],113:[function(require,module,exports){ +},{"bn.js":92,"buffer":122,"randombytes":488}],114:[function(require,module,exports){ (function (Buffer){ const Sha3 = require('js-sha3') @@ -64201,7 +63946,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"js-sha3":468}],114:[function(require,module,exports){ +},{"buffer":122,"js-sha3":470}],115:[function(require,module,exports){ (function (Buffer){ 'use strict' exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { @@ -64277,7 +64022,7 @@ exports['RSA-MD5'] = exports.md5WithRSAEncryption = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],115:[function(require,module,exports){ +},{"buffer":122}],116:[function(require,module,exports){ (function (Buffer){ var _algos = require('./algos') var createHash = require('create-hash') @@ -64384,7 +64129,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":114,"./sign":117,"./verify":118,"buffer":121,"create-hash":419,"inherits":465,"stream":514}],116:[function(require,module,exports){ +},{"./algos":115,"./sign":118,"./verify":119,"buffer":122,"create-hash":421,"inherits":467,"stream":516}],117:[function(require,module,exports){ 'use strict' exports['1.3.132.0.10'] = 'secp256k1' @@ -64398,7 +64143,7 @@ exports['1.3.132.0.34'] = 'p384' exports['1.3.132.0.35'] = 'p521' -},{}],117:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') @@ -64587,7 +64332,7 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"browserify-rsa":112,"buffer":121,"create-hmac":422,"elliptic":434,"parse-asn1":476}],118:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"browserify-rsa":113,"buffer":122,"create-hmac":424,"elliptic":436,"parse-asn1":478}],119:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var curves = require('./curves') @@ -64694,7 +64439,7 @@ function checkValue (b, q) { module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"buffer":121,"elliptic":434,"parse-asn1":476}],119:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"buffer":122,"elliptic":436,"parse-asn1":478}],120:[function(require,module,exports){ (function (global){ 'use strict'; @@ -64806,7 +64551,7 @@ exports.allocUnsafeSlow = function allocUnsafeSlow(size) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":121}],120:[function(require,module,exports){ +},{"buffer":122}],121:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -64820,7 +64565,7 @@ module.exports = function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],121:[function(require,module,exports){ +},{"buffer":122}],122:[function(require,module,exports){ (function (global){ /*! * The buffer module from node.js, for the browser. @@ -64876,7 +64621,7 @@ exports.kMaxLength = kMaxLength() function typedArraySupport () { try { var arr = new Uint8Array(1) - arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }} + arr.foo = function () { return 42 } return arr.foo() === 42 && // typed array instances can be augmented typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` @@ -65020,7 +64765,7 @@ function allocUnsafe (that, size) { assertSize(size) that = createBuffer(that, size < 0 ? 0 : checked(size) | 0) if (!Buffer.TYPED_ARRAY_SUPPORT) { - for (var i = 0; i < size; ++i) { + for (var i = 0; i < size; i++) { that[i] = 0 } } @@ -65076,9 +64821,7 @@ function fromArrayBuffer (that, array, byteOffset, length) { throw new RangeError('\'length\' is out of bounds') } - if (byteOffset === undefined && length === undefined) { - array = new Uint8Array(array) - } else if (length === undefined) { + if (length === undefined) { array = new Uint8Array(array, byteOffset) } else { array = new Uint8Array(array, byteOffset, length) @@ -65200,14 +64943,14 @@ Buffer.concat = function concat (list, length) { var i if (length === undefined) { length = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { length += list[i].length } } var buffer = Buffer.allocUnsafe(length) var pos = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { var buf = list[i] if (!Buffer.isBuffer(buf)) { throw new TypeError('"list" argument must be an Array of Buffers') @@ -65239,6 +64982,7 @@ function byteLength (string, encoding) { switch (encoding) { case 'ascii': case 'binary': + // Deprecated case 'raw': case 'raws': return len @@ -65476,16 +65220,15 @@ function arrayIndexOf (arr, val, byteOffset, encoding) { } var foundIndex = -1 - for (var i = byteOffset; i < arrLength; ++i) { - if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + for (var i = 0; byteOffset + i < arrLength; i++) { + if (read(arr, byteOffset + i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { if (foundIndex === -1) foundIndex = i - if (i - foundIndex + 1 === valLength) return foundIndex * indexSize + if (i - foundIndex + 1 === valLength) return (byteOffset + foundIndex) * indexSize } else { if (foundIndex !== -1) i -= i - foundIndex foundIndex = -1 } } - return -1 } @@ -65550,7 +65293,7 @@ function hexWrite (buf, string, offset, length) { if (length > strLen / 2) { length = strLen / 2 } - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { var parsed = parseInt(string.substr(i * 2, 2), 16) if (isNaN(parsed)) return i buf[offset + i] = parsed @@ -65764,7 +65507,7 @@ function asciiSlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i] & 0x7F) } return ret @@ -65774,7 +65517,7 @@ function binarySlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i]) } return ret @@ -65787,7 +65530,7 @@ function hexSlice (buf, start, end) { if (!end || end < 0 || end > len) end = len var out = '' - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { out += toHex(buf[i]) } return out @@ -65830,7 +65573,7 @@ Buffer.prototype.slice = function slice (start, end) { } else { var sliceLen = end - start newBuf = new Buffer(sliceLen, undefined) - for (var i = 0; i < sliceLen; ++i) { + for (var i = 0; i < sliceLen; i++) { newBuf[i] = this[i + start] } } @@ -66057,7 +65800,7 @@ Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { function objectWriteUInt16 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> (littleEndian ? i : 1 - i) * 8 } @@ -66091,7 +65834,7 @@ Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert function objectWriteUInt32 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffffffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff } } @@ -66306,12 +66049,12 @@ Buffer.prototype.copy = function copy (target, targetStart, start, end) { if (this === target && start < targetStart && targetStart < end) { // descending copy from end - for (i = len - 1; i >= 0; --i) { + for (i = len - 1; i >= 0; i--) { target[i + targetStart] = this[i + start] } } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { // ascending copy from start - for (i = 0; i < len; ++i) { + for (i = 0; i < len; i++) { target[i + targetStart] = this[i + start] } } else { @@ -66372,7 +66115,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { var i if (typeof val === 'number') { - for (i = start; i < end; ++i) { + for (i = start; i < end; i++) { this[i] = val } } else { @@ -66380,7 +66123,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { ? val : utf8ToBytes(new Buffer(val, encoding).toString()) var len = bytes.length - for (i = 0; i < end - start; ++i) { + for (i = 0; i < end - start; i++) { this[i + start] = bytes[i % len] } } @@ -66422,7 +66165,7 @@ function utf8ToBytes (string, units) { var leadSurrogate = null var bytes = [] - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { codePoint = string.charCodeAt(i) // is surrogate component @@ -66497,7 +66240,7 @@ function utf8ToBytes (string, units) { function asciiToBytes (str) { var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { // Node's code seems to be doing this and not & 0x7F.. byteArray.push(str.charCodeAt(i) & 0xFF) } @@ -66507,7 +66250,7 @@ function asciiToBytes (str) { function utf16leToBytes (str, units) { var c, hi, lo var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { if ((units -= 2) < 0) break c = str.charCodeAt(i) @@ -66525,7 +66268,7 @@ function base64ToBytes (str) { } function blitBuffer (src, dst, offset, length) { - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { if ((i + offset >= dst.length) || (i >= src.length)) break dst[i + offset] = src[i] } @@ -66537,7 +66280,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":88,"ieee754":463,"isarray":467}],122:[function(require,module,exports){ +},{"base64-js":89,"ieee754":465,"isarray":469}],123:[function(require,module,exports){ (function (Buffer){ var Transform = require('stream').Transform var inherits = require('inherits') @@ -66631,21 +66374,21 @@ CipherBase.prototype._toString = function (value, enc, final) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"inherits":465,"stream":514,"string_decoder":515}],123:[function(require,module,exports){ +},{"buffer":122,"inherits":467,"stream":516,"string_decoder":517}],124:[function(require,module,exports){ require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":144,"../../modules/core.regexp.escape":240}],124:[function(require,module,exports){ +},{"../../modules/_core":145,"../../modules/core.regexp.escape":242}],125:[function(require,module,exports){ module.exports = function(it){ if(typeof it != 'function')throw TypeError(it + ' is not a function!'); return it; }; -},{}],125:[function(require,module,exports){ -var cof = require('./_cof'); -module.exports = function(it, msg){ - if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); - return +it; +},{}],126:[function(require,module,exports){ +var cof = require('./_cof'); +module.exports = function(it, msg){ + if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); + return +it; }; -},{"./_cof":139}],126:[function(require,module,exports){ +},{"./_cof":140}],127:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables') , ArrayProto = Array.prototype; @@ -66653,19 +66396,19 @@ if(ArrayProto[UNSCOPABLES] == undefined)require('./_hide')(ArrayProto, UNSCOPABL module.exports = function(key){ ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":161,"./_wks":238}],127:[function(require,module,exports){ +},{"./_hide":162,"./_wks":239}],128:[function(require,module,exports){ module.exports = function(it, Constructor, name, forbiddenField){ if(!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)){ throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],128:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function(it){ if(!isObject(it))throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":170}],129:[function(require,module,exports){ +},{"./_is-object":171}],130:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66692,7 +66435,7 @@ module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, from += inc; } return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],130:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],131:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66708,7 +66451,7 @@ module.exports = function fill(value /*, start = 0, end = @length */){ while(endPos > index)O[index++] = value; return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],131:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],132:[function(require,module,exports){ var forOf = require('./_for-of'); module.exports = function(iter, ITERATOR){ @@ -66717,7 +66460,7 @@ module.exports = function(iter, ITERATOR){ return result; }; -},{"./_for-of":158}],132:[function(require,module,exports){ +},{"./_for-of":159}],133:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject') @@ -66739,7 +66482,7 @@ module.exports = function(IS_INCLUDES){ } return !IS_INCLUDES && -1; }; }; -},{"./_to-index":226,"./_to-iobject":228,"./_to-length":229}],133:[function(require,module,exports){ +},{"./_to-index":227,"./_to-iobject":229,"./_to-length":230}],134:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -66784,60 +66527,60 @@ module.exports = function(TYPE, $create){ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result; }; }; -},{"./_array-species-create":136,"./_ctx":146,"./_iobject":166,"./_to-length":229,"./_to-object":230}],134:[function(require,module,exports){ -var aFunction = require('./_a-function') - , toObject = require('./_to-object') - , IObject = require('./_iobject') - , toLength = require('./_to-length'); - -module.exports = function(that, callbackfn, aLen, memo, isRight){ - aFunction(callbackfn); - var O = toObject(that) - , self = IObject(O) - , length = toLength(O.length) - , index = isRight ? length - 1 : 0 - , i = isRight ? -1 : 1; - if(aLen < 2)for(;;){ - if(index in self){ - memo = self[index]; - index += i; - break; - } - index += i; - if(isRight ? index < 0 : length <= index){ - throw TypeError('Reduce of empty array with no initial value'); - } - } - for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ - memo = callbackfn(memo, self[index], index, O); - } - return memo; +},{"./_array-species-create":137,"./_ctx":147,"./_iobject":167,"./_to-length":230,"./_to-object":231}],135:[function(require,module,exports){ +var aFunction = require('./_a-function') + , toObject = require('./_to-object') + , IObject = require('./_iobject') + , toLength = require('./_to-length'); + +module.exports = function(that, callbackfn, aLen, memo, isRight){ + aFunction(callbackfn); + var O = toObject(that) + , self = IObject(O) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(aLen < 2)for(;;){ + if(index in self){ + memo = self[index]; + index += i; + break; + } + index += i; + if(isRight ? index < 0 : length <= index){ + throw TypeError('Reduce of empty array with no initial value'); + } + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ + memo = callbackfn(memo, self[index], index, O); + } + return memo; +}; +},{"./_a-function":125,"./_iobject":167,"./_to-length":230,"./_to-object":231}],136:[function(require,module,exports){ +var isObject = require('./_is-object') + , isArray = require('./_is-array') + , SPECIES = require('./_wks')('species'); + +module.exports = function(original){ + var C; + if(isArray(original)){ + C = original.constructor; + // cross-realm fallback + if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; + if(isObject(C)){ + C = C[SPECIES]; + if(C === null)C = undefined; + } + } return C === undefined ? Array : C; }; -},{"./_a-function":124,"./_iobject":166,"./_to-length":229,"./_to-object":230}],135:[function(require,module,exports){ -var isObject = require('./_is-object') - , isArray = require('./_is-array') - , SPECIES = require('./_wks')('species'); - -module.exports = function(original){ - var C; - if(isArray(original)){ - C = original.constructor; - // cross-realm fallback - if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; - if(isObject(C)){ - C = C[SPECIES]; - if(C === null)C = undefined; - } - } return C === undefined ? Array : C; -}; -},{"./_is-array":168,"./_is-object":170,"./_wks":238}],136:[function(require,module,exports){ +},{"./_is-array":169,"./_is-object":171,"./_wks":239}],137:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); module.exports = function(original, length){ return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":135}],137:[function(require,module,exports){ +},{"./_array-species-constructor":136}],138:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function') , isObject = require('./_is-object') @@ -66862,7 +66605,7 @@ module.exports = Function.bind || function bind(that /*, args... */){ if(isObject(fn.prototype))bound.prototype = fn.prototype; return bound; }; -},{"./_a-function":124,"./_invoke":165,"./_is-object":170}],138:[function(require,module,exports){ +},{"./_a-function":125,"./_invoke":166,"./_is-object":171}],139:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof') , TAG = require('./_wks')('toStringTag') @@ -66886,16 +66629,17 @@ module.exports = function(it){ // ES3 arguments fallback : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":139,"./_wks":238}],139:[function(require,module,exports){ +},{"./_cof":140,"./_wks":239}],140:[function(require,module,exports){ var toString = {}.toString; module.exports = function(it){ return toString.call(it).slice(8, -1); }; -},{}],140:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f , create = require('./_object-create') + , hide = require('./_hide') , redefineAll = require('./_redefine-all') , ctx = require('./_ctx') , anInstance = require('./_an-instance') @@ -67035,7 +66779,7 @@ module.exports = { setSpecies(NAME); } }; -},{"./_an-instance":127,"./_ctx":146,"./_defined":148,"./_descriptors":149,"./_for-of":158,"./_iter-define":174,"./_iter-step":176,"./_meta":183,"./_object-create":187,"./_object-dp":188,"./_redefine-all":207,"./_set-species":212}],141:[function(require,module,exports){ +},{"./_an-instance":128,"./_ctx":147,"./_defined":149,"./_descriptors":150,"./_for-of":159,"./_hide":162,"./_iter-define":175,"./_iter-step":177,"./_meta":184,"./_object-create":188,"./_object-dp":189,"./_redefine-all":208,"./_set-species":213}],142:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var classof = require('./_classof') , from = require('./_array-from-iterable'); @@ -67045,7 +66789,7 @@ module.exports = function(NAME){ return from(this); }; }; -},{"./_array-from-iterable":131,"./_classof":138}],142:[function(require,module,exports){ +},{"./_array-from-iterable":132,"./_classof":139}],143:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all') , getWeak = require('./_meta').getWeak @@ -67129,7 +66873,7 @@ module.exports = { }, ufstore: uncaughtFrozenStore }; -},{"./_an-instance":127,"./_an-object":128,"./_array-methods":133,"./_for-of":158,"./_has":160,"./_is-object":170,"./_meta":183,"./_redefine-all":207}],143:[function(require,module,exports){ +},{"./_an-instance":128,"./_an-object":129,"./_array-methods":134,"./_for-of":159,"./_has":161,"./_is-object":171,"./_meta":184,"./_redefine-all":208}],144:[function(require,module,exports){ 'use strict'; var global = require('./_global') , $export = require('./_export') @@ -67215,19 +66959,19 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){ return C; }; -},{"./_an-instance":127,"./_export":153,"./_fails":155,"./_for-of":158,"./_global":159,"./_inherit-if-required":164,"./_is-object":170,"./_iter-detect":175,"./_meta":183,"./_redefine":208,"./_redefine-all":207,"./_set-to-string-tag":213}],144:[function(require,module,exports){ +},{"./_an-instance":128,"./_export":154,"./_fails":156,"./_for-of":159,"./_global":160,"./_inherit-if-required":165,"./_is-object":171,"./_iter-detect":176,"./_meta":184,"./_redefine":209,"./_redefine-all":208,"./_set-to-string-tag":214}],145:[function(require,module,exports){ var core = module.exports = {version: '2.4.0'}; if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef -},{}],145:[function(require,module,exports){ -'use strict'; -var $defineProperty = require('./_object-dp') - , createDesc = require('./_property-desc'); - -module.exports = function(object, index, value){ - if(index in object)$defineProperty.f(object, index, createDesc(0, value)); - else object[index] = value; +},{}],146:[function(require,module,exports){ +'use strict'; +var $defineProperty = require('./_object-dp') + , createDesc = require('./_property-desc'); + +module.exports = function(object, index, value){ + if(index in object)$defineProperty.f(object, index, createDesc(0, value)); + else object[index] = value; }; -},{"./_object-dp":188,"./_property-desc":206}],146:[function(require,module,exports){ +},{"./_object-dp":189,"./_property-desc":207}],147:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function(fn, that, length){ @@ -67248,28 +66992,28 @@ module.exports = function(fn, that, length){ return fn.apply(that, arguments); }; }; -},{"./_a-function":124}],147:[function(require,module,exports){ -'use strict'; -var anObject = require('./_an-object') - , toPrimitive = require('./_to-primitive') - , NUMBER = 'number'; - -module.exports = function(hint){ - if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); - return toPrimitive(anObject(this), hint != NUMBER); +},{"./_a-function":125}],148:[function(require,module,exports){ +'use strict'; +var anObject = require('./_an-object') + , toPrimitive = require('./_to-primitive') + , NUMBER = 'number'; + +module.exports = function(hint){ + if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); + return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":128,"./_to-primitive":231}],148:[function(require,module,exports){ +},{"./_an-object":129,"./_to-primitive":232}],149:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function(it){ if(it == undefined)throw TypeError("Can't call method on " + it); return it; }; -},{}],149:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function(){ return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_fails":155}],150:[function(require,module,exports){ +},{"./_fails":156}],151:[function(require,module,exports){ var isObject = require('./_is-object') , document = require('./_global').document // in old IE typeof document.createElement is 'object' @@ -67277,12 +67021,12 @@ var isObject = require('./_is-object') module.exports = function(it){ return is ? document.createElement(it) : {}; }; -},{"./_global":159,"./_is-object":170}],151:[function(require,module,exports){ -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' +},{"./_global":160,"./_is-object":171}],152:[function(require,module,exports){ +// IE 8- don't enum bug keys +module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],152:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys') , gOPS = require('./_object-gops') @@ -67298,7 +67042,7 @@ module.exports = function(it){ while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key); } return result; }; -},{"./_object-gops":194,"./_object-keys":197,"./_object-pie":198}],153:[function(require,module,exports){ +},{"./_object-gops":195,"./_object-keys":198,"./_object-pie":199}],154:[function(require,module,exports){ var global = require('./_global') , core = require('./_core') , hide = require('./_hide') @@ -67342,7 +67086,7 @@ $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":144,"./_ctx":146,"./_global":159,"./_hide":161,"./_redefine":208}],154:[function(require,module,exports){ +},{"./_core":145,"./_ctx":147,"./_global":160,"./_hide":162,"./_redefine":209}],155:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function(KEY){ var re = /./; @@ -67355,7 +67099,7 @@ module.exports = function(KEY){ } catch(f){ /* empty */ } } return true; }; -},{"./_wks":238}],155:[function(require,module,exports){ +},{"./_wks":239}],156:[function(require,module,exports){ module.exports = function(exec){ try { return !!exec(); @@ -67363,7 +67107,7 @@ module.exports = function(exec){ return true; } }; -},{}],156:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ 'use strict'; var hide = require('./_hide') , redefine = require('./_redefine') @@ -67392,7 +67136,7 @@ module.exports = function(KEY, length, exec){ ); } }; -},{"./_defined":148,"./_fails":155,"./_hide":161,"./_redefine":208,"./_wks":238}],157:[function(require,module,exports){ +},{"./_defined":149,"./_fails":156,"./_hide":162,"./_redefine":209,"./_wks":239}],158:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -67406,7 +67150,7 @@ module.exports = function(){ if(that.sticky) result += 'y'; return result; }; -},{"./_an-object":128}],158:[function(require,module,exports){ +},{"./_an-object":129}],159:[function(require,module,exports){ var ctx = require('./_ctx') , call = require('./_iter-call') , isArrayIter = require('./_is-array-iter') @@ -67432,17 +67176,17 @@ var exports = module.exports = function(iterable, entries, fn, that, ITERATOR){ }; exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":128,"./_ctx":146,"./_is-array-iter":167,"./_iter-call":172,"./_to-length":229,"./core.get-iterator-method":239}],159:[function(require,module,exports){ +},{"./_an-object":129,"./_ctx":147,"./_is-array-iter":168,"./_iter-call":173,"./_to-length":230,"./core.get-iterator-method":240}],160:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef -},{}],160:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function(it, key){ return hasOwnProperty.call(it, key); }; -},{}],161:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ var dP = require('./_object-dp') , createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function(object, key, value){ @@ -67451,22 +67195,22 @@ module.exports = require('./_descriptors') ? function(object, key, value){ object[key] = value; return object; }; -},{"./_descriptors":149,"./_object-dp":188,"./_property-desc":206}],162:[function(require,module,exports){ +},{"./_descriptors":150,"./_object-dp":189,"./_property-desc":207}],163:[function(require,module,exports){ module.exports = require('./_global').document && document.documentElement; -},{"./_global":159}],163:[function(require,module,exports){ -module.exports = !require('./_descriptors') && !require('./_fails')(function(){ - return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; +},{"./_global":160}],164:[function(require,module,exports){ +module.exports = !require('./_descriptors') && !require('./_fails')(function(){ + return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_descriptors":149,"./_dom-create":150,"./_fails":155}],164:[function(require,module,exports){ -var isObject = require('./_is-object') - , setPrototypeOf = require('./_set-proto').set; -module.exports = function(that, target, C){ - var P, S = target.constructor; - if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ - setPrototypeOf(that, P); - } return that; -}; -},{"./_is-object":170,"./_set-proto":211}],165:[function(require,module,exports){ +},{"./_descriptors":150,"./_dom-create":151,"./_fails":156}],165:[function(require,module,exports){ +var isObject = require('./_is-object') + , setPrototypeOf = require('./_set-proto').set; +module.exports = function(that, target, C){ + var P, S = target.constructor; + if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ + setPrototypeOf(that, P); + } return that; +}; +},{"./_is-object":171,"./_set-proto":212}],166:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function(fn, args, that){ var un = that === undefined; @@ -67483,13 +67227,13 @@ module.exports = function(fn, args, that){ : fn.call(that, args[0], args[1], args[2], args[3]); } return fn.apply(that, args); }; -},{}],166:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":139}],167:[function(require,module,exports){ +},{"./_cof":140}],168:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators') , ITERATOR = require('./_wks')('iterator') @@ -67498,24 +67242,24 @@ var Iterators = require('./_iterators') module.exports = function(it){ return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":177,"./_wks":238}],168:[function(require,module,exports){ +},{"./_iterators":178,"./_wks":239}],169:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg){ return cof(arg) == 'Array'; }; -},{"./_cof":139}],169:[function(require,module,exports){ +},{"./_cof":140}],170:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object') , floor = Math.floor; module.exports = function isInteger(it){ return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":170}],170:[function(require,module,exports){ +},{"./_is-object":171}],171:[function(require,module,exports){ module.exports = function(it){ return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],171:[function(require,module,exports){ +},{}],172:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object') , cof = require('./_cof') @@ -67524,7 +67268,7 @@ module.exports = function(it){ var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":139,"./_is-object":170,"./_wks":238}],172:[function(require,module,exports){ +},{"./_cof":140,"./_is-object":171,"./_wks":239}],173:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function(iterator, fn, value, entries){ @@ -67537,7 +67281,7 @@ module.exports = function(iterator, fn, value, entries){ throw e; } }; -},{"./_an-object":128}],173:[function(require,module,exports){ +},{"./_an-object":129}],174:[function(require,module,exports){ 'use strict'; var create = require('./_object-create') , descriptor = require('./_property-desc') @@ -67551,7 +67295,7 @@ module.exports = function(Constructor, NAME, next){ Constructor.prototype = create(IteratorPrototype, {next: descriptor(1, next)}); setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":161,"./_object-create":187,"./_property-desc":206,"./_set-to-string-tag":213,"./_wks":238}],174:[function(require,module,exports){ +},{"./_hide":162,"./_object-create":188,"./_property-desc":207,"./_set-to-string-tag":214,"./_wks":239}],175:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library') , $export = require('./_export') @@ -67622,7 +67366,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED } return methods; }; -},{"./_export":153,"./_has":160,"./_hide":161,"./_iter-create":173,"./_iterators":177,"./_library":179,"./_object-gpo":195,"./_redefine":208,"./_set-to-string-tag":213,"./_wks":238}],175:[function(require,module,exports){ +},{"./_export":154,"./_has":161,"./_hide":162,"./_iter-create":174,"./_iterators":178,"./_library":180,"./_object-gpo":196,"./_redefine":209,"./_set-to-string-tag":214,"./_wks":239}],176:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator') , SAFE_CLOSING = false; @@ -67644,13 +67388,13 @@ module.exports = function(exec, skipClosing){ } catch(e){ /* empty */ } return safe; }; -},{"./_wks":238}],176:[function(require,module,exports){ +},{"./_wks":239}],177:[function(require,module,exports){ module.exports = function(done, value){ return {value: value, done: !!done}; }; -},{}],177:[function(require,module,exports){ -module.exports = {}; },{}],178:[function(require,module,exports){ +module.exports = {}; +},{}],179:[function(require,module,exports){ var getKeys = require('./_object-keys') , toIObject = require('./_to-iobject'); module.exports = function(object, el){ @@ -67661,9 +67405,9 @@ module.exports = function(object, el){ , key; while(length > index)if(O[key = keys[index++]] === el)return key; }; -},{"./_object-keys":197,"./_to-iobject":228}],179:[function(require,module,exports){ +},{"./_object-keys":198,"./_to-iobject":229}],180:[function(require,module,exports){ module.exports = false; -},{}],180:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -67674,17 +67418,17 @@ module.exports = (!$expm1 ) ? function expm1(x){ return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],181:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x){ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],182:[function(require,module,exports){ +},{}],183:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x){ return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],183:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ var META = require('./_uid')('meta') , isObject = require('./_is-object') , has = require('./_has') @@ -67738,7 +67482,7 @@ var meta = module.exports = { getWeak: getWeak, onFreeze: onFreeze }; -},{"./_fails":155,"./_has":160,"./_is-object":170,"./_object-dp":188,"./_uid":235}],184:[function(require,module,exports){ +},{"./_fails":156,"./_has":161,"./_is-object":171,"./_object-dp":189,"./_uid":236}],185:[function(require,module,exports){ var Map = require('./es6.map') , $export = require('./_export') , shared = require('./_shared')('metadata') @@ -67790,7 +67534,7 @@ module.exports = { key: toMetaKey, exp: exp }; -},{"./_export":153,"./_shared":215,"./es6.map":270,"./es6.weak-map":376}],185:[function(require,module,exports){ +},{"./_export":154,"./_shared":216,"./es6.map":272,"./es6.weak-map":378}],186:[function(require,module,exports){ var global = require('./_global') , macrotask = require('./_task').set , Observer = global.MutationObserver || global.WebKitMutationObserver @@ -67859,7 +67603,7 @@ module.exports = function(){ } last = task; }; }; -},{"./_cof":139,"./_global":159,"./_task":225}],186:[function(require,module,exports){ +},{"./_cof":140,"./_global":160,"./_task":226}],187:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys') @@ -67893,50 +67637,48 @@ module.exports = !$assign || require('./_fails')(function(){ while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key]; } return T; } : $assign; -},{"./_fails":155,"./_iobject":166,"./_object-gops":194,"./_object-keys":197,"./_object-pie":198,"./_to-object":230}],187:[function(require,module,exports){ -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = require('./_an-object') - , dPs = require('./_object-dps') - , enumBugKeys = require('./_enum-bug-keys') - , IE_PROTO = require('./_shared-key')('IE_PROTO') - , Empty = function(){ /* empty */ } - , PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function(){ - // Thrash, waste and sodomy: IE GC bug - var iframe = require('./_dom-create')('iframe') - , i = enumBugKeys.length - , lt = '<' - , gt = '>' - , iframeDocument; - iframe.style.display = 'none'; - require('./_html').appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while(i--)delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties){ - var result; - if(O !== null){ - Empty[PROTOTYPE] = anObject(O); - result = new Empty; - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - -},{"./_an-object":128,"./_dom-create":150,"./_enum-bug-keys":151,"./_html":162,"./_object-dps":189,"./_shared-key":214}],188:[function(require,module,exports){ +},{"./_fails":156,"./_iobject":167,"./_object-gops":195,"./_object-keys":198,"./_object-pie":199,"./_to-object":231}],188:[function(require,module,exports){ +// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) +var anObject = require('./_an-object') + , dPs = require('./_object-dps') + , enumBugKeys = require('./_enum-bug-keys') + , IE_PROTO = require('./_shared-key')('IE_PROTO') + , Empty = function(){ /* empty */ } + , PROTOTYPE = 'prototype'; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var createDict = function(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = require('./_dom-create')('iframe') + , i = enumBugKeys.length + , gt = '>' + , iframeDocument; + iframe.style.display = 'none'; + require('./_html').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(' - - - - - - - - - - - - - - - - - - - - - - - - -
- -
Make sure you have external backups of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, not a way to back them up.
-
-
-
- My Ether Wallet -
- Open Source JavaScript Client-Side Ether Wallet Chrome Extension - - · v3.0 · - - {{curLang}} - - -
-
-
- - - -
- - - -
- -
- -
- - -
- - -

Your Wallets

- - - - - - - - - - - - - - - - - - - - - - - - - - -
WalletBalanceEditViewRemove
{{$index+1}}
- {{twallet.nick}}
- {{twallet.addr}} -
- {{twallet.balance }} ETH -
- {{token.getBalance()}} {{token.getSymbol()}}    -
- {{twallet.btc }} BTC    $ {{twallet.usd }} USD    € {{twallet.eur }} EUR -
- - - - - -
- - - - -
-

Your Watch-Only Accounts

- - - - - - - - - - - - - - - - - - - - - - -
WalletBalanceRemove
{{$index+1}}
- {{twallet.nick}} -
- {{twallet.addr}} -
- {{twallet.balance | number:4 }} ETH
- {{token.getBalance() }} {{token.getSymbol()}}    -
- {{twallet.btc }} BTC    $ {{twallet.usd }} USD    {{twallet.eur }} EUR -
-
- - - - -
-
- -
-

Viewing Wallet: {{viewWallet.nick}}

-
- -
-
**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the help page for instructions.
-
- -
-
-
- - -
-
-
-
-
-
- - -
-
-
-

Your Address:

-
-
-
-

Private Key (unencrypted):

-
-
-
-
- - -
- -
- - DOWNLOAD -
- -
- - Print -
- -
- - DOWNLOAD -
- -
Account Balance:
- - -
Equivalent Values:
- - -
See Transaction History:
- - -
-
- - - - - - - - - - - - - - - - - - -
- - - -
-

Add Wallet

- -
- -
-

What would you like to do?

-
- -
-
- -
-
- -
-
- -
-
- -
- - -
-

Generate New Wallet:

- -
- - -
-
- -
- - -
-
-
-
- - - -
-

Select Your Wallet File:

- -
-

Your file is encrypted. Please enter the password:

- -
-
- - -
-

Paste / type your private key:

-
- -
-
-

Your file is encrypted. Please enter the password:

- -
-
- - -
-

Add an Account to Watch:

-

You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.

-
- - -
-
- - -
-
-
-
- - - -
- -
-
- - -
- -

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
- - - - -
-

Add Wallet

-
- - -
-
- -
- - -
-
- -
-
-
- -
- - - - -
- - - -
- -
- +- - -

Send Ether

- -
-
- -

If you want to send Tokens, please use the "Send Token" page instead.

- - - -
-
- - - -
-
- - -
- -

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
-

MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?

- DONATE -
THANK YOU!!!
-
-
- - - - -
- - -
If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.
-
- -

Send Transaction

- -
- - -
- -
-
-
- -
- - Send Entire Balance - -
- -
- -
- -
- - -
- -

+ Advanced: Add More Gas or Data

-
-
-
- - -
-
- - -
-
-
- -
- - - -
-
-
- -
- - - - -
- - - -
- -
-

A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.

-
- - - - - - - - - - -
-
-
- - - - -
- -

Generate & Send Offline Transaction

- -

Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.

- -
- - -
-

Step 1: Generate Information (Online Computer)

-
- -

Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.

- -
-
-
-
-
- -
-
- - -
-
- - -
-
-
- - - -
-
-

Step 2: Generate Transaction (Offline Computer)

-
- - -
-
-
-
-
-
- - -
- - - -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- - -
-
-
-
-
-
- - - -
-
-

Step 3: Send / Publish Transaction (Online Computer)

-

Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.

-
- - -
- -
-
- - - - - - -
- - - - -
- -
-
- +- - -

Send Tokens

- -
-
- - - - -
-
- - - - - -
-
- - -
- -

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Token Balances:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
-

MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?

- DONATE -
THANK YOU!!!
-
- -
- - - -
- -
- -

Send Tokens

- -
- - -
-
- -
-
-
- -
- - - - -
- - -
- -
-

[Check out Ethplorer.io](https://ethplorer.io/) if you need help finding symbol / decimal.

-
- - -
-
- - -
-
- - -
-
-
Save
-
-
-
- -
- - -
- -
- - - -
-
-
- -
- - - - -
- - - -
- -
- -
- - - - - - -
- -
- - - - -
- - -
-
- +- - -

Withdraw DAO

- -
-
- -

Use this tab to Withdraw your DAO Tokens for ETH & ETC. If you wish to send DAO, please use the Send Tokens Tab.


- - - -
-
- - - - -
-
- - -
-

Account Information:

- -
- -
Account Address:
- - -
Account Balance:
- - -
Equivalent Values:
- - -
Transaction History:
- -
- - - - - -
- - - - - -
- -

Withdraw DAO for ETC

- -
- - -
-
- -
-
-
- - -
- -
- - % -
- - -
- -

- -

If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

-
- - - - - -
-

Withdraw DAO for ETH

-
- - Withdraw DAO for ETH - -

Yes. Just push the big red button. It's that easy.

-
-
-
-


-

If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

-
- - -
- - - - - - - - - - - - - - -
- - -
- - - - -
- -
-
- +- - -

Claim DGD

- -
-
- -

Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.

- - - -
-
- - - -
-
- - -
-

Account Information:

-
- -
Account Address:
- - -
Account Balance:
- - -
DGD Crowdsale Information:
- - -
Equivalent Values:
- - -
Transaction History:
- - -
- - - - - -
- - -
-

Claim Your DGD Tokens

-
-
- -
-
-
- -
-
-
- -
-
-
- -
- -
- - - -
- -
- - - - -
- - - -
- -
- - - - - -
- -
- - - - -
- -

Deploy Contract

- -
- -
- -
-

Byte Code:

- -
- - -
-

Gas:

- -
- - -
-
- - -

-
-
- - - -
- -
-

Raw Transaction

- -
- - -
-

Signed Transaction

- -
-
- - - - -
- - - - - - - - -
-
-
- - - - -
- - -
If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.
-
- -

Help

- -

Do you see something missing? Have another question? Get in touch with us, and we will not only answer your question, we will update this page to be more useful to people in the future!

- - -
-
- +- -

Some reminders

-
-
-
    -
  • **Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but we are not responsible for the lost Ether.
  • -
  • MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.
  • -
  • If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!
  • -
-
-
- - - -
-
- +- -

0. I'm new. What do I do?

-
-
-

MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.

-
    -
  1. Create a new wallet.
  2. -
  3. Back the wallet up.
  4. -
  5. Verify you have access to this new wallet and have correctly saved all necessary information.
  6. -
  7. Transfer Ether to this new wallet.
  8. -
-
-
- - - -
-
- +- -

1. How do I create a new wallet?

-
-
-
    - - -
  1. Go to the "Add Wallet" page & select "Generate New Wallet"
  2. - -
  3. Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.
  4. -
  5. Click "GENERATE".
  6. -
  7. Your wallet has now been generated.
  8. -
-
-
- - - -
-
- +- -

2a. How do I save/backup my wallet?

-
-
-

You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.

-
    -
  1. Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.
  2. -
  3. Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:
  4. - -
      -
    • Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format): This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.
    • -
    • JSON File (unencrypted): This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.
    • -
    • Private Key (unencrypted): This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.
    • -
    - -
  5. Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.
  6. -
  7. Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.
  8. -
  9. Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).
  10. -
-
-
- - - - - - - -
-
- +- -

3. How do I verify I have access to my new wallet?

-
-
-

**Before you send any Ether to your new wallet**, you should ensure you have access to it.

-
    - - -
  1. Navigate to the MyEtherWallet.com "View Wallet Info" page.
  2. - -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. If the wallet is encrypted, a text box will automatically appear. Enter the password.
  6. -
  7. Click the "Unlock Wallet" button.
  8. -
  9. Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.
  10. -
  11. If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.
  12. -
-
-
- - - - - - - - -
-
- +- -

4. How do I send Ether using MyEtherWallet CX?

-
-
-

First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.

-

QuickSend:

-
    -
  1. Click the Chrome Extension Icon.
  2. -
  3. Click the "QuickSend" button.
  4. -
  5. Select the wallet you wish to send from.
  6. -
  7. Enter the address you would like to send to in the "To Address:" field.
  8. -
  9. Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.
  10. -
  11. Click "Send Transaction".
  12. -
  13. Verify the address and the amount you are sending is correct.
  14. -
  15. Enter the password for that wallet.
  16. -
  17. Click "Send Transaction."
  18. -
-

Using "Send Ether" Page:

-
    -
  1. Navigate to the "Send Ether" page.
  2. -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. If the wallet is encrypted, a text box will automatically appear. Enter the password.
  6. -
  7. Click the "Unlock Wallet" button.
  8. -
  9. Enter the address you would like to send to in the "To Address:" field.
  10. -
  11. Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.
  12. -
  13. Click "Generate Transaction" Button.
  14. -
  15. A couple more fields will appear. This is your browser generating the transaction.
  16. -
  17. Click the blue "Send Transaction" button below that.
  18. -
  19. A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.
  20. -
  21. The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.
  22. -
-
-
- - - - - - - - - -
-
- +- -

5. How can I install this extension from the repo instead of the Chrome Store?

-
-
-
    -
  • Go to our github and find the most recent Chrome Extension relase: https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases.
  • -
  • Scroll to the very bottom and right click on the latest release. Click "save link as".
  • -
  • Unzip it.
  • -
  • Go to Google Chrome and find you settings (in the menu in the upper right).
  • -
  • Click "Extensions" on the left.
  • -
  • Check the "Developer Mode" button at the top of that page.
  • -
  • Click the "Load unpacked extension..." button.
  • -
  • Navigate to the now-unzipped folder that you downloaded earlier. Click "select".
  • -
  • The extension should now show up in your extensions and in your Chrome Extension bar.
  • -
-
-
- - - - -
-
- +- -

6. How do I split my ETH / ETC?

-
-
-

When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.

-

You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.

-

Even more information about wallets and reply attacks can be found here

-
    -
  1. Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).
  2. -
  3. Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).
  4. -
  5. Back up these new wallets and verify you can access them. See #2a and #3 above.
  6. -
  7. Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.
  8. -
  9. Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com
  10. -
  11. Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.
  12. -
  13. Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.
  14. -
  15. Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field.
  16. -
  17. Go to classicetherwallet.com and paste that ETC TX into classicetherwallet.com's offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.
  18. -
  19. If everything receives correctly and sends correctly then you are golden.
  20. -
  21. Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".
  22. -
  23. Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks.
  24. -
-
-
- - - -
-
- +- -

7. How do I send Tokens & add custom tokens?

-
-
-

[Check out Ethplorer.io](https://ethplorer.io/) if you need help finding symbol / decimal.

-
    -
  1. Navigate to the "Send Token" page.
  2. -
  3. Unlock your wallet.
  4. -
  5. Enter the address you would like to send to in the "To Address:" field.
  6. -
  7. Enter the amount you would like to send.
  8. -
  9. Select which token you would like to send.
  10. -
  11. If you do not see the token listed:
  12. -
      -
    1. Click "Custom".
    2. -
    3. Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.
    4. -
    5. Click "Save".
    6. -
    7. You can now send that token as well as see it's balance in the sidebar.
    8. -
    -
  13. Click "Generate Transaction".
  14. -
  15. A couple more fields will appear. This is your browser generating the transaction.
  16. -
  17. Click the blue "Send Transaction" button below that.
  18. -
  19. A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.
  20. -
  21. The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.
  22. -
-
-
- - - - - - - - -
-
- +- -

8. What happens if MyEtherWallet CX disappears?

-
-
-

First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it's all saved on your own computer.

-

That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.

-

If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.

-
-
- - - - -
-
- +- -

9. Is using the send transaction offline?

-
-
-

No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.

-
-
- - - - -
-
- +- -

10. How do I make an offline transaction?

-
-
-
    -
  1. Navigate to the "Offline Transaction" page via your online computer.
  2. -
  3. Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.
  4. -
  5. Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.
  6. -
  7. Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.
  8. -
  9. Enter the "NONCE" as it was displayed to you on your online computer in step #1.
  10. -
  11. The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.
  12. -
  13. If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.
  14. -
  15. Select your wallet file -or- your private key and unlock your wallet.
  16. -
  17. Press the "GENERATE SIGNED TRANSACTION" button.
  18. -
  19. The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer.
  20. -
  21. On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.
  22. -
-
-
- - - - -
-
- +- -

11. How do I send to a contract?

-
-
-

Sending to a contract often requires you to include data or additional gas or both.

-
    -
  1. Navigate to the "Send Ether" page.
  2. -
  3. Select your wallet file -or- your private key and unlock your wallet.
  4. -
  5. Enter a "To Address" and "Amount to Send"
  6. -
  7. Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.
  8. -
-
-
- - - - -
-
- +- -

12. How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?

-
-
-

Using an Geth/Mist JSON file from MyEtherWallet v2+....

-
    - - -
  1. Go to the "My Wallets" page.
  2. -
  3. Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet.
  4. - -
  5. Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.
  6. -
  7. Open the Ethereum Wallet application.
  8. -
  9. In the menu bar, go "Accounts" -> "Backup" -> "Accounts"
  10. -
  11. This will open your keystore folder. Copy the file you just downloaded (UTC--2016-04-14........) into that keystore folder.
  12. -
  13. Your account should show up immediately under "Accounts."
  14. -
- -

Using your unencrypted private key...

-
    -
  1. If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.
  2. -
  3. Select your wallet file -or- enter/paste your private key to unlock your wallet.
  4. -
  5. Copy Your Private Key (unencrypted).
  6. -
  7. If you are on a Mac:
  8. -
      -
    • Open Text Edit and paste this private key.
    • -
    • Go to the menu bar and click "Format" -> "Make Plain Text".
    • -
    • Save this file to your desktop as nothing_special_delete_me.txt. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.
    • -
    • Open terminal and run the following command: geth account import ~/Desktop/nothing_special_delete_me.txt
    • -
    • This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don't forget it.
    • -
    • After successful import, delete nothing_special_delete_me.txt
    • -
    • The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".
    • -
    -
  9. If you are on a PC:
  10. -
      -
    • Open Notepad & paste the private key
    • -
    • Save the file as nothing_special_delete_me.txt at C:\
    • -
    • Run the command, geth account import C:\nothing_special_delete_me.txt
    • -
    • This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don't forget it.
    • -
    • After successful import, delete nothing_special_delete_me.txt
    • -
    • The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".
    • -
    -
-
-
- - - -
-
- +- -

13. What does "Gas Limit Too Low" Mean?

-
-
-

Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.

-
-
- - - -
-
- +- -

14. Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn't do this. Is the random number generation for MyEtherWallet safe?

-
-
-

While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren't unsafe, it's just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here's a conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto and here is the the window.crypto w3 spec.

-
-
- - - -
-
- +- -

15. Why hasn't the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)

-
-
-

Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.

-
-
- - - -
-
- +- -

16. How do I check the balance of my account?

-
-
-

You can use a blockchain explorer like etherscan.io. Paste your address into the search bar and it will pull up your address and transaction history. For example, here's what our donation account looks like on etherscan.io

-
-
- - - -
-
- +- -

17. Why isn't my balance showing up when I unlock my wallet?

-
-
-

This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io

-
-
- - - -
-
- +- -

18. Where is my geth wallet file?

-
-
-
    -
  • Mac: ~/Library/Ethereum/keystore
  • -
  • Linux: ~/.ethereum/keystore
  • -
  • Windows: %APPDATA%/Ethereum/keystore
  • -
-
-
- - - -
-
- +- -

19. Where is my Mist wallet file?

-
-
-

Mist files are typically found in the file locations above, but it's much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.

-
-
- - - -
-
- +- -

20. Where is my pre-sale wallet file?

-
-
-

Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called "ethereum_wallet_backup.json" and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.

-
-
- - - -
-
- +- -

21. Couldn't everybody put in random private keys, look for a balance, and send to their own address?

-
-
-

Short version: yes, but finding an account with a balance would take longer than the universe...so...no.

-

Long ELI5 Version: So Ethereum is based on Public Key Cryptography, specifically Elliptic curve cryptography which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.

-

In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.

-

Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.

-

And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.

-

If you know anything about Bitcoin, this will put it in perspective: *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.*

-

If you want something a bit more technical: *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.*

-

Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person's brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that's a separate issue that can wait for another day.

-
-
-
- - - - -
-
- +- -

Security - MyEtherWallet CX

-
-
-
Where is this extension saving my information?
-

The information you store in this Chrome Extension is saved via chrome.storage. - this is the same place your passwords are saved when you save your password in Chrome.

- -
What information is saved?
-

The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.

-
Why aren't the nickname and wallet address encrypted?
-

If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.

-
-
- - - - -
-
- +- -

Security

-
-
-

If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears.

-
    -
  • We've been up and running since August 2015. If you search for "myetherwallet" on reddit, you can see numerous people who use us with great success.
  • -
  • We aren't going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.
  • -
  • Check the URL -- This site is being served through GitHub and you can see the source code here: https://github.com/kvhnuke/etherwallet/tree/gh-pages to the domains: http://kvhnuke.github.io/etherwallet/ and https://www.myetherwallet.com. You can verify it's hosted at GitHub by using http://viewdns.info/dnsrecord/?domain=myetherwallet.com - last two A record IPs are owned by GitHub for their custom domain hosting.
  • -
  • For generating wallets, you can download the source code. See #5 above.
  • -
  • Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.
  • -
  • Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.
  • -
  • If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks!
  • -
-
-
- - - - - - - - - - -
- - - - - - - - -
- -
- -
-
-

- Ether Wallet -

- -

- An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions. - Created by kvhnuke & tayvano. -

- -

- Donations greatly appreciated: 0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8 -

- -

- URLs: - www.MyEtherWallet.com · - kvhnuke.github.io/etherwallet/ -

- -

- Github: - MyEtherWallet.com & MyEtherWallet CX -

- -

Contact: - Email · - Twitter · - kvhnuke on reddit · - tayvano (insom) on reddit -

- -

- Thank you to our translators: - - - - - -

- -

Disclaimer

- -

ETH Block#: {{ethBlockNumber}} · ETC Block#: {{etcBlockNumber}}

- -
- - - - - - -
- - - - diff --git a/dist/index.html b/dist/index.html index d3d9dc5707..0d28cc0591 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1002,21 +1002,22 @@

Account Information:

Withdraw DAO for ETC

+ + +
- -
+
-
- + %
@@ -1030,6 +1031,7 @@

Withdraw DAO for ETC



If you are getting an insufficient balance for gas * ... error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again.

+
@@ -1290,10 +1292,10 @@

Gas:

-
+

Raw Transaction

@@ -1308,7 +1310,7 @@

Signed Transaction

-
+ @@ -1328,7 +1330,7 @@

- You are about to deploy a contract to the blockchain. + You are about to deploy a contract to the blockchain.

Are you sure you want to do this?

diff --git a/dist/js/etherwallet-master-min.js b/dist/js/etherwallet-master-min.js index 64819fb61a..83491cbcaa 100644 --- a/dist/js/etherwallet-master-min.js +++ b/dist/js/etherwallet-master-min.js @@ -1,18319 +1,18846 @@ (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 0) ajaxReq.queuePost(); - }); -} -ajaxReq.post = function(data, callback) { - this.pendingPosts.push({ - data: data, - callback: callback - }); - if (this.pendingPosts.length == 1) this.queuePost(); -} -ajaxReq.getETHvalue = function(callback) { - var prefix = "eth"; - this.http.get(this.COINMARKETCAPAPI + prefix).then(function(data) { - data = data['data']['price']; - var priceObj = { - usd: data['usd'].toFixed(6), - eur: data['eur'].toFixed(6), - btc: data['btc'].toFixed(6) - }; - callback(priceObj); - }); -} +'use strict'; +var http; +var ajaxReq = function() {} +ajaxReq.http = null; +ajaxReq.postSerializer = null; +ajaxReq.SERVERURL = "https://rpc.myetherwallet.com:8443/api.mew"; +ajaxReq.COINMARKETCAPAPI = "https://coinmarketcap-nexuist.rhcloud.com/api/"; +ajaxReq.pendingPosts = []; +ajaxReq.config = { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' + } +}; +ajaxReq.getCurrentBlock = function(callback) { + this.post({ + currentBlock: '', + isClassic: false + }, callback); +} +ajaxReq.getCurrentClassicBlock = function(callback) { + this.post({ + currentBlock: '', + isClassic: true + }, callback); +} +ajaxReq.getBalance = function(addr, callback) { + this.post({ + balance: addr, + isClassic: false + }, callback); +} +ajaxReq.getClassicBalance = function(addr, callback) { + this.post({ + balance: addr, + isClassic: true + }, callback); +} +ajaxReq.getTransactionData = function(addr, callback) { + this.post({ + txdata: addr, + isClassic: false + }, callback); +} +ajaxReq.getClassicTransactionData = function(addr, callback) { + this.post({ + txdata: addr, + isClassic: true + }, callback); +} +ajaxReq.sendRawTx = function(rawTx, callback) { + this.post({ + rawtx: rawTx, + isClassic: false + }, callback); +} +ajaxReq.sendClassicRawTx = function(rawTx, callback) { + this.post({ + rawtx: rawTx, + isClassic: true + }, callback); +} +ajaxReq.getEstimatedGas = function(txobj, callback) { + this.post({ + estimatedGas: txobj, + isClassic: false + }, callback); +} +ajaxReq.getClassicEstimatedGas = function(txobj, callback) { + this.post({ + estimatedGas: txobj, + isClassic: true + }, callback); +} +ajaxReq.getEthCall = function(txobj, callback) { + this.post({ + ethCall: txobj, + isClassic: false + }, callback); +} +ajaxReq.getClassicEthCall = function(txobj, callback) { + this.post({ + ethCall: txobj, + isClassic: true + }, callback); +} +ajaxReq.queuePost = function() { + var data = this.pendingPosts[0].data; + var callback = this.pendingPosts[0].callback; + this.http.post(this.SERVERURL, this.postSerializer(data), this.config).then(function(data) { + callback(data.data); + ajaxReq.pendingPosts.splice(0, 1); + if (ajaxReq.pendingPosts.length > 0) ajaxReq.queuePost(); + }); +} +ajaxReq.post = function(data, callback) { + this.pendingPosts.push({ + data: data, + callback: callback + }); + if (this.pendingPosts.length == 1) this.queuePost(); +} +ajaxReq.getETHvalue = function(callback) { + var prefix = "eth"; + this.http.get(this.COINMARKETCAPAPI + prefix).then(function(data) { + data = data['data']['price']; + var priceObj = { + usd: data['usd'].toFixed(6), + eur: data['eur'].toFixed(6), + btc: data['btc'].toFixed(6) + }; + callback(priceObj); + }); +} module.exports = ajaxReq; },{}],2:[function(require,module,exports){ -'use strict'; -var addWalletCtrl = function($scope, $sce) { - $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showBtnAddWallet = $scope.showAddWallet = $scope.requireFPass = $scope.requirePPass = $scope.showPassTxt = false; - $scope.nickNames = []; - $scope.filePassword = $scope.fileContent = ""; - $scope.wallet = null; - $scope.addAccount = { - address: "", - nickName: "", - encStr: "", - password: "" - }; - $scope.onPrivKeyChange = function() { - $scope.addWalletStats = ""; - $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; - $scope.showBtnUnlock = $scope.manualprivkey.length == 64; - }; - $scope.onPrivKeyPassChange = function() { - $scope.showBtnUnlock = $scope.privPassword.length > 6; - }; - $scope.showContent = function($fileContent) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); - try { - $scope.requireFPass = Wallet.walletRequirePass($fileContent); - $scope.showBtnUnlock = !$scope.requireFPass; - $scope.fileContent = $fileContent; - } catch (e) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - }; - $scope.openFileDialog = function($fileContent) { - $scope.addWalletStats = ""; - document.getElementById('fselector').click(); - }; - $scope.onFilePassChange = function() { - $scope.showBtnUnlock = $scope.filePassword.length > 6; - }; - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.addWalletStats = ""; - try { - if ($scope.walletType == "pasteprivkey" && $scope.requirePPass) { - $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); - $scope.addAccount.password = $scope.privPassword; - } else if ($scope.walletType == "pasteprivkey" && !$scope.requirePPass) { - $scope.wallet = new Wallet($scope.manualprivkey); - $scope.addAccount.password = ''; - } else if ($scope.walletType == "fileupload") { - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); - $scope.addAccount.password = $scope.filePassword; - } - $scope.addAccount.address = $scope.wallet.getAddressString(); - } catch (e) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + e)); - } - if ($scope.wallet != null) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - $scope.showAddWallet = true; - $scope.showPassTxt = $scope.addAccount.password == ''; - $scope.setBalance(); - } - }; - $scope.setNickNames = function() { - cxFuncs.getAllNickNames(function(nicks) { - $scope.nickNames = nicks; - }); - }; - $scope.setNickNames(); - $scope.newWalletChange = function(varStatus, shwbtn) { - if ($scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && $scope.addAccount.password.length > 8) $scope[shwbtn] = true; - else $scope[shwbtn] = false; - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope[varStatus] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - else $scope[varStatus] = ""; - } - $scope.watchOnlyChange = function() { - if ($scope.addAccount.address != "" && $scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.showBtnAdd = true; - else $scope.showBtnAdd = false; - if ($scope.addAccount.address != "" && !ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - else if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - else $scope.watchOnlyStatus = ""; - } - $scope.addWatchOnly = function() { - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } - cxFuncs.addWatchOnlyAddress($scope.addAccount.address, $scope.addAccount.nickName, function() { - if (chrome.runtime.lastError) { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - } else { - $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); - $scope.setNickNames(); - } - $scope.$apply(); - }); - } - $scope.isStrongPass = function(pass) { - return pass.length > 3; - } - $scope.$watch('walletType', function() { - $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showAddWallet = false; - $scope.addNewNick = $scope.addNewPass = ""; - $scope.addWalletStats = ""; - }); - $scope.addWalletToStorage = function(status) { - if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } else if($scope.nickNames.indexOf(ethUtil.toChecksumAddress($scope.addAccount.address)) !== -1){ - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[16])); - return; - } - cxFuncs.addWalletToStorage($scope.addAccount.address, $scope.addAccount.encStr, $scope.addAccount.nickName, function() { - if (chrome.runtime.lastError) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); - $scope.setNickNames(); - } - $scope.$apply(); - }); - } - $scope.importWalletToStorage = function() { - var wStr = $scope.wallet.toV3($scope.addAccount.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - }); - $scope.addAccount.encStr = JSON.stringify(wStr); - $scope.addWalletToStorage('addStatus'); - } - $scope.generateWallet = function() { - var wallet = Wallet.generate(false); - var wStr = wallet.toV3($scope.addAccount.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - }); - $scope.addAccount.encStr = JSON.stringify(wStr); - $scope.addAccount.address = wallet.getAddressString(); - $scope.addWalletToStorage('addWalletStats'); - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - } -}; -module.exports = addWalletCtrl; +'use strict'; +var addWalletCtrl = function($scope, $sce) { + $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showBtnAddWallet = $scope.showAddWallet = $scope.requireFPass = $scope.requirePPass = $scope.showPassTxt = false; + $scope.nickNames = []; + $scope.filePassword = $scope.fileContent = ""; + $scope.wallet = null; + $scope.addAccount = { + address: "", + nickName: "", + encStr: "", + password: "" + }; + $scope.onPrivKeyChange = function() { + $scope.addWalletStats = ""; + $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; + $scope.showBtnUnlock = $scope.manualprivkey.length == 64; + }; + $scope.onPrivKeyPassChange = function() { + $scope.showBtnUnlock = $scope.privPassword.length > 6; + }; + $scope.showContent = function($fileContent) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); + try { + $scope.requireFPass = Wallet.walletRequirePass($fileContent); + $scope.showBtnUnlock = !$scope.requireFPass; + $scope.fileContent = $fileContent; + } catch (e) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + }; + $scope.openFileDialog = function($fileContent) { + $scope.addWalletStats = ""; + document.getElementById('fselector').click(); + }; + $scope.onFilePassChange = function() { + $scope.showBtnUnlock = $scope.filePassword.length > 6; + }; + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.addWalletStats = ""; + try { + if ($scope.walletType == "pasteprivkey" && $scope.requirePPass) { + $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); + $scope.addAccount.password = $scope.privPassword; + } else if ($scope.walletType == "pasteprivkey" && !$scope.requirePPass) { + $scope.wallet = new Wallet($scope.manualprivkey); + $scope.addAccount.password = ''; + } else if ($scope.walletType == "fileupload") { + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); + $scope.addAccount.password = $scope.filePassword; + } + $scope.addAccount.address = $scope.wallet.getAddressString(); + } catch (e) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + e)); + } + if ($scope.wallet != null) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + $scope.showAddWallet = true; + $scope.showPassTxt = $scope.addAccount.password == ''; + $scope.setBalance(); + } + }; + $scope.setNickNames = function() { + cxFuncs.getAllNickNames(function(nicks) { + $scope.nickNames = nicks; + }); + }; + $scope.setNickNames(); + $scope.newWalletChange = function(varStatus, shwbtn) { + if ($scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && $scope.addAccount.password.length > 8) $scope[shwbtn] = true; + else $scope[shwbtn] = false; + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope[varStatus] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + else $scope[varStatus] = ""; + } + $scope.watchOnlyChange = function() { + if ($scope.addAccount.address != "" && $scope.addAccount.nickName != "" && $scope.nickNames.indexOf($scope.addAccount.nickName) == -1 && ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.showBtnAdd = true; + else $scope.showBtnAdd = false; + if ($scope.addAccount.address != "" && !ethFuncs.validateEtherAddress($scope.addAccount.address)) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + else if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) $scope.watchOnlyStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + else $scope.watchOnlyStatus = ""; + } + $scope.addWatchOnly = function() { + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } + cxFuncs.addWatchOnlyAddress($scope.addAccount.address, $scope.addAccount.nickName, function() { + if (chrome.runtime.lastError) { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + } else { + $scope.addWalletStats = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); + $scope.setNickNames(); + } + $scope.$apply(); + }); + } + $scope.isStrongPass = function(pass) { + return pass.length > 3; + } + $scope.$watch('walletType', function() { + $scope.showBtnGen = $scope.showBtnUnlock = $scope.showBtnAdd = $scope.showAddWallet = false; + $scope.addNewNick = $scope.addNewPass = ""; + $scope.addWalletStats = ""; + }); + $scope.addWalletToStorage = function(status) { + if ($scope.nickNames.indexOf($scope.addAccount.nickName) !== -1) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } else if($scope.nickNames.indexOf(ethUtil.toChecksumAddress($scope.addAccount.address)) !== -1){ + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[16])); + return; + } + cxFuncs.addWalletToStorage($scope.addAccount.address, $scope.addAccount.encStr, $scope.addAccount.nickName, function() { + if (chrome.runtime.lastError) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[3] + $scope.addAccount.address)); + $scope.setNickNames(); + } + $scope.$apply(); + }); + } + $scope.importWalletToStorage = function() { + var wStr = $scope.wallet.toV3($scope.addAccount.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + }); + $scope.addAccount.encStr = JSON.stringify(wStr); + $scope.addWalletToStorage('addStatus'); + } + $scope.generateWallet = function() { + var wallet = Wallet.generate(false); + var wStr = wallet.toV3($scope.addAccount.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + }); + $scope.addAccount.encStr = JSON.stringify(wStr); + $scope.addAccount.address = wallet.getAddressString(); + $scope.addWalletToStorage('addWalletStats'); + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + } +}; +module.exports = addWalletCtrl; },{}],3:[function(require,module,exports){ -'use strict'; -var cxDecryptWalletCtrl = function($scope, $sce, walletService) { - $scope.allWallets = []; - $scope.selectedWallet = $scope.password = ""; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance(); - $scope.$apply(); - }); - }; - $scope.updateBalance = function() { - for (var i = 0; i < $scope.allWallets.length; i++) { - $scope.setBalance($scope.allWallets[i].addr,i); - } - }; - $scope.setBalance = function(address,id) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope.allWallets[id].balance = data.msg; - } else { - $scope.allWallets[id].balance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - }; - $scope.setAllWallets(); - $scope.getPrivFromAdd = function(){ - if ($scope.selectedWallet=="") throw globalFuncs.errorMsgs[5]; - for (var i = 0; i < $scope.allWallets.length; i++) { - if( $scope.allWallets[i].addr==$scope.selectedWallet) - return $scope.allWallets[i].priv; - } - throw globalFuncs.errorMsgs[14]; - } - $scope.decryptWallet = function() { - $scope.wallet=null; - $scope.decryptStatus=""; - try { - var priv = $scope.getPrivFromAdd(); - if (priv.length==132) - $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); - else - $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); - walletService.password = $scope.password; - walletService.wallet = $scope.wallet; - } catch (e) { - $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); - } - if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - }; -}; +'use strict'; +var cxDecryptWalletCtrl = function($scope, $sce, walletService) { + $scope.allWallets = []; + $scope.selectedWallet = $scope.password = ""; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance(); + $scope.$apply(); + }); + }; + $scope.updateBalance = function() { + for (var i = 0; i < $scope.allWallets.length; i++) { + $scope.setBalance($scope.allWallets[i].addr,i); + } + }; + $scope.setBalance = function(address,id) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope.allWallets[id].balance = data.msg; + } else { + $scope.allWallets[id].balance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + }; + $scope.setAllWallets(); + $scope.getPrivFromAdd = function(){ + if ($scope.selectedWallet=="") throw globalFuncs.errorMsgs[5]; + for (var i = 0; i < $scope.allWallets.length; i++) { + if( $scope.allWallets[i].addr==$scope.selectedWallet) + return $scope.allWallets[i].priv; + } + throw globalFuncs.errorMsgs[14]; + } + $scope.decryptWallet = function() { + $scope.wallet=null; + $scope.decryptStatus=""; + try { + var priv = $scope.getPrivFromAdd(); + if (priv.length==132) + $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); + else + $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); + walletService.password = $scope.password; + walletService.wallet = $scope.wallet; + } catch (e) { + $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); + } + if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + }; +}; module.exports = cxDecryptWalletCtrl; },{}],4:[function(require,module,exports){ -'use strict'; -var mainPopCtrl = function($scope, $sce) { - $scope.allWallets = []; - $scope.allWatchOnly = []; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - }); - cxFuncs.getWatchOnlyArr(function(wlts) { - $scope.allWatchOnly = wlts; - $scope.updateBalance('allWatchOnly'); - $scope.$apply(); - }); - }; - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - } - }); - }; - $scope.setAllWallets(); -}; -module.exports = mainPopCtrl; +'use strict'; +var mainPopCtrl = function($scope, $sce) { + $scope.allWallets = []; + $scope.allWatchOnly = []; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + }); + cxFuncs.getWatchOnlyArr(function(wlts) { + $scope.allWatchOnly = wlts; + $scope.updateBalance('allWatchOnly'); + $scope.$apply(); + }); + }; + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + } + }); + }; + $scope.setAllWallets(); +}; +module.exports = mainPopCtrl; },{}],5:[function(require,module,exports){ -'use strict'; -var myWalletsCtrl = function($scope, $sce) { - $scope.editModal = new Modal(document.getElementById('editWallet')); - $scope.viewModal = new Modal(document.getElementById('viewWalletDetails')); - $scope.removeModal = new Modal(document.getElementById('removeWallet')); - $scope.allWallets = []; - $scope.allWatchOnly = []; - $scope.nickNames = []; - $scope.fiatVal = { - usd: 0, - eur: 0, - btc: 0 - }; - $scope.viewWallet = {}; - $scope.setNickNames = function() { - cxFuncs.getAllNickNames(function(nicks) { - $scope.nickNames = nicks; - }); - }; - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - $scope.setTokens('allWallets'); - }); - cxFuncs.getWatchOnlyArr(function(wlts) { - $scope.allWatchOnly = wlts; - $scope.updateBalance('allWatchOnly'); - $scope.setTokens('allWatchOnly'); - }); - }; - $scope.setTokens = function(varWal) { - for(var j=0;j<$scope[varWal].length; j++){ - $scope.tokens = Token.popTokens; - $scope[varWal][j].tokens = []; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope[varWal][j].tokens.push(new Token($scope.tokens[i].address, $scope[varWal][j].addr, $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope[varWal][j].tokens.push(new Token(storedTokens[i].contractAddress, $scope[varWal][j].addr, globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - } - } - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - $scope[varWal][id].usd = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.usd); - $scope[varWal][id].eur = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.eur); - $scope[varWal][id].btc = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.btc); - } - }); - }; - $scope.setViewWalletObj = function(val, type) { - var vtype = 'allWallets'; - if (type == 'watchOnly') vtype = 'allWatchOnly' - $scope.viewWallet = { - nick: $scope[vtype][val].nick, - addr: $scope[vtype][val].addr, - id: val, - type: type - } - } - $scope.editMWallet = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.editModal.open(); - } - $scope.editSave = function() { - if ($scope.nickNames.indexOf($scope.viewWallet.nick) !== -1) { - $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); - return; - } else { - cxFuncs.editNickName($scope.viewWallet.addr, $scope.viewWallet.nick, function() { - if (chrome.runtime.lastError) $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); - else { - $scope.setAllWallets(); - $scope.setNickNames(); - $scope.editModal.close(); - } - }); - } - } - $scope.viewMWallet = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.viewModal.open(); - } - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.viewStatus = ""; - try { - var priv = $scope.allWallets[$scope.viewWallet.id].priv; - if (priv.length==132) - $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); - else - $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); - $scope.viewModal.close(); - $scope.setWalletInfo(); - $scope.password = ""; - } catch (e) { - $scope.viewStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); - } - }; - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } - $scope.resetWallet = function() { - $scope.wallet = null; - $scope.blob = $scope.blobEnc = $scope.password = ""; - } - $scope.setWalletInfo = function() { - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - if ($scope.password != '') { - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - } - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - } - $scope.deleteWalletMsg = function(val, type) { - $scope.setViewWalletObj(val, type); - $scope.removeModal.open(); - } - $scope.deleteWallet = function() { - cxFuncs.deleteAccount($scope.viewWallet.addr, function() { - $scope.setAllWallets(); - $scope.setNickNames(); - $scope.removeModal.close(); - }); - } - ajaxReq.getETHvalue(function(data) { - $scope.fiatVal.usd = data.usd; - $scope.fiatVal.eur = data.eur; - $scope.fiatVal.btc = data.btc; - $scope.setAllWallets(); - }); - $scope.setNickNames(); -}; -module.exports = myWalletsCtrl; +'use strict'; +var myWalletsCtrl = function($scope, $sce) { + $scope.editModal = new Modal(document.getElementById('editWallet')); + $scope.viewModal = new Modal(document.getElementById('viewWalletDetails')); + $scope.removeModal = new Modal(document.getElementById('removeWallet')); + $scope.allWallets = []; + $scope.allWatchOnly = []; + $scope.nickNames = []; + $scope.fiatVal = { + usd: 0, + eur: 0, + btc: 0 + }; + $scope.viewWallet = {}; + $scope.setNickNames = function() { + cxFuncs.getAllNickNames(function(nicks) { + $scope.nickNames = nicks; + }); + }; + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + $scope.setTokens('allWallets'); + }); + cxFuncs.getWatchOnlyArr(function(wlts) { + $scope.allWatchOnly = wlts; + $scope.updateBalance('allWatchOnly'); + $scope.setTokens('allWatchOnly'); + }); + }; + $scope.setTokens = function(varWal) { + for(var j=0;j<$scope[varWal].length; j++){ + $scope.tokens = Token.popTokens; + $scope[varWal][j].tokens = []; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope[varWal][j].tokens.push(new Token($scope.tokens[i].address, $scope[varWal][j].addr, $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope[varWal][j].tokens.push(new Token(storedTokens[i].contractAddress, $scope[varWal][j].addr, globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + } + } + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + $scope[varWal][id].usd = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.usd); + $scope[varWal][id].eur = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.eur); + $scope[varWal][id].btc = etherUnits.toFiat($scope[varWal][id].balance, 'ether', $scope.fiatVal.btc); + } + }); + }; + $scope.setViewWalletObj = function(val, type) { + var vtype = 'allWallets'; + if (type == 'watchOnly') vtype = 'allWatchOnly' + $scope.viewWallet = { + nick: $scope[vtype][val].nick, + addr: $scope[vtype][val].addr, + id: val, + type: type + } + } + $scope.editMWallet = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.editModal.open(); + } + $scope.editSave = function() { + if ($scope.nickNames.indexOf($scope.viewWallet.nick) !== -1) { + $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[13])); + return; + } else { + cxFuncs.editNickName($scope.viewWallet.addr, $scope.viewWallet.nick, function() { + if (chrome.runtime.lastError) $scope.editStatus = $sce.trustAsHtml(globalFuncs.getDangerText(chrome.runtime.lastError.message)); + else { + $scope.setAllWallets(); + $scope.setNickNames(); + $scope.editModal.close(); + } + }); + } + } + $scope.viewMWallet = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.viewModal.open(); + } + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.viewStatus = ""; + try { + var priv = $scope.allWallets[$scope.viewWallet.id].priv; + if (priv.length==132) + $scope.wallet = Wallet.fromMyEtherWalletKey(priv, $scope.password); + else + $scope.wallet = Wallet.getWalletFromPrivKeyFile(priv, $scope.password); + $scope.viewModal.close(); + $scope.setWalletInfo(); + $scope.password = ""; + } catch (e) { + $scope.viewStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6] + ":" + e)); + } + }; + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } + $scope.resetWallet = function() { + $scope.wallet = null; + $scope.blob = $scope.blobEnc = $scope.password = ""; + } + $scope.setWalletInfo = function() { + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + if ($scope.password != '') { + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + } + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + } + $scope.deleteWalletMsg = function(val, type) { + $scope.setViewWalletObj(val, type); + $scope.removeModal.open(); + } + $scope.deleteWallet = function() { + cxFuncs.deleteAccount($scope.viewWallet.addr, function() { + $scope.setAllWallets(); + $scope.setNickNames(); + $scope.removeModal.close(); + }); + } + ajaxReq.getETHvalue(function(data) { + $scope.fiatVal.usd = data.usd; + $scope.fiatVal.eur = data.eur; + $scope.fiatVal.btc = data.btc; + $scope.setAllWallets(); + }); + $scope.setNickNames(); +}; +module.exports = myWalletsCtrl; },{}],6:[function(require,module,exports){ -'use strict'; -var quickSendCtrl = function($scope, $sce) { - $scope.allWallets = []; - $scope.selectedWallet = ""; - $scope.showConfirm = false; - $scope.tx = { - gasLimit: globalFuncs.defaultTxGasLimit, - data: "", - to: "", - unit: "ether", - value: "", - nonce: null, - gasPrice: null, - donate: false - } - $scope.setAllWallets = function() { - cxFuncs.getWalletsArr(function(wlts) { - $scope.allWallets = wlts; - $scope.updateBalance('allWallets'); - }); - }; - $scope.updateBalance = function(varWal) { - for (var i = 0; i < $scope[varWal].length; i++) { - $scope.setBalance($scope[varWal][i].addr, i, varWal); - } - }; - $scope.setBalance = function(address, id, varWal) { - ajaxReq.getBalance(address, function(data) { - if (data.error) { - $scope[varWal][id].balance = data.msg; - } else { - $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); - $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); - } - }); - }; - $scope.validateAddress = function() { - if (ethFuncs.validateEtherAddress($scope.tx.to)) { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.transferAllBalance = function() { - $scope.wallet = {}; - $scope.wallet.getAddressString = function() { - return $scope.allWallets[$scope.selectedWallet].addr; - } - uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { - if (!resp.isError) { - $scope.tx.unit = resp.unit; - $scope.tx.value = resp.value; - } else { - $scope.validateTxStatus = $sce.trustAsHtml(resp.error); - } - }); - } - $scope.prepTX = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; - $scope.showConfirm = true; - } catch (e) { - $scope.prepTXStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.unlockAndSend = function() { - try { - $scope.decryptWallet(); - var txData = uiFuncs.getTxData($scope); - uiFuncs.generateTx(txData, function(rawTx) { - if (!rawTx.isError) { - uiFuncs.sendTx(rawTx.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io ")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } catch (e) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.decryptWallet = function() { - $scope.wallet = null; - $scope.validateTxStatus = ""; - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.allWallets[$scope.selectedWallet].priv, $scope.password); - }; - $scope.setAllWallets(); -}; +'use strict'; +var quickSendCtrl = function($scope, $sce) { + $scope.allWallets = []; + $scope.selectedWallet = ""; + $scope.showConfirm = false; + $scope.tx = { + gasLimit: globalFuncs.defaultTxGasLimit, + data: "", + to: "", + unit: "ether", + value: "", + nonce: null, + gasPrice: null, + donate: false + } + $scope.setAllWallets = function() { + cxFuncs.getWalletsArr(function(wlts) { + $scope.allWallets = wlts; + $scope.updateBalance('allWallets'); + }); + }; + $scope.updateBalance = function(varWal) { + for (var i = 0; i < $scope[varWal].length; i++) { + $scope.setBalance($scope[varWal][i].addr, i, varWal); + } + }; + $scope.setBalance = function(address, id, varWal) { + ajaxReq.getBalance(address, function(data) { + if (data.error) { + $scope[varWal][id].balance = data.msg; + } else { + $scope[varWal][id].balance = etherUnits.toEther(data.data.balance, 'wei'); + $scope[varWal][id].balanceR = new BigNumber($scope[varWal][id].balance).toPrecision(5); + } + }); + }; + $scope.validateAddress = function() { + if (ethFuncs.validateEtherAddress($scope.tx.to)) { + $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.transferAllBalance = function() { + $scope.wallet = {}; + $scope.wallet.getAddressString = function() { + return $scope.allWallets[$scope.selectedWallet].addr; + } + uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { + if (!resp.isError) { + $scope.tx.unit = resp.unit; + $scope.tx.value = resp.value; + } else { + $scope.validateTxStatus = $sce.trustAsHtml(resp.error); + } + }); + } + $scope.prepTX = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; + $scope.showConfirm = true; + } catch (e) { + $scope.prepTXStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.unlockAndSend = function() { + try { + $scope.decryptWallet(); + var txData = uiFuncs.getTxData($scope); + uiFuncs.generateTx(txData, function(rawTx) { + if (!rawTx.isError) { + uiFuncs.sendTx(rawTx.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io ")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } catch (e) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.decryptWallet = function() { + $scope.wallet = null; + $scope.validateTxStatus = ""; + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.allWallets[$scope.selectedWallet].priv, $scope.password); + }; + $scope.setAllWallets(); +}; module.exports = quickSendCtrl; },{}],7:[function(require,module,exports){ -'use strict'; -var bulkGenCtrl = function($scope) { - $scope.showWallets = false; - $scope.genWallets = function(){ - if($scope.amount==''||$scope.amount != parseInt($scope.amount, 10)) alert(globalFuncs.errorMsgs[0]); - else { - $scope.wallets = []; - var csv = ''; var txt = ''; - $scope.jsonWallets = []; - for(var i=0;i<$scope.amount;i++){ - var tWallet = Wallet.generate(false); - csv += tWallet.getChecksumAddressString() + ',' + tWallet.getPrivateKeyString() + '\n'; - txt += tWallet.getChecksumAddressString() + '\t' + tWallet.getPrivateKeyString() + '\n'; - $scope.jsonWallets.push({ - address: tWallet.getChecksumAddressString(), - private: tWallet.getPrivateKeyString() - }); - $scope.wallets.push(tWallet); - } - $scope.showWallets = true; - $scope.bJSON = globalFuncs.getBlob("text/json;charset=UTF-8",JSON.stringify($scope.jsonWallets)); - $scope.bTXT = globalFuncs.getBlob("text/plain;charset=UTF-8",txt); - $scope.bCSV = globalFuncs.getBlob("text/csv;charset=UTF-8",csv); - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify($scope.jsonWallets)); - } -}; +'use strict'; +var bulkGenCtrl = function($scope) { + $scope.showWallets = false; + $scope.genWallets = function(){ + if($scope.amount==''||$scope.amount != parseInt($scope.amount, 10)) alert(globalFuncs.errorMsgs[0]); + else { + $scope.wallets = []; + var csv = ''; var txt = ''; + $scope.jsonWallets = []; + for(var i=0;i<$scope.amount;i++){ + var tWallet = Wallet.generate(false); + csv += tWallet.getChecksumAddressString() + ',' + tWallet.getPrivateKeyString() + '\n'; + txt += tWallet.getChecksumAddressString() + '\t' + tWallet.getPrivateKeyString() + '\n'; + $scope.jsonWallets.push({ + address: tWallet.getChecksumAddressString(), + private: tWallet.getPrivateKeyString() + }); + $scope.wallets.push(tWallet); + } + $scope.showWallets = true; + $scope.bJSON = globalFuncs.getBlob("text/json;charset=UTF-8",JSON.stringify($scope.jsonWallets)); + $scope.bTXT = globalFuncs.getBlob("text/plain;charset=UTF-8",txt); + $scope.bCSV = globalFuncs.getBlob("text/csv;charset=UTF-8",csv); + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify($scope.jsonWallets)); + } +}; module.exports = bulkGenCtrl; },{}],8:[function(require,module,exports){ -'use strict'; -var decryptWalletCtrl = function($scope, $sce, walletService) { - $scope.walletType = ""; - $scope.requireFPass = $scope.requirePPass = $scope.showFDecrypt = $scope.showPDecrypt = false; - $scope.filePassword = ""; - $scope.fileContent = ""; - $scope.Validator = Validator; - $scope.showContent = function($fileContent) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); - try { - $scope.requireFPass = Wallet.walletRequirePass($fileContent); - $scope.showFDecrypt = !$scope.requireFPass; - $scope.fileContent = $fileContent; - } catch (e) { - $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - }; - $scope.openFileDialog = function($fileContent) { - document.getElementById('fselector').click(); - }; - $scope.onFilePassChange = function() { - $scope.showFDecrypt = $scope.filePassword.length > 3; - }; - $scope.onPrivKeyChange = function() { - $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; - $scope.showPDecrypt = $scope.manualprivkey.length == 64; - }; - $scope.onPrivKeyPassChange = function() { - $scope.showPDecrypt = $scope.privPassword.length > 6; - }; - $scope.decryptWallet = function() { - $scope.wallet=null; - $scope.decryptStatus=""; - try { - if ($scope.showPDecrypt && $scope.requirePPass) { - $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); - walletService.password = $scope.privPassword; - } else if ($scope.showPDecrypt && !$scope.requirePPass) { - $scope.wallet = new Wallet($scope.manualprivkey); - walletService.password = ''; - } else if ($scope.showFDecrypt) { - $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); - walletService.password = $scope.filePassword; - } - walletService.wallet = $scope.wallet; - } catch (e) { - $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6]+e)); - } - if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); - - }; -}; -module.exports = decryptWalletCtrl; +'use strict'; +var decryptWalletCtrl = function($scope, $sce, walletService) { + $scope.walletType = ""; + $scope.requireFPass = $scope.requirePPass = $scope.showFDecrypt = $scope.showPDecrypt = false; + $scope.filePassword = ""; + $scope.fileContent = ""; + $scope.Validator = Validator; + $scope.showContent = function($fileContent) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[5] + document.getElementById('fselector').files[0].name)); + try { + $scope.requireFPass = Wallet.walletRequirePass($fileContent); + $scope.showFDecrypt = !$scope.requireFPass; + $scope.fileContent = $fileContent; + } catch (e) { + $scope.fileStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + }; + $scope.openFileDialog = function($fileContent) { + document.getElementById('fselector').click(); + }; + $scope.onFilePassChange = function() { + $scope.showFDecrypt = $scope.filePassword.length > 3; + }; + $scope.onPrivKeyChange = function() { + $scope.requirePPass = $scope.manualprivkey.length == 128 || $scope.manualprivkey.length == 132; + $scope.showPDecrypt = $scope.manualprivkey.length == 64; + }; + $scope.onPrivKeyPassChange = function() { + $scope.showPDecrypt = $scope.privPassword.length > 6; + }; + $scope.decryptWallet = function() { + $scope.wallet=null; + $scope.decryptStatus=""; + try { + if ($scope.showPDecrypt && $scope.requirePPass) { + $scope.wallet = Wallet.fromMyEtherWalletKey($scope.manualprivkey, $scope.privPassword); + walletService.password = $scope.privPassword; + } else if ($scope.showPDecrypt && !$scope.requirePPass) { + $scope.wallet = new Wallet($scope.manualprivkey); + walletService.password = ''; + } else if ($scope.showFDecrypt) { + $scope.wallet = Wallet.getWalletFromPrivKeyFile($scope.fileContent, $scope.filePassword); + walletService.password = $scope.filePassword; + } + walletService.wallet = $scope.wallet; + } catch (e) { + $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[6]+e)); + } + if($scope.wallet!=null) $scope.decryptStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[1])); + + }; +}; +module.exports = decryptWalletCtrl; },{}],9:[function(require,module,exports){ -'use strict'; -var deployContractCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - $scope.tx = { - gasLimit: '', - data: '', - to: '', - unit: "ether", - value: 0, - nonce: null, - gasPrice: null - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - }); - $scope.generateTx = function() { - try { - if ($scope.wallet == null) throw globalFuncs.errorMsgs[3]; - else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; - else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - $scope.tx.data = ethFuncs.sanitizeHex($scope.tx.data); - ajaxReq.getTransactionData($scope.wallet.getAddressString(), function(data) { - if (data.error) throw data.msg; - data = data.data; - $scope.tx.to = '0xCONTRACT'; - $scope.tx.contractAddr = ethFuncs.getDeteministicContractAddress($scope.wallet.getAddressString(), data.nonce); - var txData = uiFuncs.getTxData($scope); - uiFuncs.generateTx(txData, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - }); - } catch (e) { - $scope.deployContractStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & Contract Address "+$scope.tx.contractAddr+"")); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } -} +'use strict'; +var deployContractCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + $scope.tx = { + gasLimit: '', + data: '', + to: '', + unit: "ether", + value: 0, + nonce: null, + gasPrice: null + } + $scope.showRaw = false; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + }); + $scope.$watch('tx', function(newValue, oldValue) { + $scope.showRaw = false; + }, true); + $scope.generateTx = function() { + try { + if ($scope.wallet == null) throw globalFuncs.errorMsgs[3]; + else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; + else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + $scope.tx.data = ethFuncs.sanitizeHex($scope.tx.data); + ajaxReq.getTransactionData($scope.wallet.getAddressString(), function(data) { + if (data.error) throw data.msg; + data = data.data; + $scope.tx.to = '0xCONTRACT'; + $scope.tx.contractAddr = ethFuncs.getDeteministicContractAddress($scope.wallet.getAddressString(), data.nonce); + var txData = uiFuncs.getTxData($scope); + uiFuncs.generateTx(txData, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + $scope.showRaw = true; + } else { + $scope.showRaw = false; + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + }); + } catch (e) { + $scope.deployContractStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & Contract Address "+$scope.tx.contractAddr+"")); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } +} module.exports = deployContractCtrl; },{}],10:[function(require,module,exports){ -'use strict'; -var digixCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - walletService.wallet = null; - walletService.password = ''; - $scope.showSend = true; - $scope.showRaw = false; - $scope.digixContract = "0xf0160428a8552ac9bb7e050d90eeade4ddd52843"; - $scope.digixUserInfo = "0x1959a002"; - $scope.digixClaim = "0x4e71d92d"; - $scope.tx = { - gasLimit: globalFuncs.digixClaimTxGasLimit, - data: $scope.digixClaim, - to: $scope.digixContract, - unit: "ether", - value: 0, - nonce: null, - gasPrice: null, - donate: false - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - }); - $scope.validateAddress = function(address, status) { - if (ethFuncs.validateEtherAddress(address)) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - var userInfo = ethFuncs.getDataObj($scope.digixContract, $scope.digixUserInfo, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getEthCall(userInfo, function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - var digixObj = $scope.processDigixInfo(data.data); - $scope.centsTotal = digixObj.centstotal; - $scope.weiTotal = digixObj.weitotal; - $scope.shareTotal = digixObj.share; - $scope.badgesTotal = digixObj.badges; - $scope.claimedTotal = digixObj.claimed.toString(); - } - }); - } - $scope.processDigixInfo = function(data) { - data = data.replace('0x', ''); - var values = data.match(/.{1,64}/g); - var digixObj = { - centstotal: new BigNumber('0x' + values[0]).div(100).toString(), - weitotal: new BigNumber('0x' + values[1]).div(etherUnits.getValueOfUnit('ether')).toString(), - share: new BigNumber('0x' + values[2]).div(etherUnits.getValueOfUnit('gwei')).toString(), - badges: new BigNumber('0x' + values[3]).toString(), - claimed: new BigNumber('0x' + values[4]).toString() == '1' - }; - return digixObj; - } - $scope.generateTx = function(){ - uiFuncs.generateTx(uiFuncs.getTxData($scope), function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx =rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp){ - if(!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.onDonateClick = function() { - $scope.tokenTx.to = globalFuncs.donateAddress; - $scope.tokenTx.value = "0.5"; - $scope.tx.donate = true; - $scope.validateAddress(); - } -}; -module.exports = digixCtrl; +'use strict'; +var digixCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + walletService.wallet = null; + walletService.password = ''; + $scope.showSend = true; + $scope.showRaw = false; + $scope.digixContract = "0xf0160428a8552ac9bb7e050d90eeade4ddd52843"; + $scope.digixUserInfo = "0x1959a002"; + $scope.digixClaim = "0x4e71d92d"; + $scope.tx = { + gasLimit: globalFuncs.digixClaimTxGasLimit, + data: $scope.digixClaim, + to: $scope.digixContract, + unit: "ether", + value: 0, + nonce: null, + gasPrice: null, + donate: false + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + }); + $scope.validateAddress = function(address, status) { + if (ethFuncs.validateEtherAddress(address)) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + var userInfo = ethFuncs.getDataObj($scope.digixContract, $scope.digixUserInfo, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getEthCall(userInfo, function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + var digixObj = $scope.processDigixInfo(data.data); + $scope.centsTotal = digixObj.centstotal; + $scope.weiTotal = digixObj.weitotal; + $scope.shareTotal = digixObj.share; + $scope.badgesTotal = digixObj.badges; + $scope.claimedTotal = digixObj.claimed.toString(); + } + }); + } + $scope.processDigixInfo = function(data) { + data = data.replace('0x', ''); + var values = data.match(/.{1,64}/g); + var digixObj = { + centstotal: new BigNumber('0x' + values[0]).div(100).toString(), + weitotal: new BigNumber('0x' + values[1]).div(etherUnits.getValueOfUnit('ether')).toString(), + share: new BigNumber('0x' + values[2]).div(etherUnits.getValueOfUnit('gwei')).toString(), + badges: new BigNumber('0x' + values[3]).toString(), + claimed: new BigNumber('0x' + values[4]).toString() == '1' + }; + return digixObj; + } + $scope.generateTx = function(){ + uiFuncs.generateTx(uiFuncs.getTxData($scope), function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx =rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp){ + if(!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.onDonateClick = function() { + $scope.tokenTx.to = globalFuncs.donateAddress; + $scope.tokenTx.value = "0.5"; + $scope.tx.donate = true; + $scope.validateAddress(); + } +}; +module.exports = digixCtrl; },{}],11:[function(require,module,exports){ -'use strict'; -var footerCtrl = function($scope) { - $scope.footerModal = new Modal(document.getElementById('disclaimerModal')); - $scope.ethBlockNumber = "loading"; - $scope.etcBlockNumber = "loading"; - $scope.showBlocks = window.location.protocol=="https:"; - $scope.setBlockNumbers = function(){ - if(!$scope.showBlocks) return; - ajaxReq.getCurrentBlock(function(data){$scope.ethBlockNumber = data.data;}); - ajaxReq.getCurrentClassicBlock(function(data){$scope.etcBlockNumber = data.data;}); - } - $scope.setBlockNumbers(); - setInterval($scope.setBlockNumbers,3000); -}; -module.exports = footerCtrl; +'use strict'; +var footerCtrl = function($scope) { + $scope.footerModal = new Modal(document.getElementById('disclaimerModal')); + $scope.ethBlockNumber = "loading"; + $scope.etcBlockNumber = "loading"; + $scope.showBlocks = window.location.protocol=="https:"; + $scope.setBlockNumbers = function(){ + if(!$scope.showBlocks) return; + ajaxReq.getCurrentBlock(function(data){$scope.ethBlockNumber = data.data;}); + ajaxReq.getCurrentClassicBlock(function(data){$scope.etcBlockNumber = data.data;}); + } + $scope.setBlockNumbers(); + setInterval($scope.setBlockNumbers,3000); +}; +module.exports = footerCtrl; },{}],12:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var sendOfflineTxCtrl = function($scope, $sce, walletService) { - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.showWalletInfo = false; - $scope.gasPriceDec = 0; - $scope.nonceDec = 0; - $scope.tx = { - gasLimit: globalFuncs.defaultTxGasLimit, - from: "", - data: "", - to: "", - unit: "ether", - value: '', - nonce: null, - gasPrice: null, - donate: false - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - }); - $scope.getWalletInfo = function() { - if (ethFuncs.validateEtherAddress($scope.tx.from)) { - ajaxReq.getTransactionData($scope.tx.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - $scope.gasPriceDec = ethFuncs.hexToDecimal(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))); - $scope.nonceDec = ethFuncs.hexToDecimal(data.nonce); - $scope.showWalletInfo = true; - }); - } - } - $scope.$watch('tx', function() { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - }, true); - $scope.validateAddress = function(address, status) { - if (ethFuncs.validateEtherAddress(address)) { - $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } - $scope.generateTx = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric($scope.gasPriceDec) || parseFloat($scope.gasPriceDec) <= 0) throw globalFuncs.errorMsgs[10]; - else if (!globalFuncs.isNumeric($scope.nonceDec) || parseFloat($scope.nonceDec) < 0) throw globalFuncs.errorMsgs[11]; - else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; - var rawTx = { - nonce: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.nonceDec)), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.gasPriceDec)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.tx.gasLimit)), - to: ethFuncs.sanitizeHex($scope.tx.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei($scope.tx.value, $scope.tx.unit))), - data: ethFuncs.sanitizeHex($scope.tx.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer($scope.wallet.getPrivateKeyString(), 'hex')); - $scope.rawTx = JSON.stringify(rawTx); - $scope.signedTx = '0x' + eTx.serialize().toString('hex'); - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } catch (e) { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.confirmSendTx = function(){ - try { - if($scope.signedTx=="" || !ethFuncs.validateHexString($scope.signedTx)) throw globalFuncs.errorMsgs[12]; - var eTx = new ethUtil.Tx($scope.signedTx); - $scope.tx.to = '0x'+eTx.to.toString('hex'); - $scope.tx.value = eTx.value.toString('hex')!='' ? etherUnits.toEther('0x'+eTx.value.toString('hex'),'wei') : 0; - $scope.tx.unit = 'ether'; - new Modal(document.getElementById('sendTransactionOffline')).open(); - } catch (e){ - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } - $scope.sendTx = function() { - new Modal(document.getElementById('sendTransactionOffline')).close(); - ajaxReq.sendRawTx($scope.signedTx, function(data) { - if (data.error) { - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.msg)); - } else { - $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " " + data.data)); - } - }); - } -}; +'use strict'; +var sendOfflineTxCtrl = function($scope, $sce, walletService) { + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.showWalletInfo = false; + $scope.gasPriceDec = 0; + $scope.nonceDec = 0; + $scope.tx = { + gasLimit: globalFuncs.defaultTxGasLimit, + from: "", + data: "", + to: "", + unit: "ether", + value: '', + nonce: null, + gasPrice: null, + donate: false + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + }); + $scope.getWalletInfo = function() { + if (ethFuncs.validateEtherAddress($scope.tx.from)) { + ajaxReq.getTransactionData($scope.tx.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + $scope.gasPriceDec = ethFuncs.hexToDecimal(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))); + $scope.nonceDec = ethFuncs.hexToDecimal(data.nonce); + $scope.showWalletInfo = true; + }); + } + } + $scope.$watch('tx', function() { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + }, true); + $scope.validateAddress = function(address, status) { + if (ethFuncs.validateEtherAddress(address)) { + $scope[status] = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); + } else { + $scope[status] = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + } + } + $scope.generateTx = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.tx.value) || parseFloat($scope.tx.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric($scope.gasPriceDec) || parseFloat($scope.gasPriceDec) <= 0) throw globalFuncs.errorMsgs[10]; + else if (!globalFuncs.isNumeric($scope.nonceDec) || parseFloat($scope.nonceDec) < 0) throw globalFuncs.errorMsgs[11]; + else if (!globalFuncs.isNumeric($scope.tx.gasLimit) || parseFloat($scope.tx.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString($scope.tx.data)) throw globalFuncs.errorMsgs[9]; + var rawTx = { + nonce: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.nonceDec)), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.gasPriceDec)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex($scope.tx.gasLimit)), + to: ethFuncs.sanitizeHex($scope.tx.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei($scope.tx.value, $scope.tx.unit))), + data: ethFuncs.sanitizeHex($scope.tx.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer($scope.wallet.getPrivateKeyString(), 'hex')); + $scope.rawTx = JSON.stringify(rawTx); + $scope.signedTx = '0x' + eTx.serialize().toString('hex'); + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } catch (e) { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.confirmSendTx = function(){ + try { + if($scope.signedTx=="" || !ethFuncs.validateHexString($scope.signedTx)) throw globalFuncs.errorMsgs[12]; + var eTx = new ethUtil.Tx($scope.signedTx); + $scope.tx.to = '0x'+eTx.to.toString('hex'); + $scope.tx.value = eTx.value.toString('hex')!='' ? etherUnits.toEther('0x'+eTx.value.toString('hex'),'wei') : 0; + $scope.tx.unit = 'ether'; + new Modal(document.getElementById('sendTransactionOffline')).open(); + } catch (e){ + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } + $scope.sendTx = function() { + new Modal(document.getElementById('sendTransactionOffline')).close(); + ajaxReq.sendRawTx($scope.signedTx, function(data) { + if (data.error) { + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.msg)); + } else { + $scope.offlineTxPublishStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " " + data.data)); + } + }); + } +}; module.exports = sendOfflineTxCtrl; }).call(this,require("buffer").Buffer) -},{"buffer":121}],13:[function(require,module,exports){ -'use strict'; -var sendTxCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - $scope.txInfoModal = new Modal(document.getElementById('txInfoModal')); - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.replayContract = "0xaa1a6e3e6ef20068f7f8d8c835d2d22fd5116444"; - $scope.splitHex = "0x0f2c9329"; - $scope.Validator = Validator; - $scope.tx = { - gasLimit: globalFuncs.urlGet('gaslimit') == null ? globalFuncs.defaultTxGasLimit : globalFuncs.urlGet('gaslimit'), - data: globalFuncs.urlGet('data') == null ? "" : globalFuncs.urlGet('data'), - to: globalFuncs.urlGet('to') == null ? "" : globalFuncs.urlGet('to'), - unit: "ether", - value: globalFuncs.urlGet('value') == null ? "" : globalFuncs.urlGet('value'), - nonce: null, - gasPrice: null, - donate: false, - sendMode: globalFuncs.urlGet('sendMode') == null ? 0 : globalFuncs.urlGet('value') - } - globalFuncs.urlGet('gaslimit') == null ? '' : $scope.showAdvance = true - globalFuncs.urlGet('data') == null ? '' : $scope.showAdvance = true - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - }); - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.$watch('tx', function(newValue, oldValue) { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - if (oldValue.sendMode!=newValue.sendMode && newValue.sendMode == 0) { - $scope.tx.data = ""; - $scope.tx.gasLimit = globalFuncs.defaultTxGasLimit; - } - }, true); - $scope.validateAddress = function() { - return ethFuncs.validateEtherAddress($scope.tx.to) - } - $scope.toggleShowAdvance = function() { - $scope.showAdvance = !$scope.showAdvance; - } - $scope.onDonateClick = function() { - $scope.tx.to = globalFuncs.donateAddress; - $scope.tx.value = "0.5"; - $scope.tx.donate = true; - } - $scope.generateTx = function() { - if (!ethFuncs.validateEtherAddress($scope.tx.to)) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - return; - } - var txData = uiFuncs.getTxData($scope); - var genFunc = $scope.tx.sendMode == 2 ? 'generateClassicTx' : 'generateTx'; - if ($scope.tx.sendMode != 0) { - txData.to = $scope.replayContract; - txData.gasLimit = 300000; - if ($scope.tx.sendMode == 1) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64); - else if ($scope.tx.sendMode == 2) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64); - } - uiFuncs[genFunc](txData, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - var sendFunc = $scope.tx.sendMode == 2 ? 'sendClassicTx' : 'sendTx'; - uiFuncs[sendFunc]($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & ETC TX via GasTracker.io")); - $scope.setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.transferAllBalance = function() { - uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { - if (!resp.isError) { - $scope.tx.unit = resp.unit; - $scope.tx.value = resp.value; - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(resp.error); - } - }); - } -}; -module.exports = sendTxCtrl; +},{"buffer":122}],13:[function(require,module,exports){ +'use strict'; +var sendTxCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + $scope.txInfoModal = new Modal(document.getElementById('txInfoModal')); + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.replayContract = "0xaa1a6e3e6ef20068f7f8d8c835d2d22fd5116444"; + $scope.splitHex = "0x0f2c9329"; + $scope.Validator = Validator; + $scope.tx = { + gasLimit: globalFuncs.urlGet('gaslimit') == null ? globalFuncs.defaultTxGasLimit : globalFuncs.urlGet('gaslimit'), + data: globalFuncs.urlGet('data') == null ? "" : globalFuncs.urlGet('data'), + to: globalFuncs.urlGet('to') == null ? "" : globalFuncs.urlGet('to'), + unit: "ether", + value: globalFuncs.urlGet('value') == null ? "" : globalFuncs.urlGet('value'), + nonce: null, + gasPrice: null, + donate: false, + sendMode: globalFuncs.urlGet('sendMode') == null ? 0 : globalFuncs.urlGet('value') + } + globalFuncs.urlGet('gaslimit') == null ? '' : $scope.showAdvance = true + globalFuncs.urlGet('data') == null ? '' : $scope.showAdvance = true + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + }); + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.$watch('tx', function(newValue, oldValue) { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + if (oldValue.sendMode!=newValue.sendMode && newValue.sendMode == 0) { + $scope.tx.data = ""; + $scope.tx.gasLimit = globalFuncs.defaultTxGasLimit; + } + }, true); + $scope.validateAddress = function() { + return ethFuncs.validateEtherAddress($scope.tx.to) + } + $scope.toggleShowAdvance = function() { + $scope.showAdvance = !$scope.showAdvance; + } + $scope.onDonateClick = function() { + $scope.tx.to = globalFuncs.donateAddress; + $scope.tx.value = "0.5"; + $scope.tx.donate = true; + } + $scope.generateTx = function() { + if (!ethFuncs.validateEtherAddress($scope.tx.to)) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); + return; + } + var txData = uiFuncs.getTxData($scope); + var genFunc = $scope.tx.sendMode == 2 ? 'generateClassicTx' : 'generateTx'; + if ($scope.tx.sendMode != 0) { + txData.to = $scope.replayContract; + txData.gasLimit = 300000; + if ($scope.tx.sendMode == 1) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64); + else if ($scope.tx.sendMode == 2) txData.data = $scope.splitHex + ethFuncs.padLeft(ethFuncs.getNakedAddress(txData.from), 64) + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.tx.to), 64); + } + uiFuncs[genFunc](txData, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + var sendFunc = $scope.tx.sendMode == 2 ? 'sendClassicTx' : 'sendTx'; + uiFuncs[sendFunc]($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "
" + resp.data + "
ETH TX via EtherScan.io & ETC TX via GasTracker.io")); + $scope.setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.transferAllBalance = function() { + uiFuncs.transferAllBalance($scope.wallet.getAddressString(), $scope.tx.gasLimit, function(resp) { + if (!resp.isError) { + $scope.tx.unit = resp.unit; + $scope.tx.value = resp.value; + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(resp.error); + } + }); + } +}; +module.exports = sendTxCtrl; },{}],14:[function(require,module,exports){ -'use strict'; -var tabsCtrl = function($scope, globalService, $translate) { - $scope.tabNames = globalService.tabs; - $scope.curLang = "English"; - var hval = window.location.hash; - $scope.setArrowVisibility = function() { - setTimeout(function() { - $scope.showLeftArrow = false; - $scope.showRightArrow = !(document.querySelectorAll(".nav-inner")[0].clientWidth <= document.querySelectorAll(".nav-scroll")[0].clientWidth); - $scope.$apply(); - }, 200); - } - $scope.setArrowVisibility(); - $scope.setTab = function(hval) { - if (hval != "") { - hval = hval.replace("#", ''); - for (var key in $scope.tabNames) { - if ($scope.tabNames[key].url == hval) { - $scope.activeTab = globalService.currentTab = $scope.tabNames[key].id; - break; - } - $scope.activeTab = globalService.currentTab; - } - } else { - $scope.activeTab = globalService.currentTab; - } - } - $scope.setTab(hval); - $scope.tabClick = function(id) { - $scope.activeTab = globalService.currentTab = id; - for (var key in $scope.tabNames) { - if ($scope.tabNames[key].id == id) location.hash = $scope.tabNames[key].url; - } - } - $scope.setLanguageVal = function (id, varName, pos) { - $translate(id).then(function(paragraph) { - globalFuncs[varName][pos] = paragraph; - }, function(translationId) { - globalFuncs[varName][pos] = translationId; - }); - } - $scope.setErrorMsgLanguage = function() { - for (var i = 0; i < globalFuncs.errorMsgs.length; i++) $scope.setLanguageVal('ERROR_' + (i + 1), 'errorMsgs', i); - for (var i = 0; i < globalFuncs.successMsgs.length; i++) $scope.setLanguageVal('SUCCESS_' + (i + 1), 'successMsgs', i); - } - $scope.setGethErrMsgLanguage = function() { - globalFuncs.gethErrorMsgs = {}; - for (var s in globalFuncs.gethErrors) { - var key = globalFuncs.gethErrors[s]; - if (key.indexOf("GETH_") === 0) { - $scope.setLanguageVal(key,'gethErrorMsgs',key); - } - } - } - $scope.changeLanguage = function(key, value) { - $translate.use(key); - $scope.setErrorMsgLanguage(); - $scope.setGethErrMsgLanguage(); - $scope.curLang = value; - $scope.setArrowVisibility(); - $scope.dropdown = false; - localStorage.setItem("language", JSON.stringify({ - key: key, - value: value - })); - }; - $scope.setLanguageFromStorage = function() { - var lang = localStorage.getItem('language'); - if (lang == null) return; - lang = JSON.parse(lang); - var key = globalFuncs.stripTags(lang.key); - var value = globalFuncs.stripTags(lang.value); - $scope.changeLanguage(key, value); - } - $scope.setLanguageFromStorage(); - $scope.setHash = function(hash) { - location.hash = hash; - $scope.setTab(hash); - $scope.$apply(); - } - $scope.scrollHoverIn = function(isLeft, val) { - clearInterval($scope.sHoverTimer); - $scope.sHoverTimer = setInterval(function() { - if (isLeft) $scope.scrollLeft(val); - else $scope.scrollRight(val); - }, 20); - } - $scope.scrollHoverOut = function() { - clearInterval($scope.sHoverTimer); - } - $scope.setOnScrollArrows = function(){ - var ele = document.querySelectorAll(".nav-scroll")[0]; - $scope.showLeftArrow = ele.scrollLeft > 0; - $scope.showRightArrow = document.querySelectorAll(".nav-inner")[0].clientWidth > (ele.clientWidth + ele.scrollLeft); - $scope.$apply(); - } - $scope.scrollLeft = function(val) { - var ele = document.querySelectorAll(".nav-scroll")[0]; - ele.scrollLeft -= val; - } - $scope.scrollRight = function(val) { - var ele = document.querySelectorAll(".nav-scroll")[0]; - ele.scrollLeft += val; - } - angular.element(document.querySelectorAll(".nav-scroll")[0]).bind('scroll',$scope.setOnScrollArrows); - globalFuncs.changeHash = $scope.setHash; -}; -module.exports = tabsCtrl; +'use strict'; +var tabsCtrl = function($scope, globalService, $translate) { + $scope.tabNames = globalService.tabs; + $scope.curLang = "English"; + var hval = window.location.hash; + $scope.setArrowVisibility = function() { + setTimeout(function() { + $scope.showLeftArrow = false; + $scope.showRightArrow = !(document.querySelectorAll(".nav-inner")[0].clientWidth <= document.querySelectorAll(".nav-scroll")[0].clientWidth); + $scope.$apply(); + }, 200); + } + $scope.setArrowVisibility(); + $scope.setTab = function(hval) { + if (hval != "") { + hval = hval.replace("#", ''); + for (var key in $scope.tabNames) { + if ($scope.tabNames[key].url == hval) { + $scope.activeTab = globalService.currentTab = $scope.tabNames[key].id; + break; + } + $scope.activeTab = globalService.currentTab; + } + } else { + $scope.activeTab = globalService.currentTab; + } + } + $scope.setTab(hval); + $scope.tabClick = function(id) { + $scope.activeTab = globalService.currentTab = id; + for (var key in $scope.tabNames) { + if ($scope.tabNames[key].id == id) location.hash = $scope.tabNames[key].url; + } + } + $scope.setLanguageVal = function (id, varName, pos) { + $translate(id).then(function(paragraph) { + globalFuncs[varName][pos] = paragraph; + }, function(translationId) { + globalFuncs[varName][pos] = translationId; + }); + } + $scope.setErrorMsgLanguage = function() { + for (var i = 0; i < globalFuncs.errorMsgs.length; i++) $scope.setLanguageVal('ERROR_' + (i + 1), 'errorMsgs', i); + for (var i = 0; i < globalFuncs.successMsgs.length; i++) $scope.setLanguageVal('SUCCESS_' + (i + 1), 'successMsgs', i); + } + $scope.setGethErrMsgLanguage = function() { + globalFuncs.gethErrorMsgs = {}; + for (var s in globalFuncs.gethErrors) { + var key = globalFuncs.gethErrors[s]; + if (key.indexOf("GETH_") === 0) { + $scope.setLanguageVal(key,'gethErrorMsgs',key); + } + } + } + $scope.changeLanguage = function(key, value) { + $translate.use(key); + $scope.setErrorMsgLanguage(); + $scope.setGethErrMsgLanguage(); + $scope.curLang = value; + $scope.setArrowVisibility(); + $scope.dropdown = false; + localStorage.setItem("language", JSON.stringify({ + key: key, + value: value + })); + }; + $scope.setLanguageFromStorage = function() { + var lang = localStorage.getItem('language'); + if (lang == null) return; + lang = JSON.parse(lang); + var key = globalFuncs.stripTags(lang.key); + var value = globalFuncs.stripTags(lang.value); + $scope.changeLanguage(key, value); + } + $scope.setLanguageFromStorage(); + $scope.setHash = function(hash) { + location.hash = hash; + $scope.setTab(hash); + $scope.$apply(); + } + $scope.scrollHoverIn = function(isLeft, val) { + clearInterval($scope.sHoverTimer); + $scope.sHoverTimer = setInterval(function() { + if (isLeft) $scope.scrollLeft(val); + else $scope.scrollRight(val); + }, 20); + } + $scope.scrollHoverOut = function() { + clearInterval($scope.sHoverTimer); + } + $scope.setOnScrollArrows = function(){ + var ele = document.querySelectorAll(".nav-scroll")[0]; + $scope.showLeftArrow = ele.scrollLeft > 0; + $scope.showRightArrow = document.querySelectorAll(".nav-inner")[0].clientWidth > (ele.clientWidth + ele.scrollLeft); + $scope.$apply(); + } + $scope.scrollLeft = function(val) { + var ele = document.querySelectorAll(".nav-scroll")[0]; + ele.scrollLeft -= val; + } + $scope.scrollRight = function(val) { + var ele = document.querySelectorAll(".nav-scroll")[0]; + ele.scrollLeft += val; + } + angular.element(document.querySelectorAll(".nav-scroll")[0]).bind('scroll',$scope.setOnScrollArrows); + globalFuncs.changeHash = $scope.setHash; +}; +module.exports = tabsCtrl; },{}],15:[function(require,module,exports){ -'use strict'; -var theDaoCtrl = function($scope, $sce, walletService) { - $scope.curTab = "withdrawETC"; - $scope.withdrawModal = new Modal(document.getElementById('withdrawTransaction')); - $scope.withdrawModalETC = new Modal(document.getElementById('withdrawTransactionETC')); - walletService.wallet = null; - walletService.password = ''; - $scope.showAdvance = false; - $scope.showRaw = false; - $scope.slockitContract = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa - $scope.withdrawContract = "0xbf4ed7b27f1d666546e30d74d50d173d20bca754"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa - $scope.daoCContract = "0x180826b05452ce96e157f0708c43381fee64a6b8"; - $scope.daoWithdrawContract = "0x5cead42dc4adb64f128a11382bf8e11f567a743d"; - $scope.slockitTransfer = "0xa9059cbb"; - $scope.balanceOf = "0x70a08231"; - $scope.daoWithdraw = "0x3ccfd60b"; - $scope.approveWithdraw = "0x095ea7b3"; - $scope.withdrawDAOC = "0xf3fef3a3"; - $scope.numETChex = "0x02ef6c86"; - $scope.tx = { - gasLimit: 100000, - data: '', - to: $scope.slockitContract, - unit: "ether", - value: 0, - nonce: null, - gasPrice: null, - donate: false - } - $scope.daoC = { - to: '', - donation: null - } - $scope.token = { - balance: 0, - DCbalance: 0, - balanceEth: 0, - DCbalanceEth: 0, - balanceBN: 0, - } - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.daoC.to = $scope.wallet.getChecksumAddressString(); - $scope.setBalance(); - }); - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - var userInfo = ethFuncs.getDataObj($scope.slockitContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.balance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - $scope.token.balanceEth = new BigNumber($scope.token.balance).div(100).toString(); - $scope.token.balanceBN = new BigNumber(data.data).toString(); - } - }); - var userInfo = ethFuncs.getDataObj($scope.daoCContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getClassicEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.DCbalance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - } - }); - var userInfo = ethFuncs.getDataObj($scope.daoWithdrawContract, $scope.numETChex, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); - ajaxReq.getClassicEthCall(userInfo, function(data) { - if (!data.error) { - $scope.token.DCbalanceEth = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.$watch('curTab', function() { - $scope.tx.data = ''; - $scope.showRaw = $scope.showProposal = false; - }); - $scope.$watch('[tx,curTab]', function() { - $scope.showRaw = false; - $scope.sendTxStatus = ""; - }, true); - $scope.generateAndSendWithdrawTx = function() { - $scope.tx.to = $scope.slockitContract; - $scope.tx.data = $scope.approveWithdraw + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.withdrawContract), 64) + ethFuncs.padLeft(new BigNumber($scope.token.balanceBN).toString(16), 64); - $scope.tx.value = 0; - uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendTx(rawTx.signedTx, function(resp){ - if(resp.isError){ - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } else { - $scope.sendTxStatus = $sce.trustAsHtml("Please Wait"); - var approveTx = resp.data; - setTimeout(function(){ - $scope.tx.to = $scope.withdrawContract; - $scope.tx.data = $scope.daoWithdraw; - uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendTx(rawTx.signedTx, function(resp){ - if(resp.isError) { - $scope.withdrawTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.error)); - } else { - $scope.sendTxStatus = $sce.trustAsHtml("Approval Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + approveTx + "")); - $scope.withdrawTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - } - }); - }); - },3000) - } - }); - }); - $scope.withdrawModal.close(); - } - $scope.generateAndWithdrawDAOC = function() { - $scope.tx.to = $scope.daoWithdrawContract; - $scope.tx.data = $scope.withdrawDAOC + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.daoC.to), 64) + ethFuncs.padLeft(new BigNumber($scope.daoC.donation).toString(16), 64); - $scope.tx.value = 0; - uiFuncs.generateClassicTx(uiFuncs.getTxData($scope),function(rawTx) { - uiFuncs.sendClassicTx(rawTx.signedTx, function(resp){ - if(resp.isError){ - $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } else { - $scope.withdrawETCTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " ETC TX via GasTracker.io")); - $scope.setBalance(); - } - }); - }); - $scope.withdrawModalETC.close(); - } - $scope.validateAddress = function(addr) { - if (ethFuncs.validateEtherAddress(addr)) { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[0])); - } else { - $scope.validateAddressStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[5])); - } - } -}; -module.exports = theDaoCtrl; +'use strict'; +var theDaoCtrl = function($scope, $sce, walletService) { + $scope.curTab = "withdrawETC"; + $scope.withdrawModal = new Modal(document.getElementById('withdrawTransaction')); + $scope.withdrawModalETC = new Modal(document.getElementById('withdrawTransactionETC')); + walletService.wallet = null; + walletService.password = ''; + $scope.showAdvance = false; + $scope.showRaw = false; + $scope.slockitContract = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa + $scope.withdrawContract = "0xbf4ed7b27f1d666546e30d74d50d173d20bca754"; //0xd838f9c9792bf8398e1f5fbfbd3b43c5a86445aa + $scope.daoCContract = "0x180826b05452ce96e157f0708c43381fee64a6b8"; + // change this to go live + $scope.daoWithdrawContract = "0x9f5304da62a5408416ea58a17a92611019bd5ce3"; + $scope.slockitTransfer = "0xa9059cbb"; + $scope.balanceOf = "0x70a08231"; + $scope.daoWithdraw = "0x3ccfd60b"; + $scope.approveWithdraw = "0x095ea7b3"; + $scope.withdrawDAOC = "0xf3fef3a3"; + $scope.numETChex = "0x02ef6c86"; + $scope.Validator = Validator; + $scope.tx = { + gasLimit: 100000, + data: '', + to: $scope.slockitContract, + unit: "ether", + value: 0, + nonce: null, + gasPrice: null, + donate: false + } + $scope.daoC = { + to: '', + donation: null + } + $scope.token = { + balance: 0, + DCbalance: 0, + balanceEth: 0, + DCbalanceEth: 0, + balanceBN: 0, + } + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.daoC.to = $scope.wallet.getChecksumAddressString(); + $scope.setBalance(); + }); + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + var userInfo = ethFuncs.getDataObj($scope.slockitContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.balance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + $scope.token.balanceEth = new BigNumber($scope.token.balance).div(100).toString(); + $scope.token.balanceBN = new BigNumber(data.data).toString(); + } + }); + var userInfo = ethFuncs.getDataObj($scope.daoCContract, $scope.balanceOf, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getClassicEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.DCbalance = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + } + }); + var userInfo = ethFuncs.getDataObj($scope.daoWithdrawContract, $scope.numETChex, [ethFuncs.getNakedAddress($scope.wallet.getAddressString())]); + ajaxReq.getClassicEthCall(userInfo, function(data) { + if (!data.error) { + $scope.token.DCbalanceEth = new BigNumber(data.data).div(etherUnits.getValueOfUnit('milli') * 10).toString(); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.$watch('curTab', function() { + $scope.tx.data = ''; + $scope.showRaw = $scope.showProposal = false; + }); + $scope.$watch('[tx,curTab]', function() { + $scope.showRaw = false; + $scope.sendTxStatus = ""; + }, true); + $scope.generateAndSendWithdrawTx = function() { + $scope.tx.to = $scope.slockitContract; + $scope.tx.data = $scope.approveWithdraw + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.withdrawContract), 64) + ethFuncs.padLeft(new BigNumber($scope.token.balanceBN).toString(16), 64); + $scope.tx.value = 0; + uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendTx(rawTx.signedTx, function(resp){ + if(resp.isError){ + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } else { + $scope.sendTxStatus = $sce.trustAsHtml("Please Wait"); + var approveTx = resp.data; + setTimeout(function(){ + $scope.tx.to = $scope.withdrawContract; + $scope.tx.data = $scope.daoWithdraw; + uiFuncs.generateTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendTx(rawTx.signedTx, function(resp){ + if(resp.isError) { + $scope.withdrawTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(data.error)); + } else { + $scope.sendTxStatus = $sce.trustAsHtml("Approval Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + approveTx + "")); + $scope.withdrawTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + } + }); + }); + },3000) + } + }); + }); + $scope.withdrawModal.close(); + } + $scope.generateAndWithdrawDAOC = function() { + if(!Validator.isPositiveNumber($scope.daoC.donation)){ + $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(globalFuncs.errorMsgs[0])); + return; + } + $scope.tx.to = $scope.daoWithdrawContract; + $scope.tx.data = $scope.withdrawDAOC + ethFuncs.padLeft(ethFuncs.getNakedAddress($scope.daoC.to), 64) + ethFuncs.padLeft(new BigNumber($scope.daoC.donation).toString(16), 64); + $scope.tx.value = 0; + uiFuncs.generateClassicTx(uiFuncs.getTxData($scope),function(rawTx) { + uiFuncs.sendClassicTx(rawTx.signedTx, function(resp){ + if(resp.isError){ + $scope.withdrawETCTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } else { + $scope.withdrawETCTxStatus = $sce.trustAsHtml("Withdrawal Transaction: " + globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + " ETC TX via GasTracker.io")); + $scope.setBalance(); + } + }); + }); + $scope.withdrawModalETC.close(); + } +}; +module.exports = theDaoCtrl; },{}],16:[function(require,module,exports){ -'use strict'; -var tokenCtrl = function($scope, $sce, walletService) { - $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); - walletService.wallet = null; - walletService.password = ''; - $scope.tokens = Token.popTokens; - $scope.Validator = Validator; - $scope.tokenTx = { - to: '', - value: 0, - id: 0, - gasLimit: 150000 - }; - $scope.localToken = { - contractAdd: "", - symbol: "", - decimals: "" - }; - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.setBalance(); - $scope.setTokens(); - }); - $scope.setTokens = function() { - $scope.tokenObjs = []; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - $scope.tokenTx.id = 0; - } - $scope.setBalance = function() { - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); - ajaxReq.getETHvalue(function(data) { - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); - }); - } - }); - ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { - if (data.error) { - $scope.etcBalance = data.msg; - } else { - $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); - } - }); - } - $scope.onDonateClick = function() { - $scope.tokenTx.to = globalFuncs.donateAddress; - $scope.tokenTx.value = "50"; - } - $scope.generateTokenTx = function() { - var tokenData = $scope.tokenObjs[$scope.tokenTx.id].getData($scope.tokenTx.to, $scope.tokenTx.value); - if (tokenData.isError) { - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(tokenData.error)); - return; - } - tokenData = tokenData.data; - uiFuncs.generateTx({ - to: $scope.tokenObjs[$scope.tokenTx.id].getContractAddress(), - value: 0, - unit: 'ether', - gasLimit: $scope.tokenTx.gasLimit, - data: tokenData, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }, function(rawTx) { - if (!rawTx.isError) { - $scope.rawTx = rawTx.rawTx; - $scope.signedTx = rawTx.signedTx; - $scope.showRaw = true; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); - } else { - $scope.showRaw = false; - $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); - } - }); - } - $scope.sendTx = function() { - $scope.sendTxModal.close(); - uiFuncs.sendTx($scope.signedTx, function(resp) { - if (!resp.isError) { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); - $scope.setBalance(); - $scope.tokenObjs[$scope.tokenTx.id].setBalance(); - } else { - $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); - } - }); - } - $scope.saveTokenToLocal = function() { - try { - if (!ethFuncs.validateEtherAddress($scope.localToken.contractAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric($scope.localToken.decimals) || parseFloat($scope.localToken.decimals) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isAlphaNumeric($scope.localToken.symbol) || $scope.localToken.symbol == "") throw globalFuncs.errorMsgs[19]; - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - storedTokens.push({ - contractAddress: $scope.localToken.contractAdd, - symbol: $scope.localToken.symbol, - decimal: parseInt($scope.localToken.decimals) - }); - $scope.localToken = { - contractAdd: "", - symbol: "", - decimals: "" - }; - localStorage.setItem("localTokens",JSON.stringify(storedTokens)); - $scope.setTokens(); - $scope.validateLocalToken = $sce.trustAsHtml(''); - } catch (e) { - $scope.validateLocalToken = $sce.trustAsHtml(globalFuncs.getDangerText(e)); - } - } -}; +'use strict'; +var tokenCtrl = function($scope, $sce, walletService) { + $scope.sendTxModal = new Modal(document.getElementById('sendTransaction')); + walletService.wallet = null; + walletService.password = ''; + $scope.tokens = Token.popTokens; + $scope.Validator = Validator; + $scope.tokenTx = { + to: '', + value: 0, + id: 0, + gasLimit: 150000 + }; + $scope.localToken = { + contractAdd: "", + symbol: "", + decimals: "" + }; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.setBalance(); + $scope.setTokens(); + }); + $scope.setTokens = function() { + $scope.tokenObjs = []; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + $scope.tokenTx.id = 0; + } + $scope.setBalance = function() { + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance, 'wei'); + ajaxReq.getETHvalue(function(data) { + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance, 'ether', data.btc); + }); + } + }); + ajaxReq.getClassicBalance($scope.wallet.getAddressString(), function(data) { + if (data.error) { + $scope.etcBalance = data.msg; + } else { + $scope.etcBalance = etherUnits.toEther(data.data.balance, 'wei'); + } + }); + } + $scope.onDonateClick = function() { + $scope.tokenTx.to = globalFuncs.donateAddress; + $scope.tokenTx.value = "50"; + } + $scope.generateTokenTx = function() { + var tokenData = $scope.tokenObjs[$scope.tokenTx.id].getData($scope.tokenTx.to, $scope.tokenTx.value); + if (tokenData.isError) { + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(tokenData.error)); + return; + } + tokenData = tokenData.data; + uiFuncs.generateTx({ + to: $scope.tokenObjs[$scope.tokenTx.id].getContractAddress(), + value: 0, + unit: 'ether', + gasLimit: $scope.tokenTx.gasLimit, + data: tokenData, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }, function(rawTx) { + if (!rawTx.isError) { + $scope.rawTx = rawTx.rawTx; + $scope.signedTx = rawTx.signedTx; + $scope.showRaw = true; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText('')); + } else { + $scope.showRaw = false; + $scope.validateTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(rawTx.error)); + } + }); + } + $scope.sendTx = function() { + $scope.sendTxModal.close(); + uiFuncs.sendTx($scope.signedTx, function(resp) { + if (!resp.isError) { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getSuccessText(globalFuncs.successMsgs[2] + "" + resp.data + "")); + $scope.setBalance(); + $scope.tokenObjs[$scope.tokenTx.id].setBalance(); + } else { + $scope.sendTxStatus = $sce.trustAsHtml(globalFuncs.getDangerText(resp.error)); + } + }); + } + $scope.saveTokenToLocal = function() { + try { + if (!ethFuncs.validateEtherAddress($scope.localToken.contractAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric($scope.localToken.decimals) || parseFloat($scope.localToken.decimals) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isAlphaNumeric($scope.localToken.symbol) || $scope.localToken.symbol == "") throw globalFuncs.errorMsgs[19]; + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + storedTokens.push({ + contractAddress: $scope.localToken.contractAdd, + symbol: $scope.localToken.symbol, + decimal: parseInt($scope.localToken.decimals) + }); + $scope.localToken = { + contractAdd: "", + symbol: "", + decimals: "" + }; + localStorage.setItem("localTokens",JSON.stringify(storedTokens)); + $scope.setTokens(); + $scope.validateLocalToken = $sce.trustAsHtml(''); + } catch (e) { + $scope.validateLocalToken = $sce.trustAsHtml(globalFuncs.getDangerText(e)); + } + } +}; module.exports = tokenCtrl; },{}],17:[function(require,module,exports){ -'use strict'; -var viewCtrl = function($scope, globalService) { - $scope.globalService = globalService; -}; +'use strict'; +var viewCtrl = function($scope, globalService) { + $scope.globalService = globalService; +}; module.exports = viewCtrl; },{}],18:[function(require,module,exports){ -'use strict'; -var viewWalletCtrl = function($scope, walletService) { - walletService.wallet = null; - walletService.password = ''; - $scope.$watch(function() { - if (walletService.wallet == null) return null; - return walletService.wallet.getAddressString(); - }, function() { - if (walletService.wallet == null) return; - $scope.wallet = walletService.wallet; - $scope.wd = true; - $scope.showEnc = walletService.password != ''; - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - if (walletService.password != '') { - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3(walletService.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - } - ajaxReq.getBalance($scope.wallet.getAddressString(), function(data){ - if(data.error){ - $scope.etherBalance = data.msg; - } else { - $scope.etherBalance = etherUnits.toEther(data.data.balance,'wei'); - ajaxReq.getETHvalue(function(data){ - $scope.usdBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.usd); - $scope.eurBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.eur); - $scope.btcBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.btc); - }); - } - }); - $scope.setTokens(); - }); - $scope.setTokens = function() { - $scope.tokenObjs = []; - $scope.tokens = Token.popTokens; - for (var i = 0; i < $scope.tokens.length; i++) { - $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); - } - var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; - for (var i = 0; i < storedTokens.length; i++) { - $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } -}; +'use strict'; +var viewWalletCtrl = function($scope, walletService) { + walletService.wallet = null; + walletService.password = ''; + $scope.$watch(function() { + if (walletService.wallet == null) return null; + return walletService.wallet.getAddressString(); + }, function() { + if (walletService.wallet == null) return; + $scope.wallet = walletService.wallet; + $scope.wd = true; + $scope.showEnc = walletService.password != ''; + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + if (walletService.password != '') { + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3(walletService.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + } + ajaxReq.getBalance($scope.wallet.getAddressString(), function(data){ + if(data.error){ + $scope.etherBalance = data.msg; + } else { + $scope.etherBalance = etherUnits.toEther(data.data.balance,'wei'); + ajaxReq.getETHvalue(function(data){ + $scope.usdBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.usd); + $scope.eurBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.eur); + $scope.btcBalance = etherUnits.toFiat($scope.etherBalance,'ether',data.btc); + }); + } + }); + $scope.setTokens(); + }); + $scope.setTokens = function() { + $scope.tokenObjs = []; + $scope.tokens = Token.popTokens; + for (var i = 0; i < $scope.tokens.length; i++) { + $scope.tokenObjs.push(new Token($scope.tokens[i].address, $scope.wallet.getAddressString(), $scope.tokens[i].symbol, $scope.tokens[i].decimal)); + } + var storedTokens = localStorage.getItem("localTokens") != null ? JSON.parse(localStorage.getItem("localTokens")) : []; + for (var i = 0; i < storedTokens.length; i++) { + $scope.tokenObjs.push(new Token(storedTokens[i].contractAddress, $scope.wallet.getAddressString(), globalFuncs.stripTags(storedTokens[i].symbol), storedTokens[i].decimal)); + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } +}; module.exports = viewWalletCtrl; },{}],19:[function(require,module,exports){ -'use strict'; -var walletGenCtrl = function($scope) { - $scope.password = ""; - $scope.wallet = null; - $scope.showWallet = false; - $scope.blob = $scope.blobEnc = ""; - $scope.isDone = true; - $scope.showPass = true; - $scope.genNewWallet = function() { - if (!$scope.isStrongPass()) { - alert(globalFuncs.errorMsgs[1]); - } else if($scope.isDone){ - $scope.isDone = false; - $scope.wallet = Wallet.generate(false); - $scope.showWallet = true; - $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); - $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { - kdf: globalFuncs.kdf, - n: globalFuncs.scrypt.n - })); - $scope.encFileName = $scope.wallet.getV3Filename(); - if(parent!=null) - parent.postMessage(JSON.stringify({address:$scope.wallet.getAddressString(), checksumAddress: $scope.wallet.getChecksumAddressString()}),"*"); - $scope.isDone = true; - } - } - $scope.printQRCode = function() { - globalFuncs.printPaperWallets(JSON.stringify([{ - address: $scope.wallet.getAddressString(), - private: $scope.wallet.getPrivateKeyString() - }])); - } - $scope.isStrongPass = function(){ - return globalFuncs.isStrongPass($scope.password); - } -}; +'use strict'; +var walletGenCtrl = function($scope) { + $scope.password = ""; + $scope.wallet = null; + $scope.showWallet = false; + $scope.blob = $scope.blobEnc = ""; + $scope.isDone = true; + $scope.showPass = true; + $scope.genNewWallet = function() { + if (!$scope.isStrongPass()) { + alert(globalFuncs.errorMsgs[1]); + } else if($scope.isDone){ + $scope.isDone = false; + $scope.wallet = Wallet.generate(false); + $scope.showWallet = true; + $scope.blob = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toJSON()); + $scope.blobEnc = globalFuncs.getBlob("text/json;charset=UTF-8", $scope.wallet.toV3($scope.password, { + kdf: globalFuncs.kdf, + n: globalFuncs.scrypt.n + })); + $scope.encFileName = $scope.wallet.getV3Filename(); + if(parent!=null) + parent.postMessage(JSON.stringify({address:$scope.wallet.getAddressString(), checksumAddress: $scope.wallet.getChecksumAddressString()}),"*"); + $scope.isDone = true; + } + } + $scope.printQRCode = function() { + globalFuncs.printPaperWallets(JSON.stringify([{ + address: $scope.wallet.getAddressString(), + private: $scope.wallet.getPrivateKeyString() + }])); + } + $scope.isStrongPass = function(){ + return globalFuncs.isStrongPass($scope.password); + } +}; module.exports = walletGenCtrl; },{}],20:[function(require,module,exports){ -'use strict'; -var marked = require('marked'); -var myRenderer = new marked.Renderer(); -myRenderer.paragraph = function(text) { - return text + '\n'; -}; -myRenderer.link = function(href, title, text) { - if (this.options.sanitize) { - try { - var prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g, '').toLowerCase(); - } catch (e) { - return ''; - } - if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) { - return ''; - } - } - var out = ''; - return out; -}; -marked.setOptions({ - renderer: myRenderer -}); +'use strict'; +var marked = require('marked'); +var myRenderer = new marked.Renderer(); +myRenderer.paragraph = function(text) { + return text + '\n'; +}; +myRenderer.link = function(href, title, text) { + if (this.options.sanitize) { + try { + var prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g, '').toLowerCase(); + } catch (e) { + return ''; + } + if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) { + return ''; + } + } + var out = ''; + return out; +}; +marked.setOptions({ + renderer: myRenderer +}); module.exports = marked; -},{"marked":470}],21:[function(require,module,exports){ -'use strict'; -var cxFuncs = function() {} -cxFuncs.storage = chrome.storage.sync; -cxFuncs.getAllNickNames = function(callback) { - var nickNames = []; - this.storage.get(null, function(items) { - for (var key in items) { - if (items.hasOwnProperty(key)) { - var tobj = JSON.parse(items[key]); - if (tobj.type == 'wallet' || tobj.type == 'watchOnly') { - nickNames.push(tobj.nick); - nickNames.push(key); - } - } - } - callback(nickNames); - }); -} -cxFuncs.addWalletToStorage = function(address, encStr, nickname, callback) { - nickname = nickname.replace(/(<([^>]+)>)/ig, ""); - var value = { - nick: nickname, - priv: encStr, - type: 'wallet' - }; - var keyname = ethUtil.toChecksumAddress(address); - var obj = {}; - obj[keyname] = JSON.stringify(value); - this.storage.set(obj, callback); -} -cxFuncs.addWatchOnlyAddress = function(address, nickname, callback) { - nickname = nickname.replace(/(<([^>]+)>)/ig, ""); - var value = { - nick: nickname, - type: 'watchOnly' - }; - var keyname = ethUtil.toChecksumAddress(address);; - var obj = {}; - obj[keyname] = JSON.stringify(value); - this.storage.set(obj, callback); -} -cxFuncs.getStorageArr = function(filter, callback) { - var wallets = []; - this.storage.get(null, function(items) { - for (var key in items) { - if (items.hasOwnProperty(key)) { - var tobj = JSON.parse(items[key]); - if (tobj.type == filter) { - tobj['addr'] = key; - wallets.push(tobj); - } - } - } - wallets.sort(function(a, b) { - if (a.nick < b.nick) return -1; - if (a.nick > b.nick) return 1; - return 0; - }); - callback(wallets); - }); -} -cxFuncs.getWalletsArr = function(callback) { - this.getStorageArr('wallet', callback); -} -cxFuncs.getWatchOnlyArr = function(callback) { - this.getStorageArr('watchOnly', callback); -} -cxFuncs.deleteAccount = function(address,callback){ - this.storage.remove(address,function(){ - callback(address); - }); -} -cxFuncs.editNickName = function(address,newNick, callback){ - newNick = newNick.replace(/(<([^>]+)>)/ig,""); - this.storage.get(address, function(account) { - var accountInfo = account[address]; - accountInfo = JSON.parse(accountInfo); - accountInfo['nick'] = newNick; - account[address] = JSON.stringify(accountInfo); - cxFuncs.storage.set(account,function(){ - callback(newNick); - }); - }); -} +},{"marked":472}],21:[function(require,module,exports){ +'use strict'; +var cxFuncs = function() {} +cxFuncs.storage = chrome.storage.sync; +cxFuncs.getAllNickNames = function(callback) { + var nickNames = []; + this.storage.get(null, function(items) { + for (var key in items) { + if (items.hasOwnProperty(key)) { + var tobj = JSON.parse(items[key]); + if (tobj.type == 'wallet' || tobj.type == 'watchOnly') { + nickNames.push(tobj.nick); + nickNames.push(key); + } + } + } + callback(nickNames); + }); +} +cxFuncs.addWalletToStorage = function(address, encStr, nickname, callback) { + nickname = nickname.replace(/(<([^>]+)>)/ig, ""); + var value = { + nick: nickname, + priv: encStr, + type: 'wallet' + }; + var keyname = ethUtil.toChecksumAddress(address); + var obj = {}; + obj[keyname] = JSON.stringify(value); + this.storage.set(obj, callback); +} +cxFuncs.addWatchOnlyAddress = function(address, nickname, callback) { + nickname = nickname.replace(/(<([^>]+)>)/ig, ""); + var value = { + nick: nickname, + type: 'watchOnly' + }; + var keyname = ethUtil.toChecksumAddress(address);; + var obj = {}; + obj[keyname] = JSON.stringify(value); + this.storage.set(obj, callback); +} +cxFuncs.getStorageArr = function(filter, callback) { + var wallets = []; + this.storage.get(null, function(items) { + for (var key in items) { + if (items.hasOwnProperty(key)) { + var tobj = JSON.parse(items[key]); + if (tobj.type == filter) { + tobj['addr'] = key; + wallets.push(tobj); + } + } + } + wallets.sort(function(a, b) { + if (a.nick < b.nick) return -1; + if (a.nick > b.nick) return 1; + return 0; + }); + callback(wallets); + }); +} +cxFuncs.getWalletsArr = function(callback) { + this.getStorageArr('wallet', callback); +} +cxFuncs.getWatchOnlyArr = function(callback) { + this.getStorageArr('watchOnly', callback); +} +cxFuncs.deleteAccount = function(address,callback){ + this.storage.remove(address,function(){ + callback(address); + }); +} +cxFuncs.editNickName = function(address,newNick, callback){ + newNick = newNick.replace(/(<([^>]+)>)/ig,""); + this.storage.get(address, function(account) { + var accountInfo = account[address]; + accountInfo = JSON.parse(accountInfo); + accountInfo['nick'] = newNick; + account[address] = JSON.stringify(accountInfo); + cxFuncs.storage.set(account,function(){ + callback(newNick); + }); + }); +} module.exports = cxFuncs; },{}],22:[function(require,module,exports){ -'use strict'; -var QRCodeDrtv = function() { - return function(scope, element, attrs) { - var watchVar = attrs.watchVar; - scope.$watch(watchVar, function() { - var value = attrs.qrCode; - element.empty(); - var delay = 0; - if (element[0].clientWidth == 0) delay = 200; - setTimeout(function() { - new QRCode(element[0], { - text: value, - width: element[0].clientWidth, - height: element[0].clientWidth, - colorDark: "#000000", - colorLight: "#ffffff", - correctLevel: QRCode.CorrectLevel.H - }); - }, delay); - }); - }; -}; +'use strict'; +var QRCodeDrtv = function() { + return function(scope, element, attrs) { + var watchVar = attrs.watchVar; + scope.$watch(watchVar, function() { + var value = attrs.qrCode; + element.empty(); + var delay = 0; + if (element[0].clientWidth == 0) delay = 200; + setTimeout(function() { + new QRCode(element[0], { + text: value, + width: element[0].clientWidth, + height: element[0].clientWidth, + colorDark: "#000000", + colorLight: "#ffffff", + correctLevel: QRCode.CorrectLevel.H + }); + }, delay); + }); + }; +}; module.exports = QRCodeDrtv; },{}],23:[function(require,module,exports){ -'use strict'; -var blockiesDrtv = function() { - return function(scope, element, attrs){ - var watchVar = attrs.watchVar; - scope.$watch(watchVar, function() { - var address = attrs.blockieAddress; - var content = ethFuncs.validateEtherAddress(address) ? globalFuncs.getBlockie(address):''; - element.css({ - 'background-image': 'url(' + content +')' - }); - }); - }; -}; +'use strict'; +var blockiesDrtv = function() { + return function(scope, element, attrs){ + var watchVar = attrs.watchVar; + scope.$watch(watchVar, function() { + var address = attrs.blockieAddress; + var content = ethFuncs.validateEtherAddress(address) ? globalFuncs.getBlockie(address):''; + element.css({ + 'background-image': 'url(' + content +')' + }); + }); + }; +}; module.exports = blockiesDrtv; },{}],24:[function(require,module,exports){ -'use strict'; -var cxWalletDecryptDrtv = function() { - return { - restrict : "E", - template : '' - }; -}; -module.exports = cxWalletDecryptDrtv; +'use strict'; +var cxWalletDecryptDrtv = function() { + return { + restrict : "E", + template : '
\n \ +
\n \ +

Select a Wallet:

\n \ +
\n \ + \n \ +
\n \ +
\n \ +
\n \ +

Your wallet is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ +

Unlock Your Wallet:

\n \ + \n \ +
\n \ +
\n \ +
' + }; +}; +module.exports = cxWalletDecryptDrtv; },{}],25:[function(require,module,exports){ -'use strict'; -var fileReaderDrtv = function($parse) { - return { - restrict: 'A', - scope: false, - link: function(scope, element, attrs) { - var fn = $parse(attrs.onReadFile); - element.on('change', function(onChangeEvent) { - var reader = new FileReader(); - reader.onload = function(onLoadEvent) { - scope.$apply(function() { - fn(scope, { - $fileContent: onLoadEvent.target.result - }); - }); - }; - reader.readAsText((onChangeEvent.srcElement || onChangeEvent.target).files[0]); - }); - } - }; -}; +'use strict'; +var fileReaderDrtv = function($parse) { + return { + restrict: 'A', + scope: false, + link: function(scope, element, attrs) { + var fn = $parse(attrs.onReadFile); + element.on('change', function(onChangeEvent) { + var reader = new FileReader(); + reader.onload = function(onLoadEvent) { + scope.$apply(function() { + fn(scope, { + $fileContent: onLoadEvent.target.result + }); + }); + }; + reader.readAsText((onChangeEvent.srcElement || onChangeEvent.target).files[0]); + }); + } + }; +}; module.exports = fileReaderDrtv; },{}],26:[function(require,module,exports){ -'use strict'; -var walletDecryptDrtv = function() { - return { - restrict : "E", - template : '
\n \ -
\n \ -

Select the format of your private key:

\n \ -
\n \ - \n \ -
\n \ -
\n \ - \n \ -
\n \ -
\n \ -
\n \ - \n \ -
\n \ -

Select your wallet file:

\n \ -
\n \ - \n \ - SELECT WALLET FILE... \n \ -
\n \ -
\n \ -
\n \ -

Your file is encrypted. Please enter the password:

\n \ - \n \ -
\n \ -
\n \ - \n \ - \n \ -
\n \ -

Paste / type your private key:

\n \ -
\n \ - \n \ -
\n \ -
\n \ -

Your file is encrypted. Please enter the password:

\n \ - \n \ -
\n \ -
\n \ - \n \ -
\n \ -
\n \ -

Access Your Wallet:

\n \ -

Access Your Wallet:

\n \ - \n \ -
\n \ -
\n \ -
' - }; -}; -module.exports = walletDecryptDrtv; +'use strict'; +var walletDecryptDrtv = function() { + return { + restrict : "E", + template : '
\n \ +
\n \ +

Select the format of your private key:

\n \ +
\n \ + \n \ +
\n \ +
\n \ + \n \ +
\n \ +
\n \ +
\n \ + \n \ +
\n \ +

Select your wallet file:

\n \ +
\n \ + \n \ + SELECT WALLET FILE... \n \ +
\n \ +
\n \ +
\n \ +

Your file is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ + \n \ + \n \ +
\n \ +

Paste / type your private key:

\n \ +
\n \ + \n \ +
\n \ +
\n \ +

Your file is encrypted. Please enter the password:

\n \ + \n \ +
\n \ +
\n \ + \n \ +
\n \ +
\n \ +

Access Your Wallet:

\n \ +

Access Your Wallet:

\n \ + \n \ +
\n \ +
\n \ +
' + }; +}; +module.exports = walletDecryptDrtv; },{}],27:[function(require,module,exports){ -'use strict'; -var ethFuncs = function() {} -ethFuncs.validateEtherAddress = function(address) { - if (address.substring(0, 2) != "0x") return false; - else if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) return false; - else if (/^(0x)?[0-9a-f]{40}$/.test(address) || /^(0x)?[0-9A-F]{40}$/.test(address)) return true; - else - return this.isChecksumAddress(address); -} -ethFuncs.isChecksumAddress = function(address) { - return address == ethUtil.toChecksumAddress(address); -} -ethFuncs.validateHexString = function(str) { - if (str == "") return true; - str = str.substring(0, 2) == '0x' ? str.substring(2).toUpperCase() : str.toUpperCase(); - var re = /^[0-9A-F]+$/g; - return re.test(str); -} -ethFuncs.sanitizeHex = function(hex) { - hex = hex.substring(0, 2) == '0x' ? hex.substring(2) : hex; - if (hex == "") return ""; - return '0x' + this.padLeftEven(hex); -} -ethFuncs.padLeftEven = function(hex) { - hex = hex.length % 2 != 0 ? '0' + hex : hex; - return hex; -} -ethFuncs.addTinyMoreToGas = function(hex) { - hex = this.sanitizeHex(hex); - return new BigNumber(hex).plus(etherUnits.getValueOfUnit('gwei')).toDigits(2).toString(16); -} -ethFuncs.decimalToHex = function(dec) { - return new BigNumber(dec).toString(16); -} -ethFuncs.hexToDecimal = function(hex) { - return new BigNumber(this.sanitizeHex(hex)).toString(); -} -ethFuncs.contractOutToArray = function(hex) { - hex = hex.replace('0x', '').match(/.{64}/g); - for(var i=0;i= width ? n : new Array(width - n.length + 1).join(z) + n; -} -ethFuncs.getDataObj = function(to, func, arrVals) { - var val=""; - for(var i=0;i= width ? n : new Array(width - n.length + 1).join(z) + n; +} +ethFuncs.getDataObj = function(to, func, arrVals) { + var val=""; + for(var i=0;i"); -} -globalFuncs.getBlob = function(mime, str) { - var str = (typeof str === 'object') ? JSON.stringify(str) : str; - if (str == null) return ''; - var blob = new Blob([str], { - type: mime - }); - return window.URL.createObjectURL(blob); -} -globalFuncs.getSuccessText = function(str) { - return '

' + str + '

' -} -globalFuncs.getDangerText = function(str) { - return '

' + str + '

' -} -globalFuncs.errorMsgs = [ - "Please enter valid amount.", - "Your password must be at least 9 characters. Please ensure it is a strong password. ", - "Sorry! We don\'t recognize this type of wallet file. ", - "This is not a valid wallet file. ", - "This unit doesn\'t exists, please use the one of the following units ", - "Invalid address. ", - "Invalid password. ", - "Invalid amount. ", - "Invalid gas limit. ", - "Invalid data value. ", - "Invalid gas amount. ", - "Invalid nonce. ", - "Invalid signed transaction. ", - "A wallet with this nickname already exists. ", - "Wallet not found. ", - "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", - "A wallet with this address already exists in storage. Please check your wallets page. ", - "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", - "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", - "Invalid symbol"]; -globalFuncs.successMsgs = [ - "Valid address", - "Wallet successfully decrypted", - "Transaction submitted. TX ID: ", - "Your wallet was successfully added: ", - "You have successfully voted. Thank you for being an active participant in The DAO.", - "File Selected: "]; -globalFuncs.gethErrors = { - "Invalid sender": "GETH_InvalidSender", - "Nonce too low": "GETH_Nonce", - "Gas price too low for acceptance": "GETH_Cheap", - "Insufficient balance": "GETH_Balance", - "Account does not exist or account balance too low": "GETH_NonExistentAccount", - "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", - "Intrinsic gas too low": "GETH_IntrinsicGas", - "Exceeds block gas limit": "GETH_GasLimit", - "Negative value": "GETH_NegativeValue"}; -globalFuncs.gethErrorMsgs = {}; -globalFuncs.getGethMsg = function(str) { - if (str in this.gethErrors) { - var key = this.gethErrors[str]; - if (key in this.gethErrorMsgs) { - return this.gethErrorMsgs[key]; - } - } - return str; -} -globalFuncs.scrypt = { - n: 1024 -}; -globalFuncs.postDelay = 300; -globalFuncs.kdf = "scrypt"; -globalFuncs.defaultTxGasLimit = 21000; -globalFuncs.digixClaimTxGasLimit = 150000; -globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; -globalFuncs.isNumeric = function(n) { - return !isNaN(parseFloat(n)) && isFinite(n); -} -globalFuncs.urlGet = function(name) { - if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); -} -globalFuncs.stripTags = function(str) { - var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; - while (SCRIPT_REGEX.test(str)) { - str = str.replace(SCRIPT_REGEX, ""); - } - return str; -} -globalFuncs.checkAndRedirectHTTPS = function() { - var host = "myetherwallet.com"; - var githost = "kvhnuke.github.io"; - var githostw = "www.kvhnuke.github.io"; - var hostw = "www.myetherwallet.com"; - if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; -} -globalFuncs.isStrongPass = function(password) { - return password.length > 8; -} -globalFuncs.hexToAscii = function(hex) { - return hex.match(/.{1,2}/g).map(function(v) { - return String.fromCharCode(parseInt(v, 16)); - }).join(''); -} -globalFuncs.isAlphaNumeric = function(value){ - return !/[^a-zA-Z0-9]/.test(value); -} -module.exports = globalFuncs; +'use strict'; +var globalFuncs = function() {} +globalFuncs.getBlockie = function(address) { + return blockies.create({ + seed: address.toLowerCase(), + size: 8, + scale: 16 + }).toDataURL(); +} +globalFuncs.printPaperWallets = function(strJson) { + var win = window.open("about:blank", "_blank"); + var data = ""); +} +globalFuncs.getBlob = function(mime, str) { + var str = (typeof str === 'object') ? JSON.stringify(str) : str; + if (str == null) return ''; + var blob = new Blob([str], { + type: mime + }); + return window.URL.createObjectURL(blob); +} +globalFuncs.getSuccessText = function(str) { + return '

' + str + '

' +} +globalFuncs.getDangerText = function(str) { + return '

' + str + '

' +} +globalFuncs.errorMsgs = [ + "Please enter valid amount.", + "Your password must be at least 9 characters. Please ensure it is a strong password. ", + "Sorry! We don\'t recognize this type of wallet file. ", + "This is not a valid wallet file. ", + "This unit doesn\'t exists, please use the one of the following units ", + "Invalid address. ", + "Invalid password. ", + "Invalid amount. ", + "Invalid gas limit. ", + "Invalid data value. ", + "Invalid gas amount. ", + "Invalid nonce. ", + "Invalid signed transaction. ", + "A wallet with this nickname already exists. ", + "Wallet not found. ", + "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", + "A wallet with this address already exists in storage. Please check your wallets page. ", + "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", + "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", + "Invalid symbol"]; +globalFuncs.successMsgs = [ + "Valid address", + "Wallet successfully decrypted", + "Transaction submitted. TX ID: ", + "Your wallet was successfully added: ", + "You have successfully voted. Thank you for being an active participant in The DAO.", + "File Selected: "]; +globalFuncs.gethErrors = { + "Invalid sender": "GETH_InvalidSender", + "Nonce too low": "GETH_Nonce", + "Gas price too low for acceptance": "GETH_Cheap", + "Insufficient balance": "GETH_Balance", + "Account does not exist or account balance too low": "GETH_NonExistentAccount", + "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", + "Intrinsic gas too low": "GETH_IntrinsicGas", + "Exceeds block gas limit": "GETH_GasLimit", + "Negative value": "GETH_NegativeValue"}; +globalFuncs.gethErrorMsgs = {}; +globalFuncs.getGethMsg = function(str) { + if (str in this.gethErrors) { + var key = this.gethErrors[str]; + if (key in this.gethErrorMsgs) { + return this.gethErrorMsgs[key]; + } + } + return str; +} +globalFuncs.scrypt = { + n: 1024 +}; +globalFuncs.postDelay = 300; +globalFuncs.kdf = "scrypt"; +globalFuncs.defaultTxGasLimit = 21000; +globalFuncs.digixClaimTxGasLimit = 150000; +globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; +globalFuncs.isNumeric = function(n) { + return !isNaN(parseFloat(n)) && isFinite(n); +} +globalFuncs.urlGet = function(name) { + if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); +} +globalFuncs.stripTags = function(str) { + var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; + while (SCRIPT_REGEX.test(str)) { + str = str.replace(SCRIPT_REGEX, ""); + } + return str; +} +globalFuncs.checkAndRedirectHTTPS = function() { + var host = "myetherwallet.com"; + var githost = "kvhnuke.github.io"; + var githostw = "www.kvhnuke.github.io"; + var hostw = "www.myetherwallet.com"; + if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; +} +globalFuncs.isStrongPass = function(password) { + return password.length > 8; +} +globalFuncs.hexToAscii = function(hex) { + return hex.match(/.{1,2}/g).map(function(v) { + return String.fromCharCode(parseInt(v, 16)); + }).join(''); +} +globalFuncs.isAlphaNumeric = function(value){ + return !/[^a-zA-Z0-9]/.test(value); +} +module.exports = globalFuncs; },{}],30:[function(require,module,exports){ -'use strict'; -var IS_CX = false; -if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; -require("babel-polyfill"); -var angular = require('angular'); -var angularTranslate = require('angular-translate'); -var angularTranslateErrorLog = require('angular-translate-handler-log'); -var angularSanitize = require('angular-sanitize'); -var BigNumber = require('bignumber.js'); -window.BigNumber = BigNumber; -var marked = require('./customMarked'); -window.marked = marked; -var ethUtil = require('ethereumjs-util'); -ethUtil.crypto = require('crypto'); -ethUtil.Tx = require('ethereumjs-tx'); -ethUtil.scrypt = require('scryptsy'); -ethUtil.uuid = require('uuid'); -window.ethUtil = ethUtil; -var Wallet = require('./myetherwallet'); -window.Wallet = Wallet; -var Token = require('./tokens'); -window.Token = Token; -var globalFuncs = require('./globalFuncs'); -window.globalFuncs = globalFuncs; -var uiFuncs = require('./uiFuncs'); -window.uiFuncs = uiFuncs; -var etherUnits = require('./etherUnits'); -window.etherUnits = etherUnits; -var ajaxReq = require('./ajaxReq'); -window.ajaxReq = ajaxReq; -var ethFuncs = require('./ethFuncs'); -window.ethFuncs = ethFuncs; -var Validator = require('./validator'); -window.Validator = Validator; -var translate = require('./translations/translate.js'); -if (IS_CX) { - var cxFuncs = require('./cxFuncs'); - window.cxFuncs = cxFuncs; -} -var tabsCtrl = require('./controllers/tabsCtrl'); -var viewCtrl = require('./controllers/viewCtrl'); -var walletGenCtrl = require('./controllers/walletGenCtrl'); -var bulkGenCtrl = require('./controllers/bulkGenCtrl'); -var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); -var viewWalletCtrl = require('./controllers/viewWalletCtrl'); -var sendTxCtrl = require('./controllers/sendTxCtrl'); -var deployContractCtrl = require('./controllers/deployContractCtrl'); -var digixCtrl = require('./controllers/digixCtrl'); -var theDaoCtrl = require('./controllers/theDaoCtrl'); -var tokenCtrl = require('./controllers/tokenCtrl'); -var footerCtrl = require('./controllers/footerCtrl'); -var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); -var globalService = require('./services/globalService'); -var walletService = require('./services/walletService'); -var blockiesDrtv = require('./directives/blockiesDrtv'); -var QRCodeDrtv = require('./directives/QRCodeDrtv'); -var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); -var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); -var fileReaderDrtv = require('./directives/fileReaderDrtv'); -if (IS_CX) { - var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); - var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); - var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); - var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); - var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); -} -var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); -app.config(['$compileProvider', function($compileProvider) { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); -}]); -app.config(['$translateProvider', function($translateProvider) { - $translateProvider.useMissingTranslationHandlerLog(); - new translate($translateProvider); -}]); -app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); -app.factory('walletService', walletService); -app.directive('blockieAddress', blockiesDrtv); -app.directive('qrCode', QRCodeDrtv); -app.directive('onReadFile', fileReaderDrtv); -app.directive('walletDecryptDrtv', walletDecryptDrtv); -app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); -app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); -app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); -app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); -app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); -app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); -app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); -app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); -app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); -app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); -app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); -app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); -app.controller('footerCtrl', ['$scope', footerCtrl]); -app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); -if (IS_CX) { - app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); - app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); - app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); - app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); - app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); -} - -},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":60,"./uiFuncs":64,"./validator":65,"angular":71,"angular-sanitize":67,"angular-translate":69,"angular-translate-handler-log":68,"babel-polyfill":87,"bignumber.js":89,"crypto":423,"ethereumjs-tx":453,"ethereumjs-util":454,"scryptsy":500,"uuid":520}],31:[function(require,module,exports){ +'use strict'; +var IS_CX = false; +if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; +require("babel-polyfill"); +var angular = require('angular'); +var angularTranslate = require('angular-translate'); +var angularTranslateErrorLog = require('angular-translate-handler-log'); +var angularSanitize = require('angular-sanitize'); +var BigNumber = require('bignumber.js'); +window.BigNumber = BigNumber; +var marked = require('./customMarked'); +window.marked = marked; +var ethUtil = require('ethereumjs-util'); +ethUtil.crypto = require('crypto'); +ethUtil.Tx = require('ethereumjs-tx'); +ethUtil.scrypt = require('scryptsy'); +ethUtil.uuid = require('uuid'); +window.ethUtil = ethUtil; +var Wallet = require('./myetherwallet'); +window.Wallet = Wallet; +var Token = require('./tokens'); +window.Token = Token; +var globalFuncs = require('./globalFuncs'); +window.globalFuncs = globalFuncs; +var uiFuncs = require('./uiFuncs'); +window.uiFuncs = uiFuncs; +var etherUnits = require('./etherUnits'); +window.etherUnits = etherUnits; +var ajaxReq = require('./ajaxReq'); +window.ajaxReq = ajaxReq; +var ethFuncs = require('./ethFuncs'); +window.ethFuncs = ethFuncs; +var Validator = require('./validator'); +window.Validator = Validator; +var translate = require('./translations/translate.js'); +if (IS_CX) { + var cxFuncs = require('./cxFuncs'); + window.cxFuncs = cxFuncs; +} +var tabsCtrl = require('./controllers/tabsCtrl'); +var viewCtrl = require('./controllers/viewCtrl'); +var walletGenCtrl = require('./controllers/walletGenCtrl'); +var bulkGenCtrl = require('./controllers/bulkGenCtrl'); +var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); +var viewWalletCtrl = require('./controllers/viewWalletCtrl'); +var sendTxCtrl = require('./controllers/sendTxCtrl'); +var deployContractCtrl = require('./controllers/deployContractCtrl'); +var digixCtrl = require('./controllers/digixCtrl'); +var theDaoCtrl = require('./controllers/theDaoCtrl'); +var tokenCtrl = require('./controllers/tokenCtrl'); +var footerCtrl = require('./controllers/footerCtrl'); +var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); +var globalService = require('./services/globalService'); +var walletService = require('./services/walletService'); +var blockiesDrtv = require('./directives/blockiesDrtv'); +var QRCodeDrtv = require('./directives/QRCodeDrtv'); +var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); +var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); +var fileReaderDrtv = require('./directives/fileReaderDrtv'); +if (IS_CX) { + var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); + var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); + var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); + var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); + var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); +} +var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); +app.config(['$compileProvider', function($compileProvider) { + $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); +}]); +app.config(['$translateProvider', function($translateProvider) { + $translateProvider.useMissingTranslationHandlerLog(); + new translate($translateProvider); +}]); +app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); +app.factory('walletService', walletService); +app.directive('blockieAddress', blockiesDrtv); +app.directive('qrCode', QRCodeDrtv); +app.directive('onReadFile', fileReaderDrtv); +app.directive('walletDecryptDrtv', walletDecryptDrtv); +app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); +app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); +app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); +app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); +app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); +app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); +app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); +app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); +app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); +app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); +app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); +app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); +app.controller('footerCtrl', ['$scope', footerCtrl]); +app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); +if (IS_CX) { + app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); + app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); + app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); + app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); + app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); +} + +},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":61,"./uiFuncs":65,"./validator":66,"angular":72,"angular-sanitize":68,"angular-translate":70,"angular-translate-handler-log":69,"babel-polyfill":88,"bignumber.js":90,"crypto":425,"ethereumjs-tx":455,"ethereumjs-util":456,"scryptsy":502,"uuid":522}],31:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var Wallet = function(priv) { - this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') -} -Wallet.generate = function(icapDirect) { - if (icapDirect) { - while (true) { - var privKey = ethUtil.crypto.randomBytes(32) - if (ethUtil.privateToAddress(privKey)[0] === 0) { - return new Wallet(privKey) - } - } - } else { - return new Wallet(ethUtil.crypto.randomBytes(32)) - } -} -Wallet.prototype.getPrivateKey = function() { - return this.privKey -} -Wallet.prototype.getPrivateKeyString = function() { - return this.getPrivateKey().toString('hex') -} -Wallet.prototype.getPublicKey = function() { - return ethUtil.privateToPublic(this.privKey) -} -Wallet.prototype.getPublicKeyString = function() { - return '0x' + this.getPublicKey().toString('hex') -} -Wallet.prototype.getAddress = function() { - return ethUtil.privateToAddress(this.privKey) -} -Wallet.prototype.getAddressString = function() { - return '0x' + this.getAddress().toString('hex') -} -Wallet.prototype.getChecksumAddressString = function() { - return ethUtil.toChecksumAddress(this.getAddressString()) -} -Wallet.fromPrivateKey = function(priv) { - return new Wallet(priv) -} -Wallet.prototype.toV3 = function(password, opts) { - opts = opts || {} - var salt = opts.salt || ethUtil.crypto.randomBytes(32) - var iv = opts.iv || ethUtil.crypto.randomBytes(16) - var derivedKey - var kdf = opts.kdf || 'scrypt' - var kdfparams = { - dklen: opts.dklen || 32, - salt: salt.toString('hex') - } - if (kdf === 'pbkdf2') { - kdfparams.c = opts.c || 262144 - kdfparams.prf = 'hmac-sha256' - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') - } else if (kdf === 'scrypt') { - // FIXME: support progress reporting callback - kdfparams.n = opts.n || 262144 - kdfparams.r = opts.r || 8 - kdfparams.p = opts.p || 1 - derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else { - throw new Error('Unsupported kdf') - } - var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) - if (!cipher) { - throw new Error('Unsupported cipher') - } - var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) - return { - version: 3, - id: ethUtil.uuid.v4({ - random: opts.uuid || ethUtil.crypto.randomBytes(16) - }), - address: this.getAddress().toString('hex'), - Crypto: { - ciphertext: ciphertext.toString('hex'), - cipherparams: { - iv: iv.toString('hex') - }, - cipher: opts.cipher || 'aes-128-ctr', - kdf: kdf, - kdfparams: kdfparams, - mac: mac.toString('hex') - } - } -} -Wallet.prototype.toJSON = function() { - return { - address: this.getAddressString(), - checksumAddress: this.getChecksumAddressString(), - privKey: this.getPrivateKeyString(), - pubKey: this.getPublicKeyString(), - publisher:"MyEtherWallet", - encrypted:false, - version:2 - } -} -Wallet.fromMyEtherWallet = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var privKey - if (!json.locked) { - if (json.private.length !== 64) { - throw new Error('Invalid private key length') - } - privKey = new Buffer(json.private, 'hex') - } else { - if (typeof password !== 'string') { - throw new Error('Password required') - } - if (password.length < 7) { - throw new Error('Password must be at least 7 characters') - } - var cipher = json.encrypted ? json.private.slice(0, 128) : json.private - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - } - var wallet = new Wallet(privKey) - if (wallet.getAddressString() !== json.address) { - throw new Error('Invalid private key or address') - } - return wallet -} -Wallet.fromMyEtherWalletV2 = function (input){ - var json = (typeof input === 'object') ? input : JSON.parse(input); - if (json.privKey.length !== 64) { - throw new Error('Invalid private key length'); - }; - var privKey = new Buffer(json.privKey, 'hex'); - return new Wallet(privKey); -} -Wallet.fromEthSale = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var encseed = new Buffer(json.encseed, 'hex') - var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) - var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) - var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) - var wallet = new Wallet(ethUtil.sha3(seed)) - if (wallet.getAddress().toString('hex') !== json.ethaddr) { - throw new Error('Decoded key mismatch - possibly wrong passphrase') - } - return wallet -} -Wallet.fromMyEtherWalletKey = function(input, password) { - var cipher = input.slice(0, 128) - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - return new Wallet(privKey) -} -Wallet.fromV3 = function(input, password, nonStrict) { - var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) - if (json.version !== 3) { - throw new Error('Not a V3 wallet') - } - var derivedKey - var kdfparams - if (json.crypto.kdf === 'scrypt') { - kdfparams = json.crypto.kdfparams - derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else if (json.crypto.kdf === 'pbkdf2') { - kdfparams = json.crypto.kdfparams - if (kdfparams.prf !== 'hmac-sha256') { - throw new Error('Unsupported parameters to PBKDF2') - } - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') - } else { - throw new Error('Unsupported key derivation scheme') - } - var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) - if (mac.toString('hex') !== json.crypto.mac) { - throw new Error('Key derivation failed - possibly wrong passphrase') - } - var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) - var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') - return new Wallet(seed) -} -Wallet.prototype.toV3String = function(password, opts) { - return JSON.stringify(this.toV3(password, opts)) -} -Wallet.prototype.getV3Filename = function (timestamp) { - var ts = timestamp ? new Date(timestamp) : new Date() - return [ - 'UTC--', - ts.toJSON().replace(/:/g, '-'), - '--', - this.getAddress().toString('hex') - ].join('') -} -Wallet.decipherBuffer = function(decipher, data) { - return Buffer.concat([decipher.update(data), decipher.final()]) -} -Wallet.decodeCryptojsSalt = function(input) { - var ciphertext = new Buffer(input, 'base64') - if (ciphertext.slice(0, 8).toString() === 'Salted__') { - return { - salt: ciphertext.slice(8, 16), - ciphertext: ciphertext.slice(16) - } - } else { - return { - ciphertext: ciphertext - } - } -} -Wallet.evp_kdf = function(data, salt, opts) { - // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` - - function iter(block) { - var hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - hash.update(data) - hash.update(salt) - block = hash.digest() - for (var i = 1; i < (opts.count || 1); i++) { - hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - block = hash.digest() - } - return block - } - var keysize = opts.keysize || 16 - var ivsize = opts.ivsize || 16 - var ret = [] - var i = 0 - while (Buffer.concat(ret).length < (keysize + ivsize)) { - ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) - i++ - } - var tmp = Buffer.concat(ret) - return { - key: tmp.slice(0, keysize), - iv: tmp.slice(keysize, keysize + ivsize) - } -} -Wallet.walletRequirePass = function(ethjson) { - var jsonArr; - try { - jsonArr = JSON.parse(ethjson); - } catch (err) { - throw globalFuncs.errorMsgs[3]; - } - if (jsonArr.encseed != null) return true; - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true - else if (jsonArr.hash != null && jsonArr.locked) return true; - else if (jsonArr.hash != null && !jsonArr.locked) return false; - else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; - else - throw globalFuncs.errorMsgs[2]; -} -Wallet.getWalletFromPrivKeyFile = function(strjson, password) { - var jsonArr = JSON.parse(strjson); - if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); - else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); - else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); - else - throw globalFuncs.errorMsgs[2]; -} +'use strict'; +var Wallet = function(priv) { + this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') +} +Wallet.generate = function(icapDirect) { + if (icapDirect) { + while (true) { + var privKey = ethUtil.crypto.randomBytes(32) + if (ethUtil.privateToAddress(privKey)[0] === 0) { + return new Wallet(privKey) + } + } + } else { + return new Wallet(ethUtil.crypto.randomBytes(32)) + } +} +Wallet.prototype.getPrivateKey = function() { + return this.privKey +} +Wallet.prototype.getPrivateKeyString = function() { + return this.getPrivateKey().toString('hex') +} +Wallet.prototype.getPublicKey = function() { + return ethUtil.privateToPublic(this.privKey) +} +Wallet.prototype.getPublicKeyString = function() { + return '0x' + this.getPublicKey().toString('hex') +} +Wallet.prototype.getAddress = function() { + return ethUtil.privateToAddress(this.privKey) +} +Wallet.prototype.getAddressString = function() { + return '0x' + this.getAddress().toString('hex') +} +Wallet.prototype.getChecksumAddressString = function() { + return ethUtil.toChecksumAddress(this.getAddressString()) +} +Wallet.fromPrivateKey = function(priv) { + return new Wallet(priv) +} +Wallet.prototype.toV3 = function(password, opts) { + opts = opts || {} + var salt = opts.salt || ethUtil.crypto.randomBytes(32) + var iv = opts.iv || ethUtil.crypto.randomBytes(16) + var derivedKey + var kdf = opts.kdf || 'scrypt' + var kdfparams = { + dklen: opts.dklen || 32, + salt: salt.toString('hex') + } + if (kdf === 'pbkdf2') { + kdfparams.c = opts.c || 262144 + kdfparams.prf = 'hmac-sha256' + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') + } else if (kdf === 'scrypt') { + // FIXME: support progress reporting callback + kdfparams.n = opts.n || 262144 + kdfparams.r = opts.r || 8 + kdfparams.p = opts.p || 1 + derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else { + throw new Error('Unsupported kdf') + } + var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) + if (!cipher) { + throw new Error('Unsupported cipher') + } + var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) + return { + version: 3, + id: ethUtil.uuid.v4({ + random: opts.uuid || ethUtil.crypto.randomBytes(16) + }), + address: this.getAddress().toString('hex'), + Crypto: { + ciphertext: ciphertext.toString('hex'), + cipherparams: { + iv: iv.toString('hex') + }, + cipher: opts.cipher || 'aes-128-ctr', + kdf: kdf, + kdfparams: kdfparams, + mac: mac.toString('hex') + } + } +} +Wallet.prototype.toJSON = function() { + return { + address: this.getAddressString(), + checksumAddress: this.getChecksumAddressString(), + privKey: this.getPrivateKeyString(), + pubKey: this.getPublicKeyString(), + publisher:"MyEtherWallet", + encrypted:false, + version:2 + } +} +Wallet.fromMyEtherWallet = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var privKey + if (!json.locked) { + if (json.private.length !== 64) { + throw new Error('Invalid private key length') + } + privKey = new Buffer(json.private, 'hex') + } else { + if (typeof password !== 'string') { + throw new Error('Password required') + } + if (password.length < 7) { + throw new Error('Password must be at least 7 characters') + } + var cipher = json.encrypted ? json.private.slice(0, 128) : json.private + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + } + var wallet = new Wallet(privKey) + if (wallet.getAddressString() !== json.address) { + throw new Error('Invalid private key or address') + } + return wallet +} +Wallet.fromMyEtherWalletV2 = function (input){ + var json = (typeof input === 'object') ? input : JSON.parse(input); + if (json.privKey.length !== 64) { + throw new Error('Invalid private key length'); + }; + var privKey = new Buffer(json.privKey, 'hex'); + return new Wallet(privKey); +} +Wallet.fromEthSale = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var encseed = new Buffer(json.encseed, 'hex') + var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) + var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) + var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) + var wallet = new Wallet(ethUtil.sha3(seed)) + if (wallet.getAddress().toString('hex') !== json.ethaddr) { + throw new Error('Decoded key mismatch - possibly wrong passphrase') + } + return wallet +} +Wallet.fromMyEtherWalletKey = function(input, password) { + var cipher = input.slice(0, 128) + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + return new Wallet(privKey) +} +Wallet.fromV3 = function(input, password, nonStrict) { + var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) + if (json.version !== 3) { + throw new Error('Not a V3 wallet') + } + var derivedKey + var kdfparams + if (json.crypto.kdf === 'scrypt') { + kdfparams = json.crypto.kdfparams + derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else if (json.crypto.kdf === 'pbkdf2') { + kdfparams = json.crypto.kdfparams + if (kdfparams.prf !== 'hmac-sha256') { + throw new Error('Unsupported parameters to PBKDF2') + } + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') + } else { + throw new Error('Unsupported key derivation scheme') + } + var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) + if (mac.toString('hex') !== json.crypto.mac) { + throw new Error('Key derivation failed - possibly wrong passphrase') + } + var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) + var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') + return new Wallet(seed) +} +Wallet.prototype.toV3String = function(password, opts) { + return JSON.stringify(this.toV3(password, opts)) +} +Wallet.prototype.getV3Filename = function (timestamp) { + var ts = timestamp ? new Date(timestamp) : new Date() + return [ + 'UTC--', + ts.toJSON().replace(/:/g, '-'), + '--', + this.getAddress().toString('hex') + ].join('') +} +Wallet.decipherBuffer = function(decipher, data) { + return Buffer.concat([decipher.update(data), decipher.final()]) +} +Wallet.decodeCryptojsSalt = function(input) { + var ciphertext = new Buffer(input, 'base64') + if (ciphertext.slice(0, 8).toString() === 'Salted__') { + return { + salt: ciphertext.slice(8, 16), + ciphertext: ciphertext.slice(16) + } + } else { + return { + ciphertext: ciphertext + } + } +} +Wallet.evp_kdf = function(data, salt, opts) { + // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` + + function iter(block) { + var hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + hash.update(data) + hash.update(salt) + block = hash.digest() + for (var i = 1; i < (opts.count || 1); i++) { + hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + block = hash.digest() + } + return block + } + var keysize = opts.keysize || 16 + var ivsize = opts.ivsize || 16 + var ret = [] + var i = 0 + while (Buffer.concat(ret).length < (keysize + ivsize)) { + ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) + i++ + } + var tmp = Buffer.concat(ret) + return { + key: tmp.slice(0, keysize), + iv: tmp.slice(keysize, keysize + ivsize) + } +} +Wallet.walletRequirePass = function(ethjson) { + var jsonArr; + try { + jsonArr = JSON.parse(ethjson); + } catch (err) { + throw globalFuncs.errorMsgs[3]; + } + if (jsonArr.encseed != null) return true; + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true + else if (jsonArr.hash != null && jsonArr.locked) return true; + else if (jsonArr.hash != null && !jsonArr.locked) return false; + else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; + else + throw globalFuncs.errorMsgs[2]; +} +Wallet.getWalletFromPrivKeyFile = function(strjson, password) { + var jsonArr = JSON.parse(strjson); + if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); + else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); + else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); + else + throw globalFuncs.errorMsgs[2]; +} module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":121}],32:[function(require,module,exports){ -'use strict'; -var globalService = function($http, $httpParamSerializerJQLike) { - globalFuncs.checkAndRedirectHTTPS(); - ajaxReq.http = $http; - ajaxReq.postSerializer = $httpParamSerializerJQLike; - - var tabs = { - generateWallet: { - id: 0, - name: "NAV_GenerateWallet", - url: "generate-wallet", - mew: true, - cx: false, - }, - bulkGenerate: { - id: 1, - name: "NAV_BulkGenerate", - url: "bulk-generate", - mew: false, - cx: false - }, - myWallet: { - id: 2, - name: "NAV_MyWallets", - url: "my-wallet", - mew: false, - cx: true - }, - addWallet: { - id: 3, - name: "NAV_AddWallet", - url: "add-wallet", - mew: false, - cx: true - }, - sendTransaction: { - id: 4, - name: "NAV_SendEther", - url: "send-transaction", - mew: true, - cx: true - }, - tokens: { - id: 5, - name: "NAV_SendTokens", - url: "send-tokens", - mew: true, - cx: true - }, - offlineTransaction: { - id: 6, - name: "NAV_Offline", - url:"offline-transaction", - mew: true, - cx: false - }, - dao: { - id: 7, - name: "NAV_WithdrawDAO", - url: "the-dao", - mew: true, - cx: true - }, - digix: { - id: 8, - name: "NAV_ClaimDGD", - url: "digix", - mew: true, - cx: true - }, - deployContract: { - id: 9, - name: "NAV_DeployContract", - url: "deploy-contract", - mew: true, - cx: true - }, - viewWalletInfo: { - id: 10, - name: "NAV_ViewWallet", - url: "view-wallet-info", - mew: true, - cx: false - }, - help: { - id: 11, - name: "NAV_Help", - url: "help", - mew: true, - cx: true - } - }; - var currentTab = 0; - if(typeof chrome != 'undefined') - currentTab = chrome.windows === undefined ? 0 : 3; - return { - tabs: tabs, - currentTab: currentTab - }; -}; -module.exports = globalService; - - +},{"buffer":122}],32:[function(require,module,exports){ +'use strict'; +var globalService = function($http, $httpParamSerializerJQLike) { + globalFuncs.checkAndRedirectHTTPS(); + ajaxReq.http = $http; + ajaxReq.postSerializer = $httpParamSerializerJQLike; + + var tabs = { + generateWallet: { + id: 0, + name: "NAV_GenerateWallet", + url: "generate-wallet", + mew: true, + cx: false, + }, + bulkGenerate: { + id: 1, + name: "NAV_BulkGenerate", + url: "bulk-generate", + mew: false, + cx: false + }, + myWallet: { + id: 2, + name: "NAV_MyWallets", + url: "my-wallet", + mew: false, + cx: true + }, + addWallet: { + id: 3, + name: "NAV_AddWallet", + url: "add-wallet", + mew: false, + cx: true + }, + sendTransaction: { + id: 4, + name: "NAV_SendEther", + url: "send-transaction", + mew: true, + cx: true + }, + tokens: { + id: 5, + name: "NAV_SendTokens", + url: "send-tokens", + mew: true, + cx: true + }, + offlineTransaction: { + id: 6, + name: "NAV_Offline", + url:"offline-transaction", + mew: true, + cx: false + }, + dao: { + id: 7, + name: "NAV_WithdrawDAO", + url: "the-dao", + mew: true, + cx: true + }, + digix: { + id: 8, + name: "NAV_ClaimDGD", + url: "digix", + mew: true, + cx: true + }, + deployContract: { + id: 9, + name: "NAV_DeployContract", + url: "deploy-contract", + mew: true, + cx: true + }, + viewWalletInfo: { + id: 10, + name: "NAV_ViewWallet", + url: "view-wallet-info", + mew: true, + cx: false + }, + help: { + id: 11, + name: "NAV_Help", + url: "help", + mew: true, + cx: true + } + }; + var currentTab = 0; + if(typeof chrome != 'undefined') + currentTab = chrome.windows === undefined ? 0 : 3; + return { + tabs: tabs, + currentTab: currentTab + }; +}; +module.exports = globalService; + + },{}],33:[function(require,module,exports){ -'use strict'; -var walletService = function() { - return { - wallet: null, - password:'' - } -}; +'use strict'; +var walletService = function() { + return { + wallet: null, + password:'' + } +}; module.exports = walletService; },{}],34:[function(require,module,exports){ -'use strict'; -var Token = function(contractAddress, userAddress, symbol, decimal) { - this.contractAddress = contractAddress; - this.userAddress = userAddress - this.symbol = symbol;; - this.decimal = decimal; - this.setBalance(); - this.balance = "loading"; -} -Token.balanceHex = "0x70a08231"; -Token.transferHex = "0xa9059cbb"; -Token.popTokens = [{ - "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", - "symbol": "DAO", - "decimal": 16 -}, -{ - "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", - "symbol": "DGD", - "decimal": 9 -}, -{ - "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", - "symbol": "DGDb", - "decimal": 0 -}, -{ - "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "symbol": "MKR", - "decimal": 18 -}, -{ - "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", - "symbol": "XAUR", - "decimal": 8 -}, -{ - "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", - "symbol": "🦄 Unicorn", - "decimal": 0 -}, -{ - "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", - "symbol": "🍺 BeerCoin", - "decimal": 0 -} -]; -Token.prototype.getContractAddress = function() { - return this.contractAddress; -} -Token.prototype.getUserAddress = function() { - return this.userAddress; -} -Token.prototype.getSymbol = function() { - return this.symbol; -} -Token.prototype.getDecimal = function() { - return this.decimal; -} -Token.prototype.getBalance = function() { - return this.balance; -} -Token.prototype.getBalanceBN = function() { - return this.balanceBN; -} -Token.prototype.setBalance = function() { - var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); - var parentObj = this; - ajaxReq.getEthCall(balanceCall, function(data) { - if (!data.error) { - parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); - parentObj.balanceBN = new BigNumber(data.data).toString(); - } - }); -} -Token.prototype.getData = function(toAdd, value) { - try { - if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; - var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); - var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); - var data = Token.transferHex + toAdd + value; - return { - isError: false, - data: data - }; - } catch (e) { - return { - isError: true, - error: e - }; - } -} -module.exports = Token; +'use strict'; +var Token = function(contractAddress, userAddress, symbol, decimal) { + this.contractAddress = contractAddress; + this.userAddress = userAddress + this.symbol = symbol;; + this.decimal = decimal; + this.setBalance(); + this.balance = "loading"; +} +Token.balanceHex = "0x70a08231"; +Token.transferHex = "0xa9059cbb"; +Token.popTokens = [{ + "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "symbol": "DAO", + "decimal": 16 +}, +{ + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "symbol": "DGD", + "decimal": 9 +}, +{ + "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", + "symbol": "DGDb", + "decimal": 0 +}, +{ + "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", + "symbol": "MKR", + "decimal": 18 +}, +{ + "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "symbol": "XAUR", + "decimal": 8 +}, +{ + "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", + "symbol": "🦄 Unicorn", + "decimal": 0 +}, +{ + "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", + "symbol": "🍺 BeerCoin", + "decimal": 0 +} +]; +Token.prototype.getContractAddress = function() { + return this.contractAddress; +} +Token.prototype.getUserAddress = function() { + return this.userAddress; +} +Token.prototype.getSymbol = function() { + return this.symbol; +} +Token.prototype.getDecimal = function() { + return this.decimal; +} +Token.prototype.getBalance = function() { + return this.balance; +} +Token.prototype.getBalanceBN = function() { + return this.balanceBN; +} +Token.prototype.setBalance = function() { + var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); + var parentObj = this; + ajaxReq.getEthCall(balanceCall, function(data) { + if (!data.error) { + parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); + parentObj.balanceBN = new BigNumber(data.data).toString(); + } + }); +} +Token.prototype.getData = function(toAdd, value) { + try { + if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; + var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); + var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); + var data = Token.transferHex + toAdd + value; + return { + isError: false, + data: data + }; + } catch (e) { + return { + isError: true, + error: e + }; + } +} +module.exports = Token; },{}],35:[function(require,module,exports){ -// Arabic -'use strict'; -var ar = function() {} -ar.code = 'ar'; -ar.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ar; +// Arabic +'use strict'; +var ar = function() {} +ar.code = 'ar'; +ar.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ar; },{}],36:[function(require,module,exports){ -// Bulgarian -'use strict'; -var bg = function() {} -bg.code = 'bg'; -bg.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = bg; +// Bulgarian +'use strict'; +var bg = function() {} +bg.code = 'bg'; +bg.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = bg; },{}],37:[function(require,module,exports){ -// German -'use strict'; -var de = function() {} -de.code = 'de'; -de.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Deine Wallets', - NAV_AddWallet: 'Wallet hinzufügen', - NAV_GenerateWallet: 'Wallet erstellen', - NAV_BulkGenerate: 'Mehrere Wallets erstellen', - NAV_SendEther: 'Sende Ether', - NAV_SendTokens: 'Sende Tokens', - NAV_Offline: 'Sende offline', - NAV_WithdrawDAO: 'DAO Token entnehmen', - DAO_TitleLong: 'DAO Token in ETH umwandeln', - NAV_ClaimDGD: 'DGD geltend machen', - DGD_TitleLong: 'DGD Token geltend machen', - NAV_DeployContract: 'Vertrag aufstellen', - NAV_MyWallets: 'Meine Wallets', - NAV_ViewWallet: 'Wallet Infos anzeigen', - NAV_Help: 'Hilfe', - NAV_Contact: 'Kontakt', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Passwort', - x_Download: 'Herunterladen', - x_Address: 'Deine Adresse', - x_Save: 'Sichern', - x_Cancel: 'Abbrechen', - x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', - x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', - x_PrivKey2: 'Privater Schlüssel', - x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', - x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', - x_Json: 'JSON-Datei (unverschlüsselt)', - x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', - x_PrintShort: 'Drucken', - x_Print: 'Papier-Version des Wallets drucken', - x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', - x_CSV: 'CSV-Datei (unverschlüsselt)', - x_TXT: 'TXT-Datei (unverschlüsselt)', - - /* Header */ - MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', - CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', - FOOTER_1b: 'Erstellt von', - FOOTER_2: 'Spenden sind herzlich willkommen:', - FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Kontostand: ', - sidebar_TokenBal: 'Token Kontostand: ', - sidebar_Equiv: 'Währungs-Gegenwerte: ', - sidebar_TransHistory: 'Transaktions-Historie: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', - sidebar_donate: 'Spenden', - sidebar_thanks: 'Dankeschön!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', - decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', - decrypt_Select: 'Wallet auswählen:', - - /* Add Wallet */ - ADD_Label_1: 'Was möchtest du tun?', - ADD_Radio_1: 'Neues Wallet erstellen', - ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', - ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', - ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', - ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', - ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Label_2: 'Wähle ein Kürzel:', - ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', - ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', - ADD_Label_5: 'Kontoadresse eingeben: ', - ADD_Label_6: 'Wallet entsperren', - ADD_Label_6_short: 'Entsperren', - ADD_Label_7: 'Kontoadresse hinzufügen', - - /* Generate Wallets */ - GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', - GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', - GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', - GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', - GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', - GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', - GEN_Label_3: 'Sichere deine Kontoadresse.', - GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Anzahl zu generierender Wallets', - BULK_Label_2: 'Wallets erstellen', - BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', - - /* Sending Ether and Tokens */ - SEND_addr: 'An Adresse: ', - SEND_amount: 'Zu sendender Betrag: ', - SEND_amount_short: 'Betrag', - SEND_custom: 'Benutzerdefiniert', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', - SEND_generate: 'Erzeuge Transaktion', - SEND_raw: 'Transaktion (Binärformat)', - SEND_signed: 'Signierte Transaktion', - SEND_trans: 'Sende Transaktion', - SENDModal_Title: 'Achtung! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du bist dabei, ', - SENDModal_Content_2: ' an die Adresse ', - SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', - SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', - SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', - SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-Symbol: ', - TOKEN_Dec: 'Dezimalstellen: ', - - /* Send Transaction */ - TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', - TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', - TRANS_standard: 'ETH (Standard Transaktion)', - TRANS_eth: 'Nur ETH', - TRANS_etc: 'Nur ETC', - TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', - TRANS_data: 'Daten: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', - TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', - TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', - TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', - TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', - TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', - TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', - - /* Offline Transaction */ - OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', - OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', - OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', - OFFLINE_Step1_Button: 'Informationen sammeln', - OFFLINE_Step1_Label_1: 'Von Adresse: ', - OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', - OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', - OFFLINE_Step2_Label_1: 'An Adresse: ', - OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', - OFFLINE_Step2_Label_3: 'Gaspreis ', - OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_6: 'Daten', - OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', - OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', - OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', - OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', - - /* DAO */ - DAO_bal1: 'Bei Block 1,919,999', - DAO_bal2: 'momentan', // momentaner? - DAO_TitleETH: 'DAO Token in ETH umwandeln', - DAO_TitleETC: 'DAO Token in ETC umwandeln', - DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', - DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', - DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', - DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', - DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', - DAOModal_Title: 'Nur zur Sicherheit...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Du bist dabei', - DAOModal_2: 'DAO Token an', - DAOModal_3: 'zu senden im Austausch für', // "in return for" - - /* Digix */ - DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', - DGD_Label_1: 'Erwartete Gebühren:', - DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ - DGD_Label_3: 'Gaspreis:', - DGD_Generate: 'Anspruch geltend machen', - DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode generieren', - DEP_generated: 'Generierter Bytecode', - DEP_signtx: 'Transaktion signieren', - DEP_interface: 'Generiertes Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Spitzname', - MYWAL_Address: 'Wallet Addresse', - MYWAL_Bal: 'Guthaben', - MYWAL_Edit: 'Bearbeiten', - MYWAL_View: 'Ansehen', - MYWAL_Remove: 'Löschen', - MYWAL_RemoveWal: 'Wallet löschen:', - MYWAL_WatchOnly: 'Deine Watch-Only Konten', - MYWAL_Viewing: 'Du siehst Wallet: ', - MYWAL_Hide: 'Wallet Info verstecken', - MYWAL_Edit_2: 'Wallet bearbeiten: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', - MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', - MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', - VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', - VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', - - /* Chrome Extension */ - CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', - CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Bitte gültigen Betrag eingeben', - ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', - ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', - ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', - ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', - ERROR_6: 'Ungültige Addresse. ', - ERROR_7: 'Ungültiges Passwort. ', - ERROR_8: 'Ungültiger Betrag. ', - ERROR_9: 'Ungültiges Gaslimit. ', - ERROR_10: 'Ungültiger Datenwert. ', - ERROR_11: 'Ungültiger Gasbetrag. ', - ERROR_12: 'Ungültige Nonce. ', - ERROR_13: 'Ungültige unterzeichnete Transaktion. ', - ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', - ERROR_15: 'Wallet nicht gefunden. ', - ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', - ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', - ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', - ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', - ERROR_20: 'Ungültiges Symbol', - SUCCESS_1: 'Gültige Addresse', - SUCCESS_2: 'Wallet erfolgreich entschlüsselt', - SUCCESS_3: 'Transaktion übermittelt. TX ID: ', - SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', - SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', - SUCCESS_6: 'Ausgewählte Datei: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', - TranslatorName_1: 'christoph2806 · K ·', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', - TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'huhn_solo · ', - TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', - TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: 'danielsun174 · ffidan61', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', - HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', - HELP_Remind_Title: 'Ein paar Reminder', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', - HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', - - HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', - HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', - HELP_0_Desc_2: 'Erstelle ein neues Wallet.', - HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', - HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', - HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', - - HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', - HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', - HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', - HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', - HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', - HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', - - HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', - HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', - HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', - HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', - HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', - HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', - HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Entpacke es.', - HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Wenn du an einem PC bist:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = de; +// German +'use strict'; +var de = function() {} +de.code = 'de'; +de.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Deine Wallets', + NAV_AddWallet: 'Wallet hinzufügen', + NAV_GenerateWallet: 'Wallet erstellen', + NAV_BulkGenerate: 'Mehrere Wallets erstellen', + NAV_SendEther: 'Sende Ether', + NAV_SendTokens: 'Sende Tokens', + NAV_Offline: 'Sende offline', + NAV_WithdrawDAO: 'DAO Token entnehmen', + DAO_TitleLong: 'DAO Token in ETH umwandeln', + NAV_ClaimDGD: 'DGD geltend machen', + DGD_TitleLong: 'DGD Token geltend machen', + NAV_DeployContract: 'Vertrag aufstellen', + NAV_MyWallets: 'Meine Wallets', + NAV_ViewWallet: 'Wallet Infos anzeigen', + NAV_Help: 'Hilfe', + NAV_Contact: 'Kontakt', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Passwort', + x_Download: 'Herunterladen', + x_Address: 'Deine Adresse', + x_Save: 'Sichern', + x_Cancel: 'Abbrechen', + x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', + x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', + x_PrivKey2: 'Privater Schlüssel', + x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', + x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', + x_Json: 'JSON-Datei (unverschlüsselt)', + x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', + x_PrintShort: 'Drucken', + x_Print: 'Papier-Version des Wallets drucken', + x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', + x_CSV: 'CSV-Datei (unverschlüsselt)', + x_TXT: 'TXT-Datei (unverschlüsselt)', + + /* Header */ + MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', + CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', + FOOTER_1b: 'Erstellt von', + FOOTER_2: 'Spenden sind herzlich willkommen:', + FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Kontostand: ', + sidebar_TokenBal: 'Token Kontostand: ', + sidebar_Equiv: 'Währungs-Gegenwerte: ', + sidebar_TransHistory: 'Transaktions-Historie: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', + sidebar_donate: 'Spenden', + sidebar_thanks: 'Dankeschön!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', + decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', + decrypt_Select: 'Wallet auswählen:', + + /* Add Wallet */ + ADD_Label_1: 'Was möchtest du tun?', + ADD_Radio_1: 'Neues Wallet erstellen', + ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', + ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', + ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', + ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', + ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Label_2: 'Wähle ein Kürzel:', + ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', + ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', + ADD_Label_5: 'Kontoadresse eingeben: ', + ADD_Label_6: 'Wallet entsperren', + ADD_Label_6_short: 'Entsperren', + ADD_Label_7: 'Kontoadresse hinzufügen', + + /* Generate Wallets */ + GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', + GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', + GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', + GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', + GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', + GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', + GEN_Label_3: 'Sichere deine Kontoadresse.', + GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Anzahl zu generierender Wallets', + BULK_Label_2: 'Wallets erstellen', + BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', + + /* Sending Ether and Tokens */ + SEND_addr: 'An Adresse: ', + SEND_amount: 'Zu sendender Betrag: ', + SEND_amount_short: 'Betrag', + SEND_custom: 'Benutzerdefiniert', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', + SEND_generate: 'Erzeuge Transaktion', + SEND_raw: 'Transaktion (Binärformat)', + SEND_signed: 'Signierte Transaktion', + SEND_trans: 'Sende Transaktion', + SENDModal_Title: 'Achtung! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du bist dabei, ', + SENDModal_Content_2: ' an die Adresse ', + SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', + SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', + SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', + SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-Symbol: ', + TOKEN_Dec: 'Dezimalstellen: ', + + /* Send Transaction */ + TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', + TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', + TRANS_standard: 'ETH (Standard Transaktion)', + TRANS_eth: 'Nur ETH', + TRANS_etc: 'Nur ETC', + TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', + TRANS_data: 'Daten: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', + TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', + TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', + TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', + TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', + TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', + TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', + + /* Offline Transaction */ + OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', + OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', + OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', + OFFLINE_Step1_Button: 'Informationen sammeln', + OFFLINE_Step1_Label_1: 'Von Adresse: ', + OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', + OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', + OFFLINE_Step2_Label_1: 'An Adresse: ', + OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', + OFFLINE_Step2_Label_3: 'Gaspreis ', + OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_6: 'Daten', + OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', + OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', + OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', + OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', + + /* DAO */ + DAO_bal1: 'Bei Block 1,919,999', + DAO_bal2: 'momentan', // momentaner? + DAO_TitleETH: 'DAO Token in ETH umwandeln', + DAO_TitleETC: 'DAO Token in ETC umwandeln', + DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', + DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', + DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', + DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', + DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', + DAOModal_Title: 'Nur zur Sicherheit...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Du bist dabei', + DAOModal_2: 'DAO Token an', + DAOModal_3: 'zu senden im Austausch für', // "in return for" + + /* Digix */ + DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', + DGD_Label_1: 'Erwartete Gebühren:', + DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ + DGD_Label_3: 'Gaspreis:', + DGD_Generate: 'Anspruch geltend machen', + DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode generieren', + DEP_generated: 'Generierter Bytecode', + DEP_signtx: 'Transaktion signieren', + DEP_interface: 'Generiertes Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Spitzname', + MYWAL_Address: 'Wallet Addresse', + MYWAL_Bal: 'Guthaben', + MYWAL_Edit: 'Bearbeiten', + MYWAL_View: 'Ansehen', + MYWAL_Remove: 'Löschen', + MYWAL_RemoveWal: 'Wallet löschen:', + MYWAL_WatchOnly: 'Deine Watch-Only Konten', + MYWAL_Viewing: 'Du siehst Wallet: ', + MYWAL_Hide: 'Wallet Info verstecken', + MYWAL_Edit_2: 'Wallet bearbeiten: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', + MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', + MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', + VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', + VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', + + /* Chrome Extension */ + CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', + CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Bitte gültigen Betrag eingeben', + ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', + ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', + ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', + ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', + ERROR_6: 'Ungültige Addresse. ', + ERROR_7: 'Ungültiges Passwort. ', + ERROR_8: 'Ungültiger Betrag. ', + ERROR_9: 'Ungültiges Gaslimit. ', + ERROR_10: 'Ungültiger Datenwert. ', + ERROR_11: 'Ungültiger Gasbetrag. ', + ERROR_12: 'Ungültige Nonce. ', + ERROR_13: 'Ungültige unterzeichnete Transaktion. ', + ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', + ERROR_15: 'Wallet nicht gefunden. ', + ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', + ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', + ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', + ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', + ERROR_20: 'Ungültiges Symbol', + SUCCESS_1: 'Gültige Addresse', + SUCCESS_2: 'Wallet erfolgreich entschlüsselt', + SUCCESS_3: 'Transaktion übermittelt. TX ID: ', + SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', + SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', + SUCCESS_6: 'Ausgewählte Datei: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', + TranslatorName_1: 'christoph2806 · K ·', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', + TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'huhn_solo · ', + TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', + TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: 'danielsun174 · ffidan61', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', + HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', + HELP_Remind_Title: 'Ein paar Reminder', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', + HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', + + HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', + HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', + HELP_0_Desc_2: 'Erstelle ein neues Wallet.', + HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', + HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', + HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', + + HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', + HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', + HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', + HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', + HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', + HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', + + HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', + HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', + HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', + HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', + HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', + HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', + HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Entpacke es.', + HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Wenn du an einem PC bist:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = de; },{}],38:[function(require,module,exports){ -// Greek -'use strict'; -var el = function() {} -el.code = 'el'; -el.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - SUCCESS_6: 'File Selected: ', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* Navigation*/ - NAV_YourWallets: 'Τα Πορτοφόλια σας', - NAV_AddWallet: 'Προσθήκη Πορτοφολιού', - NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', - NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', - NAV_SendEther: 'Αποστολή Ether', - NAV_SendTokens: 'Αποστολή Tokens', - NAV_Offline: 'Αποστολή εκτός Σύνδεσης', - NAV_WithdrawDAO: 'Ανάληψη DAO', - DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', - NAV_ClaimDGD: 'Διεκδίκηση DGD', - DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', - NAV_MyWallets: 'Τα Πορτοφόλια μου', - NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', - NAV_Help: 'Βοήθεια', - NAV_Contact: 'Επικοινωνία', - - /* General */ - x_Wallet: 'Πορτοφόλι', - x_Password: 'Κωδικός', - x_Download: 'Λήψη', - x_Address: 'Η Διεύθυνσή σας', - x_Save: 'Αποθήκευση', - x_Cancel: 'Ακύρωση', - x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', - x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', - x_PrivKey2: 'Ιδιωτικό Κλειδί', - x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', - x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', - x_Keystore2: 'Αρχείο Keystore/JSON', - x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', - x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', - x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', - x_PrintShort: 'Εκτύπωση', - x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', - x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', - x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', - x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', - - /* Header */ - MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', - CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', - MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - - /* Footer */ - FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', - FOOTER_1b: 'Δημιουργήθηκε από', - FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', - FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', - - /* Sidebar */ - sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', - sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', - sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', - sidebar_TokenBal: 'Υπόλοιπο Token: ', - sidebar_Equiv: 'Ισότιμες Αξίες: ', - sidebar_TransHistory: 'Ιστορικό Συναλλαγών', - sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', - sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', - sidebar_donate: 'Δωρεά', - sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', - decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', - decrypt_Select: 'Επιλέξτε Πορτοφόλι:', - - /* Add Wallet */ - ADD_Label_1: 'Τι θα θέλατε να κάνετε;', - ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', - ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', - ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', - ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', - ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', - ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', - ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', - ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', - ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', - ADD_Label_6_short: 'Ξεκλείδωμα', - ADD_Label_7: 'Προσθήκη Λογαριασμού', - - /* Generate Wallets */ - GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', - GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', - GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', - GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', - GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', - GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', - GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', - GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', - BULK_Label_2: 'Δημιουργία Πορτοφολιών', - BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Προς Διεύθυνση: ', - SEND_amount: 'Ποσό για αποστολή: ', - SEND_amount_short: 'Ποσό', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', - SEND_raw: 'Ακατέργαστη Συναλλαγή', - SEND_signed: 'Υπογεγραμμένη Συναλλαγή', - SEND_trans: 'Αποστολή Συναλλαγής', - SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', - SENDModal_Title: 'Προσοχή! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Πρόκειται να στείλετε', - SENDModal_Content_2: 'στη διεύθυνση', - SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', - SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', - SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', - SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', - SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', - - /* Tokens */ - TOKEN_Addr: 'Διεύθυνση: ', - TOKEN_Symbol: 'Σύμβολο Token: ', - TOKEN_Dec: 'Δεκαδικά: ', - - /* Send Transaction */ - TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', - TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', - TRANS_standard: 'ETH (Standard Συναλλαγή)', - TRANS_eth: 'Μόνο ETH', - TRANS_etc: 'Μόνο ETC', - TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', - TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', - TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', - TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', - TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', - - /* Offline Transaction */ - OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', - OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', - OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', - OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', - OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', - OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', - OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', - OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', - OFFLINE_Step2_Label_3: 'Τιμή Gas ', - OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_4: 'Όριο Gas ', - OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', - OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', - OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', - - /* DAO */ - DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', - DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', - DAOModal_Title: 'Απλά για σιγουριά...', - - /* Digix */ - DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', - DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', - DGD_Label_3: 'Τιμή Gas:', - DGD_Generate: 'Δημιουργία Διεκδίκησης', - DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', - - /* My Wallet */ - MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', - MYWAL_Address: 'Διεύθυνση Πορτοφολιού', - MYWAL_Bal: 'Υπόλοιπο', - MYWAL_Edit: 'Επεξεργασία', - MYWAL_View: 'Προβολή', - MYWAL_Remove: 'Αφαίρεση', - MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', - MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', - MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', - MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', - MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', - MYWAL_Name: 'Όνομα Πορτοφολιού', - MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', - MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', - MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', - VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', - - /* CX */ - CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', - CX_quicksend: 'ΤαχυΑποστολή', - - /* Error Messages */ - ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', - ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', - ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', - ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', - ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', - ERROR_6: 'Λάθος Διεύθυνση. ', - ERROR_7: 'Λάθος κωδικός. ', - ERROR_8: 'Λάθος ποσό. ', - ERROR_9: 'Λάθος όριο gas. ', - ERROR_10: 'Λάθος data value. ', - ERROR_11: 'Λάθος ποσό gas. ', - ERROR_12: 'Λάθος nonce. ', - ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', - ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', - ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', - ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', - ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', - ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', - ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', - ERROR_20: 'Λάθος σύμβολο', - SUCCESS_1: 'Έγκυρη διεύθυνση', - SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', - SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', - SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', - SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', - TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'LefterisJP', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'Nikos Vavoulas ', - TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', - HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', - HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', - HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', - HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', - HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', - - HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', - HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', - HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', - HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', - HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', - HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = el; +// Greek +'use strict'; +var el = function() {} +el.code = 'el'; +el.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + SUCCESS_6: 'File Selected: ', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Τα Πορτοφόλια σας', + NAV_AddWallet: 'Προσθήκη Πορτοφολιού', + NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', + NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', + NAV_SendEther: 'Αποστολή Ether', + NAV_SendTokens: 'Αποστολή Tokens', + NAV_Offline: 'Αποστολή εκτός Σύνδεσης', + NAV_WithdrawDAO: 'Ανάληψη DAO', + DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', + NAV_ClaimDGD: 'Διεκδίκηση DGD', + DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', + NAV_MyWallets: 'Τα Πορτοφόλια μου', + NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', + NAV_Help: 'Βοήθεια', + NAV_Contact: 'Επικοινωνία', + + /* General */ + x_Wallet: 'Πορτοφόλι', + x_Password: 'Κωδικός', + x_Download: 'Λήψη', + x_Address: 'Η Διεύθυνσή σας', + x_Save: 'Αποθήκευση', + x_Cancel: 'Ακύρωση', + x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', + x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', + x_PrivKey2: 'Ιδιωτικό Κλειδί', + x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', + x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', + x_Keystore2: 'Αρχείο Keystore/JSON', + x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', + x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', + x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', + x_PrintShort: 'Εκτύπωση', + x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', + x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', + x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', + x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', + + /* Header */ + MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', + CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', + MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + + /* Footer */ + FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', + FOOTER_1b: 'Δημιουργήθηκε από', + FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', + FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', + + /* Sidebar */ + sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', + sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', + sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', + sidebar_TokenBal: 'Υπόλοιπο Token: ', + sidebar_Equiv: 'Ισότιμες Αξίες: ', + sidebar_TransHistory: 'Ιστορικό Συναλλαγών', + sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', + sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', + sidebar_donate: 'Δωρεά', + sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', + decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', + decrypt_Select: 'Επιλέξτε Πορτοφόλι:', + + /* Add Wallet */ + ADD_Label_1: 'Τι θα θέλατε να κάνετε;', + ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', + ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', + ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', + ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', + ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', + ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', + ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', + ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', + ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', + ADD_Label_6_short: 'Ξεκλείδωμα', + ADD_Label_7: 'Προσθήκη Λογαριασμού', + + /* Generate Wallets */ + GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', + GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', + GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', + GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', + GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', + GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', + GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', + GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', + BULK_Label_2: 'Δημιουργία Πορτοφολιών', + BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Προς Διεύθυνση: ', + SEND_amount: 'Ποσό για αποστολή: ', + SEND_amount_short: 'Ποσό', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', + SEND_raw: 'Ακατέργαστη Συναλλαγή', + SEND_signed: 'Υπογεγραμμένη Συναλλαγή', + SEND_trans: 'Αποστολή Συναλλαγής', + SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', + SENDModal_Title: 'Προσοχή! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Πρόκειται να στείλετε', + SENDModal_Content_2: 'στη διεύθυνση', + SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', + SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', + SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', + SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', + SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', + + /* Tokens */ + TOKEN_Addr: 'Διεύθυνση: ', + TOKEN_Symbol: 'Σύμβολο Token: ', + TOKEN_Dec: 'Δεκαδικά: ', + + /* Send Transaction */ + TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', + TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', + TRANS_standard: 'ETH (Standard Συναλλαγή)', + TRANS_eth: 'Μόνο ETH', + TRANS_etc: 'Μόνο ETC', + TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', + TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', + TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', + TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', + TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', + + /* Offline Transaction */ + OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', + OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', + OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', + OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', + OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', + OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', + OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', + OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', + OFFLINE_Step2_Label_3: 'Τιμή Gas ', + OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_4: 'Όριο Gas ', + OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', + OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', + OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', + + /* DAO */ + DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', + DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', + DAOModal_Title: 'Απλά για σιγουριά...', + + /* Digix */ + DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', + DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', + DGD_Label_3: 'Τιμή Gas:', + DGD_Generate: 'Δημιουργία Διεκδίκησης', + DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', + + /* My Wallet */ + MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', + MYWAL_Address: 'Διεύθυνση Πορτοφολιού', + MYWAL_Bal: 'Υπόλοιπο', + MYWAL_Edit: 'Επεξεργασία', + MYWAL_View: 'Προβολή', + MYWAL_Remove: 'Αφαίρεση', + MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', + MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', + MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', + MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', + MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', + MYWAL_Name: 'Όνομα Πορτοφολιού', + MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', + MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', + MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', + VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', + + /* CX */ + CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', + CX_quicksend: 'ΤαχυΑποστολή', + + /* Error Messages */ + ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', + ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', + ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', + ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', + ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', + ERROR_6: 'Λάθος Διεύθυνση. ', + ERROR_7: 'Λάθος κωδικός. ', + ERROR_8: 'Λάθος ποσό. ', + ERROR_9: 'Λάθος όριο gas. ', + ERROR_10: 'Λάθος data value. ', + ERROR_11: 'Λάθος ποσό gas. ', + ERROR_12: 'Λάθος nonce. ', + ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', + ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', + ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', + ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', + ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', + ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', + ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', + ERROR_20: 'Λάθος σύμβολο', + SUCCESS_1: 'Έγκυρη διεύθυνση', + SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', + SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', + SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', + SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', + TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'LefterisJP', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'Nikos Vavoulas ', + TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', + HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', + HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', + HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', + HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', + HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', + + HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', + HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', + HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', + HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', + HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', + HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = el; },{}],39:[function(require,module,exports){ -// English -'use strict'; -var en = function() {} -en.code = 'en'; -en.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: '', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = en; +// English +'use strict'; +var en = function() {} +en.code = 'en'; +en.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: '', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = en; },{}],40:[function(require,module,exports){ -// Spanish -'use strict'; -var es = function() {} -es.code = 'es'; -es.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Tus Carteras', - NAV_AddWallet: 'Añadir Cartera', - NAV_GenerateWallet: 'Generar Cartera', - NAV_BulkGenerate: 'Generar en Masa', - NAV_SendEther: 'Enviar Ether', - NAV_SendTokens: 'Enviar Tokens', - NAV_Offline: 'Enviar Desconectado', - NAV_WithdrawDAO: 'Retirar DAO', - DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', - NAV_ClaimDGD: 'Reclamar DGD', - DGD_TitleLong: 'Reclamar Tus Vales DGD', - NAV_MyWallets: 'Mis Carteras', - NAV_ViewWallet: 'Ver Información de las Carteras', - NAV_Help: 'Ayuda', - NAV_Contact: 'Contacto', - - /* General */ - x_Password: 'Contraseña', - x_Download: 'Descargar', - x_Address: 'Tu dirección', - x_Save: 'Guardar', - x_Cancel: 'Cancelar', - x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', - x_PrivKey: 'Clave Privada (sin encriptar)', - x_PrivKey2: 'Clave Privada', - x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', - x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', - x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', - x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', - x_Json: 'Fichero JSON (sin encriptar)', - x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', - x_PrintShort: 'Imprimir', - x_Print: 'Imprimir Cartera de Papel', - x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', - x_CSV: 'Fichero CSV (sin encriptar)', - x_TXT: 'Fichero TXT (sin encriptar)', - x_Wallet: 'Cartera', - -/* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Gracias a nuestros traductores: ', - TranslatorName_1: 'Ignacio Fernández del Álamo', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = es; +// Spanish +'use strict'; +var es = function() {} +es.code = 'es'; +es.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Tus Carteras', + NAV_AddWallet: 'Añadir Cartera', + NAV_GenerateWallet: 'Generar Cartera', + NAV_BulkGenerate: 'Generar en Masa', + NAV_SendEther: 'Enviar Ether', + NAV_SendTokens: 'Enviar Tokens', + NAV_Offline: 'Enviar Desconectado', + NAV_WithdrawDAO: 'Retirar DAO', + DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', + NAV_ClaimDGD: 'Reclamar DGD', + DGD_TitleLong: 'Reclamar Tus Vales DGD', + NAV_MyWallets: 'Mis Carteras', + NAV_ViewWallet: 'Ver Información de las Carteras', + NAV_Help: 'Ayuda', + NAV_Contact: 'Contacto', + + /* General */ + x_Password: 'Contraseña', + x_Download: 'Descargar', + x_Address: 'Tu dirección', + x_Save: 'Guardar', + x_Cancel: 'Cancelar', + x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', + x_PrivKey: 'Clave Privada (sin encriptar)', + x_PrivKey2: 'Clave Privada', + x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', + x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', + x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', + x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', + x_Json: 'Fichero JSON (sin encriptar)', + x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', + x_PrintShort: 'Imprimir', + x_Print: 'Imprimir Cartera de Papel', + x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', + x_CSV: 'Fichero CSV (sin encriptar)', + x_TXT: 'Fichero TXT (sin encriptar)', + x_Wallet: 'Cartera', + +/* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Gracias a nuestros traductores: ', + TranslatorName_1: 'Ignacio Fernández del Álamo', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = es; },{}],41:[function(require,module,exports){ -// Estonian -'use strict'; -var et = function() {} -et.code = 'et'; -et.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = et; +// Estonian +'use strict'; +var et = function() {} +et.code = 'et'; +et.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = et; },{}],42:[function(require,module,exports){ -// French -'use strict'; -var fr = function() {} -fr.code = 'fr'; -fr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Vos portefeuilles', - NAV_AddWallet: 'Ajout de portefeuille', - NAV_GenerateWallet: 'Génération de portefeuille', - NAV_BulkGenerate: 'Génération de portefeuilles par lots', - NAV_SendEther: 'Envoi d\'Ether', - NAV_SendTokens: 'Envoi de tokens', - NAV_Offline: 'Envoi hors-ligne', - NAV_WithdrawDAO: 'Retrait de la DAO', - DAO_TitleLong: 'Échange de tokens DAO contre des ETH', - NAV_ClaimDGD: 'Réclamation de DGD', - DGD_TitleLong: 'Réclamation de vos tokens DGD', - NAV_DeployContract: 'Déployer un contrat', - NAV_MyWallets: 'Mes portefeuilles', - NAV_ViewWallet: 'Visualisation d\'un portefeuille', - NAV_Help: 'Aide', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Portefeuille', - x_Password: 'Mot de passe', - x_Download: 'Télécharger', - x_Address: 'Votre adresse', - x_Save: 'Sauvegarder', - x_Cancel: 'Annuler', - x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', - x_PrivKey: 'Clé privée (non-chiffrée)', - x_PrivKey2: 'Clé privée', - x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', - x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', - x_Keystore2: 'Fichier Keystore/JSON', - x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', - x_Json: 'Fichier JSON (non-chiffré)', - x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', - x_PrintShort: 'Imprimer', - x_Print: 'Imprimer un portefeuille papier', - x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', - x_CSV: 'Fichier CSV (non-chiffré)', - x_TXT: 'Fichier TXT (non-chiffré)', - - /* Header */ - MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', - CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', - MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', - CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', - - /* Footer */ - FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', - FOOTER_1b: 'Créé par', - FOOTER_2: 'Donations extrêmement appréciées :', - FOOTER_3: 'Génération de portefeuille côté client par', - FOOTER_4: 'Avertissement', - - /* Sidebar */ - sidebar_AccountInfo: 'Informations du compte : ', - sidebar_AccountAddr: 'Addresse du compte : ', - sidebar_AccountBal: 'Solde du compte : ', - sidebar_TokenBal: 'Solde en tokens : ', - sidebar_Equiv: 'Valeur correspondante : ', - sidebar_TransHistory: 'Historique des transactions: ', - sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', - sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', - sidebar_donate: 'Faire une donation', - sidebar_thanks: 'MERCI !!!', - - /* Decrypt Panel */ - decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', - decrypt_Title: 'Choisissez le format de votre clé privée', - decrypt_Select: 'Choisissez un portefeuille :', - - /* Add Wallet */ - ADD_Label_1: 'Que voulez-vous faire ?', - ADD_Radio_1: 'Générer un nouveau portefeuille', - ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', - ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', - ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', - ADD_Radio_3: 'Collez/saisissez votre clé privée', - ADD_Radio_4: 'Ajoutez un compte', - ADD_Label_2: 'Nommez votre compte :', - ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', - ADD_Label_4: 'Ajouter un compte à afficher', - ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', - ADD_Label_5: 'Entrez l\'adresse : ', - ADD_Label_6: 'Déverrouiller votre portefeuille', - ADD_Label_6_short: 'Déverrouiller', - ADD_Label_7: 'Ajouter un compte', - - /* Generate Wallets */ - GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', - GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', - GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', - GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', - GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', - GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', - GEN_Label_3: 'Sauvegarder votre portefeuille.', - GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Nombre de portefeuilles à générer', - BULK_Label_2: 'Générer les portefeuilles', - BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Adresse de destination : ', - SEND_amount: 'Montant à envoyer : ', - SEND_amount_short: 'Montant', - SEND_custom: 'Spécifique', - SEND_gas: 'Gaz', - SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter - SEND_generate: 'Générer la transaction', - SEND_raw: 'Transaction brute', - SEND_signed: 'Transaction signée', - SEND_trans: 'Envoyer la transaction', - SENDModal_Title: 'Attention ! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', - SENDModal_Content_2: 'à l\'adresse', - SENDModal_Content_3: 'En êtes-vous sûr ?', - SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', - SENDModal_No: 'Non, je veux sortir d\'ici !', - SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adresse : ', - TOKEN_Symbol: 'Symbole du token : ', - TOKEN_Dec: 'Décimales : ', - - /* Send Transaction */ - TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', - TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', - TRANS_standard: 'ETH (transaction standard)', - TRANS_eth: 'ETH seulement', - TRANS_etc: 'ETC seulement', - TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', - TRANS_data: ' Données : ', - TRANS_gas: ' Gaz : ', - TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', - TRANSModal_Content_0: 'Note sur les transactions et services divers :', - TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', - TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', - TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', - TRANSModal_Yes: 'Génial, j\'ai compris.', - TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', - - /* Offline Transaction */ - OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', - OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', - OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', - OFFLINE_Step1_Button: 'Générer l\'information', - OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', - OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', - OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', - OFFLINE_Step2_Label_1: 'Adresse de destination : ', - OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', - OFFLINE_Step2_Label_3: 'Prix du gaz ', - OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_4: 'Limite de gaz ', - OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_6: 'Données', - OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', - OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', - OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', - OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', - - /* DAO */ - DAO_bal1: 'au bloc 1.919.999', - DAO_bal2: 'actuel', - DAO_TitleETH: 'Retrait de DAO en ETH', - DAO_TitleETC: 'Retrait de DAO en ETC', - DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', - DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', - DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', - DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', - DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', - DAOModal_Title: 'Juste pour être sûr...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Vous êtes sur le point de retirer', - DAOModal_2: 'tokens DAO vers', - DAOModal_3: 'pour', // "in return for" - - /* Digix */ - DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', - DGD_Label_1: 'Estimation des frais consommés :', - DGD_Label_2: 'Frais maximum fournis :', - DGD_Label_3: 'Prix du gaz :', - DGD_Generate: 'Générer une réclamation', - DGD_Content: 'Vous allez réclamer vos tokens DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Générer le bytecode', - DEP_generated: 'Bytecode généré', - DEP_signtx: 'Signer la transaction', - DEP_interface: 'Interface générée', - - /* My Wallet */ - MYWAL_Nick: 'Nom du portefeuille', - MYWAL_Address: 'Adresse du portefeuille', - MYWAL_Bal: 'Solde', - MYWAL_Edit: 'Modifier', - MYWAL_View: 'Voir', - MYWAL_Remove: 'Supprimer', - MYWAL_RemoveWal: 'Supprimer le portefeuille :', - MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', - MYWAL_Viewing: 'Affichage des portefeuilles : ', - MYWAL_Hide: 'Cacher les informations sur le portefeuille', - MYWAL_Edit_2: 'Modifier le portefeuille : ', - MYWAL_Name: 'Nom du portefeuille', - MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', - MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', - MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', - VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', - - /* Chrome Extension */ - CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', - CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Veuillez entrer un montant valide.', - ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', - ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', - ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', - ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', - ERROR_6: 'Adresse invalide. ', - ERROR_7: 'Mot de passe invalide. ', - ERROR_8: 'Montant invalide. ', - ERROR_9: 'Limite de gaz invalide. ', - ERROR_10: 'Valeur des donnnées invalide. ', - ERROR_11: 'Montant de gaz invalide. ', - ERROR_12: 'Nonce invalide. ', - ERROR_13: 'Transaction signée invalide. ', - ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', - ERROR_15: 'Portefeuille non trouvé. ', - ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', - ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', - ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', - ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', - ERROR_20: 'Symbole invalide', - SUCCESS_1: 'Adresse valide', - SUCCESS_2: 'Portefeuille déchiffré avec succès', - SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', - SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', - SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', - SUCCESS_6: 'Fichier sélectionné : ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', - /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ - TranslatorName_2: 'Jean Zundel · ', - TranslatorAddr_2: '', - /* Translator 2: */ - TranslatorName_3: 'girards', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', - HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', - HELP_Remind_Title: 'Quelques rappels :', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', - HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', - - HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', - HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', - HELP_0_Desc_2: 'Créez un nouveau portefeuille.', - HELP_0_Desc_3: 'Sauvegardez le portefeuille.', - HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', - HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', - - HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', - HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', - HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', - HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', - HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', - HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', - - HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', - HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', - HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', - HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', - HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', - HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', - HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', - - HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', - HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', - HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', - HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', - HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', - HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', - HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', - - HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', - HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', - HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', - HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', - HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', - HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', - - HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', - HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', - HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', - HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', - HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', - HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', - HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', - HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', - HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', - HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', - HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', - - - HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', - HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', - HELP_4CX_Desc_2: 'Envoi rapide :', - HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', - HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', - HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', - HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', - HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', - HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', - HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', - HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', - HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', - HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', - - HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', - HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', - HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', - HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_5_Desc_5: 'Dézippez-le.', - HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', - HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', - HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', - - HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', - HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', - HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', - HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', - HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', - HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', - HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', - HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Si vous êtes sur un PC :', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = fr; +// English +'use strict'; +var fi = function() {} +fi.code = 'fi'; +fi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Sinun Lompakkosi', + NAV_AddWallet: 'Lisää Lompakko', + NAV_GenerateWallet: 'Luo Lompakko', + NAV_BulkGenerate: 'Massa Generoi', + NAV_SendEther: 'Lähetä Etheriä', + NAV_SendTokens: 'Lähetä Tokeneita', + NAV_Offline: 'Lähetä Offlinena', + NAV_WithdrawDAO: 'Nosta DAO', + DAO_TitleLong: 'Muuta DAO Tokenisi ETH:iksi', + NAV_ClaimDGD: 'Lunasta DGD', + DGD_TitleLong: 'Lunasta DGD Tokenisi', + NAV_MyWallets: 'Minun Lompakkoni', + NAV_ViewWallet: 'Tarkista Lompakon Tiedot', + NAV_Help: 'Apua', + NAV_Contact: 'Yhteystiedot', + + /* General */ + x_Password: 'Salasana', + x_Download: 'Lataa', + x_Address: 'Sinun osoitteesi', + x_Save: 'x_Tallenna', + x_Cancel: 'x_Peruuta', + x_AddessDesc: 'Saatat tuntea tämän "Tilinumeronasi" tai sinun "Julkisena Salausavaimenasi". Tämä on se jonka jaat ihmisille, jotta he voivat lähettää sinulle ETHiä. Tuo kuvake on helppo tapa tunnistaa sinun osoitteesi.', + x_PrivKey: 'Yksityinen salausavain (salaamaton)', + x_PrivKeyDesc: 'Tämä on salaamaton versio sinun yksityisestä salausavaimestasi, tarkoittaen että salasanaa ei tarvita. Jos joku sattuisi löytämään sinun salaamattoman yksityisen salausavaimesi, he pääsisivät käsiksi sinun lompakkoosi ilman salasanaa. Tästä syystä salatut versiot ovat yleensä suositeltuja.', + x_Keystore: 'Avainsäilö/JSON Tiedosto (Suositeltu · Salattu · Mist/Geth Tiedostoformaatti)', + x_KeystoreDesc: 'Tämä Avainsäilö / JSON tiedosto vastaa sitä tiedostoformaattia jota Mist & Geth käyttävät, joten voit helposti tuoda sen tulevaisuudessa. Se on suositeltu tiedostomuoto ladata ja varmuuskopioida.', + x_Json: 'JSON Tiedosto (salaamaton)', + x_JsonDesc: 'Tämä on salaamaton, JSON tiedosto yksityisestä salausavaimestasi. Tämä tarkoittaa että et tarvitse salasanaa mutta kuka tahansa joka löytää JSON tiedostosi saa pääsyn lompakkoosi ja sen sisältämään Etheriin ilman salasanaa.', + x_PrintShort: 'Tulosta', + x_Print: 'Tulosta Paperi Lompakko', + x_PrintDesc: 'ProTip: Klikkaa Tulosta ja tallenna tämä PDF:nä, vaikka et omistaisikaan tulostinta!', + x_CSV: 'CSV tiedosto (salaamaton)', + x_TXT: 'TXT tiedosto (salaamaton)', + + /* Header */ + MEW_Warning_1: 'Tarkista URL aina ennen kuin avaat lompakkosi tai luot uuden lompakon. Varo tietojen-kalastelu sivustoja!', + CX_Warning_1: 'Varmista että sinulla on **ulkoiset varmuuskopiot** kaikista lompakoista joita säilytät täällä. Monia asioita voi tapahtua joiden seurauksena voit menettää tietoja tässä Chrome Laajennuksessa, mukaan lukien laajennuksen asennuksen poistaminen tai uudelleenasennus. Tämä laajennus on keino jolla saat helpon pääsyn lompakkoosi, **ei** keino varmuuskopioida niitä.', + MEW_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Ether Lompakko', + CX_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Chrome Laajennus', + + /* Footer */ + FOOTER_1: 'Avoimen lähdekoodin, asiakas-puolen javascript työkalu Ethereum lompakkojen luomista & varojen siirtoja varten.', + FOOTER_2: 'Lahjoituksia arvostetaan suuresti:', + FOOTER_3: 'Asiakas-puolen lompakon luomisen tarjoaa', + + /* Sidebar */ + sidebar_AccountInfo: 'Tilin Tiedot: ', + sidebar_AccountAddr: 'Tilin Osoite: ', + sidebar_AccountBal: 'Tilin Saldo: ', + sidebar_TokenBal: 'Tokenien Saldo: ', + sidebar_Equiv: 'Vastaavat Arvot: ', + sidebar_TransHistory: 'Siirto Historia', + sidebar_DGDBal: 'DGD Joukkomyynnin Tiedot:', + sidebar_donate: 'Lahjoita', + sidebar_donation: 'MyEtherWallet on ilmainen, avoimen lähdekoodin palvelu joka on omistautunut sinun yksityisyyteesi ja turvallisuuteesi. Mitä enemmän lahjoituksia me vastaanotamme, sitä enemmän aikaa me käytämme uusien toimintojen luomiseksi, kuunnellen teidän palautettanne ja antaen teille juuri sitä mitä te tahdotte. Me olemme vain kaksi ihmistä jotka koittavat muuttaa maailmaa. Auta meitä?', + sidebar_thanks: 'KIITOS!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kuinka haluaisit saada pääsyn lompakkoosi?', + decrypt_Title: 'Valitse yksityisen salausavaimesi muoto:', + decrypt_Select: 'Valitse Lompakko:', + + /* Add Wallet */ + ADD_Label_1: 'Mitä tahtoisit tehdä?', + ADD_Radio_1: 'Luo Uusi Lompakko', + ADD_Radio_2: 'Valitse Lompakko Tiedostosi (Avainsäilö / JSON)', + ADD_Radio_2_short: 'VALITSE LOMPAKKO TIEDOSTO...', + ADD_Radio_3: 'Liitä/Kirjoita Yksityinen Salausavaimesi', + ADD_Radio_4: 'Lisää Tili Jota Seurata', + ADD_Label_2: 'Luo Lempinimi:', + ADD_Label_3: 'Lompakkosi on salattu, ole hyvä ja syötä salasanasi: ', + ADD_Label_4: 'Lisää Tili Jota Seurata', + ADD_Warning_1: 'Voit lisätä minkä tahansa tilin jota "seurata" lompakkojen välilehdessä ilman yksityisen salausavaimesi lähettämistä. Tämä ** ei ** tarkoita että sinulla olisi pääsy tähän lompakkoon, tai että voit siirtää Etheriä siitä.', + ADD_Label_5: 'Syötä Osoite: ', + ADD_Label_6: 'Avaa Sinun Lompakkosi', + ADD_Label_6_short: 'Avaa', + ADD_Label_7: 'Lisää Tili', + + /* Generate Wallets */ + GEN_desc: 'Jos tahdot luoda useita lompakoita, voit tehdä sen täältä: ', + GEN_Label_1: 'Syötä vahva salasana (vähintään 9 merkkiä)', + GEN_Placeholder_1: 'ÄLÄ unohda tallentaa tätä!', + GEN_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + GEN_Warning: '**Tarvitset Avainsäilö/JSON Tiedostosi & salasanan tai Yksityisen salausavaimesi** saadaksesi pääsyn tähän lompakkoon tulevaisuudessa. Ole hyvä ja tallenna ja varmuuskopioi se ulkoisesti! Ei ole mitään keinoa palauttaa sitä jos et tallenna sitä. Voit lukea ohjeet [Apua sivulta](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Tallenna Avainsäilö/JSON tai Yksityinen salausavaimesi. Älä unohda yllä olevaa salasanaasi.', + GEN_Label_3: 'Tallenna Osoitteesi.', + GEN_Label_4: 'Tulosta paperi lompakkosi, tai säilö QR koodi versio. (valinnainen)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Kuinka Monta Lompakkoa Luodaan', + BULK_Label_2: 'Luo Lompakot', + BULK_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Osoitteeseen: ', + SEND_amount: 'Summa Joka Lähetetään: ', + SEND_amount_short: 'Summa', + SEND_custom: 'Mukautettu', + SEND_gas: 'Gas', + SEND_generate: 'Luo Allekirjoitettu Siirto', + SEND_raw: 'Käsittelemätön Siirto', + SEND_signed: 'Allekirjoitettu Siirto', + SEND_trans: 'Lähetä Siirto', + SEND_TransferTotal: 'Lähetettävissä oleva saldo', + SENDModal_Title: 'Varoitus! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Olet lähettämässä', + SENDModal_Content_2: 'osoitteeseen', + SENDModal_Content_3: 'Oletko varma että haluat tehdä tämän?', + SENDModal_Content_4: 'HUOMAUTUS: Jos kohtaat virheen, sinun täytyy todennäköisesti lisätä ETHiä tilillesi kattaaksesi siirron vaatiman gasin hinnan. Gas maksetaan ETHeinä.', + SENDModal_No: 'En, vie minut pois täältä!', + SENDModal_Yes: 'Kyllä, olen varma! Toteuta siirto.', + + /* Tokens */ + TOKEN_Addr: 'Osoite: ', + TOKEN_Symbol: 'Token Tunnus: ', + TOKEN_Dec: 'Desimaalit: ', + + /* Send Transaction */ + TRANS_desc: 'Jos haluat lähettää Tokeneita, ole hyvä ja käytä "Lähetä Tokeneita" sivua.', + TRANS_warning: 'Jos käytät "Vain ETH" tai "Vain ETC" Toimintoja, niin lähetät sopimuksen kautta. Joillakin palveluilla on vaikeuksia hyväksyä näitä siirtoja. Lue lisää.', + TRANS_standard: 'ETH (Tavallinen Siirto)', + TRANS_eth: 'Vain ETH', + TRANS_etc: 'Vain ETC', + TRANS_advanced: '+Edistynyt: Lisää Enemmän Gasia tai Tietoa ', + TRANS_data: ' Tiedot: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Tavallinen siirto käyttäen 21000 gasia maksaa 0.000441 ETHiä. Me käytämme hieman-yli-minimin gasin hintaa 0.000000021 ETHiä varmistaaksemme että se louhitaan nopeasti. Me emme veloita siirto maksua.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Vain ETH" ja "Vain ETC" Siirrot', + TRANSModal_Content_0: 'Huomautus erilaisista siirroista ja eri palveluista:', + TRANSModal_Content_1: '**ETH (Tavallinen Siirto): ** Tämä luo oletusarvoisen siirron osoitteesta toiseen. Siinä on oletus gasina 21000. On todennäköistä että kaikki ETH joka lähetetään tällä tavalla, toistetaan ETC ketjussa.', + TRANSModal_Content_2: '**Vain ETH: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETH** ketjussa.', + TRANSModal_Content_3: '**Only ETC: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETC** ketjussa. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Lähetä ainoastaan käyttäen Tavallista Siirtoa. Jos lähetät käyttäen "Vain" sopimuksia, sinun täytyy olla yhteydessä heidän asiakastukensa henkilöstöön jotta he joko manuaalisesti lisäävät sinun saldosi tai palauttavat rahasi. [Voit kokeilla myös ShapeShiftin "split" työkalua.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ei tunnettuja ongelmia. Käytä mitä vain.', + TRANSModal_Yes: 'Siistiä, nyt ymmärrän.', + TRANSModal_No: 'Voi ei, olen entistä enemmän hämilläni. Auttakaa minua.', + + /* Offline Transaction */ + OFFLINE_Title: 'Luo ja Lähetä Offline Siirto', + OFFLINE_Desc: 'Offline siirtojen luonti voidaan tehdä kolmella eri vaiheella. Teet vaiheet 1 ja 3 käyttäen verkossa olevaa tietokonetta, ja vaiheen 2 käyttäen offline/airgappattua tietokonetta. Tämä varmistaa ettei sinun yksityinen salausavaimesi ole kosketuksissa internettiin yhdistetyn laitteen kanssa.', + OFFLLINE_Step1_Title: 'Vaihe 1: Luo Tiedot (Online Tietokone)', + OFFLINE_Step1_Button: 'Luo Tiedot', + OFFLINE_Step1_Label_1: 'Osoitteesta: ', + OFFLINE_Step1_Label_2: 'Huomautus: Tämä on MISTÄ osoitteesta, ei MIHIN osoitteeseen. Nonce luodaan osoitteesta josta siirto on peräisin. Jos käytetään airgappattua tietokonetta, se olisi kylmä-varasto tilin osoite.', + OFFLLINE_Step2_Title: 'Vaihe 2: Luo Siirto (Offline Tietokone)', + OFFLINE_Step2_Label_1: 'Osoitteeseen: ', + OFFLINE_Step2_Label_2: 'Arvo / Määrä Joka Lähetetään', + OFFLINE_Step2_Label_3: 'Gasin hinta ', + OFFLINE_Step2_Label_3b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_4: 'Gas Raja ', + OFFLINE_Step2_Label_4b: '21000 on oletusarvoinen gas raja. Kun lähetät sopimuksiin tai lisäät tietoa, saattaa tämä määrä joutua olemaan eri. Kaikki käyttämätön gas palautetaan sinulle.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_6: 'Tiedot', + OFFLINE_Step2_Label_6b: 'Tämä on vapaaehtoinen. Tietoja käytetään usein kun varoja lähetetään sopimuksiin.', + OFFLINE_Step2_Label_7: 'Syötä / Valitse Yksityinen salausavaimesi / JSON.', + OFFLINE_Step3_Title: 'Vaihe 3: Lähetä / Julkaise Siirto (Verkkoon yhdistetty tietokone)', + OFFLINE_Step3_Label_1: 'Liitä allekirjoitettu siirto Vaiheesta 2 tähän ja paina "LÄHETÄ SIIRTO" nappia.', + + /* DAO */ + DAO_Desc: 'Käytä tätä välilehteä muuttaaksesi DAO Tokenisi ETHiksi. Mikäli haluat lähettää DAO:ta, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DAO_Inst: 'Kyllä. Paina vain isoa punaista nappia. Se on niin helppoa.', + DAO_Warning: 'Jos sinulla tulee "Riittämätön saldo gasille" virhe, sinulla täytyy olla pieni määrä ETHiä tililläsi kattaaksesi gasin hinnan. Lisää .01 ETHiä tälle tilille ja koita uudestaan. ', + DAOModal_Title: 'Varmistetaan vain...', + + /* Digix */ + DGD_Desc: 'Lunasta DigixDAO (DGD) tokenisi & merkkisi. Lunastaaksesi, sinun on täytynyt osallistua tokenien myyntiin Maaliskuun 30/31 päivänä, 2016. Jos haluat lähettää DGDtä, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DGD_Label_1: 'Arvioitu kulutus maksu:', + DGD_Label_2: 'Annettu Maksimi Maksu:', + DGD_Label_3: 'Gas Hinta:', + DGD_Generate: 'Luo Lunastus', + DGD_Content: 'Olet lunastamassa sinun DGD Tokenisi.', + + /* My Wallet */ + MYWAL_Nick: 'Lompakon Lempinimi', + MYWAL_Address: 'Lompakon Osoite', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Muokkaa', + MYWAL_View: 'Katso', + MYWAL_Remove: 'Poista', + MYWAL_RemoveWal: 'Poista Lompakko:', + MYWAL_WatchOnly: 'Sinun Seuraa-Ainoastaan Tilisi', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Piilota Lompakon Tiedot', + MYWAL_Edit: 'Muokkaa Lompakkoa: ', + MYWAL_Name: 'Lompakon Nimi', + MYWAL_Content_1: 'Varoitus! Olet poistamassa lompakkoasi.', + MYWAL_Content_2: 'Varmista että olet **tallentanut tähän lompakkoon liittyvät yksityisen salausavaimesi/JSON tiedostosi ja salasanasi** ennen kuin poistat sen.', + MYWAL_Content_3: 'Jos tahdot käyttää tätä lompakkoa sinun MyEtherWallet CX:si kanssa tulevaisuudessa, sinun täytyy manuaalisesti uudelleen-lisätä se käyttäen yksityistä salausavaintasi/JSONia ja salasanaa.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. Saatat tahtoa tehdä tämän [tuodaksesi sinun tilisi Gethiin/Mistiin](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jos haluat tarkistaa saldosi, me suosittelemme käyttämään lohkoketju exploreria kuten [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. ', + VIEWWALLET_SuccessMsg: 'Onnistui! Tässä ovat lompakkosi yksityiskohdat.', + + /* Error Messages */ + ERROR_1: 'Ole hyvä ja syötä kelpaava summa.', + ERROR_2: 'Salasanasi pitää olla vähintään 9 merkkiä pitkä. Ole hyvä ja varmista että käytät vahvaa salasanaa. ', + ERROR_3: 'Pahoittelut! Emme tunnista tämänlaista lompakko tiedostoa. ', + ERROR_4: 'Tämä ei ole validi lompakko tiedosto. ', + ERROR_5: 'Tätä yksikköä ei ole olemassa, ole hyvä ja käytä jotain seuraavista yksiköistä ', + ERROR_6: 'Virheellinen osoite. ', + ERROR_7: 'Virheellinen salasana. ', + ERROR_8: 'Virheellinen summa. ', + ERROR_9: 'Virheellinen gas raja. ', + ERROR_10: 'Virheellinen tieto arvo. ', + ERROR_11: 'Virheellinen gasin määrä. ', + ERROR_12: 'Virheellinen nonce. ', + ERROR_13: 'Virheellinen allekirjoitettu siirto. ', + ERROR_14: 'Lompakko tällä lempinimellä on jo olemassa. ', + ERROR_15: 'Lompakkoa ei löytynyt. ', + ERROR_16: 'Ei näytä että ehdotusta tällä ID:llä olisi vielä olemassa tai tapahtui virhe ehdotusta luettaessa. ', + ERROR_17: 'Lompakko jolla on tämä osoite on jo muistissa. Ole hyvä ja tarkista sinun lompakkosi sivu. ', + ERROR_18: 'Sinulla täytyy olla vähintään .001 ETHiä tililläsi kattaaksesi gasin hinnan. Ole hyvä ja lisää hieman ETHiä ja kokeile uudelleen. ', + ERROR_19: 'Kaikki gas käytettäisiin tässä siirrossa. Tämä tarkoittaa että olet jo äänestänyt tässä ehdotuksessa tai väittely aika on jo päättynyt.', + ERROR_20: 'Virheellinen merkki', + SUCCESS_1: 'Validi osoite', + SUCCESS_2: 'Lompakon salaus onnistuneesti purettu', + SUCCESS_3: 'Siirto lähetetty. TX ID: ', + SUCCESS_4: 'Lompakkosi lisätty onnistuneesti: ', + SUCCESS_5: 'Olet äänestänyt onnistuneesti. Kiitos että olet ollut aktiivinen osanottaja The DAOssa.', + + /* Tranlsation Info */ + translate_version: '0.1', + Translator_Desc: 'Kiitos kääntäjillemme...', + TranlsatorName_1: 'Smokyish', + TranlsatorAddr_1: '0xac9a2c1dd946da64c0dc8e70cec2cfb14304fd4f', + /* Translator 1: Insert Comments Here */ + TranlsatorName_2: ' ', + TranlsatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranlsatorName_3: ' ', + TranlsatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranlsatorName_4: ' ', + TranlsatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranlsatorName_5: ' ', + TranlsatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com', + HELP_6_Desc_9: 'Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.', + HELP_6_Desc_11: ' Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: ' Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', + HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = fi; },{}],43:[function(require,module,exports){ -// Hebrew -'use strict'; -var he = function() {} -he.code = 'he'; -he.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = he; +// French +'use strict'; +var fr = function() {} +fr.code = 'fr'; +fr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Vos portefeuilles', + NAV_AddWallet: 'Ajout de portefeuille', + NAV_GenerateWallet: 'Génération de portefeuille', + NAV_BulkGenerate: 'Génération de portefeuilles par lots', + NAV_SendEther: 'Envoi d\'Ether', + NAV_SendTokens: 'Envoi de tokens', + NAV_Offline: 'Envoi hors-ligne', + NAV_WithdrawDAO: 'Retrait de la DAO', + DAO_TitleLong: 'Échange de tokens DAO contre des ETH', + NAV_ClaimDGD: 'Réclamation de DGD', + DGD_TitleLong: 'Réclamation de vos tokens DGD', + NAV_DeployContract: 'Déployer un contrat', + NAV_MyWallets: 'Mes portefeuilles', + NAV_ViewWallet: 'Visualisation d\'un portefeuille', + NAV_Help: 'Aide', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Portefeuille', + x_Password: 'Mot de passe', + x_Download: 'Télécharger', + x_Address: 'Votre adresse', + x_Save: 'Sauvegarder', + x_Cancel: 'Annuler', + x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', + x_PrivKey: 'Clé privée (non-chiffrée)', + x_PrivKey2: 'Clé privée', + x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', + x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', + x_Keystore2: 'Fichier Keystore/JSON', + x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', + x_Json: 'Fichier JSON (non-chiffré)', + x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', + x_PrintShort: 'Imprimer', + x_Print: 'Imprimer un portefeuille papier', + x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', + x_CSV: 'Fichier CSV (non-chiffré)', + x_TXT: 'Fichier TXT (non-chiffré)', + + /* Header */ + MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', + CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', + MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', + CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', + + /* Footer */ + FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', + FOOTER_1b: 'Créé par', + FOOTER_2: 'Donations extrêmement appréciées :', + FOOTER_3: 'Génération de portefeuille côté client par', + FOOTER_4: 'Avertissement', + + /* Sidebar */ + sidebar_AccountInfo: 'Informations du compte : ', + sidebar_AccountAddr: 'Addresse du compte : ', + sidebar_AccountBal: 'Solde du compte : ', + sidebar_TokenBal: 'Solde en tokens : ', + sidebar_Equiv: 'Valeur correspondante : ', + sidebar_TransHistory: 'Historique des transactions: ', + sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', + sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', + sidebar_donate: 'Faire une donation', + sidebar_thanks: 'MERCI !!!', + + /* Decrypt Panel */ + decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', + decrypt_Title: 'Choisissez le format de votre clé privée', + decrypt_Select: 'Choisissez un portefeuille :', + + /* Add Wallet */ + ADD_Label_1: 'Que voulez-vous faire ?', + ADD_Radio_1: 'Générer un nouveau portefeuille', + ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', + ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', + ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', + ADD_Radio_3: 'Collez/saisissez votre clé privée', + ADD_Radio_4: 'Ajoutez un compte', + ADD_Label_2: 'Nommez votre compte :', + ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', + ADD_Label_4: 'Ajouter un compte à afficher', + ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', + ADD_Label_5: 'Entrez l\'adresse : ', + ADD_Label_6: 'Déverrouiller votre portefeuille', + ADD_Label_6_short: 'Déverrouiller', + ADD_Label_7: 'Ajouter un compte', + + /* Generate Wallets */ + GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', + GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', + GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', + GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', + GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', + GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', + GEN_Label_3: 'Sauvegarder votre portefeuille.', + GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Nombre de portefeuilles à générer', + BULK_Label_2: 'Générer les portefeuilles', + BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Adresse de destination : ', + SEND_amount: 'Montant à envoyer : ', + SEND_amount_short: 'Montant', + SEND_custom: 'Spécifique', + SEND_gas: 'Gaz', + SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter + SEND_generate: 'Générer la transaction', + SEND_raw: 'Transaction brute', + SEND_signed: 'Transaction signée', + SEND_trans: 'Envoyer la transaction', + SENDModal_Title: 'Attention ! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', + SENDModal_Content_2: 'à l\'adresse', + SENDModal_Content_3: 'En êtes-vous sûr ?', + SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', + SENDModal_No: 'Non, je veux sortir d\'ici !', + SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adresse : ', + TOKEN_Symbol: 'Symbole du token : ', + TOKEN_Dec: 'Décimales : ', + + /* Send Transaction */ + TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', + TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', + TRANS_standard: 'ETH (transaction standard)', + TRANS_eth: 'ETH seulement', + TRANS_etc: 'ETC seulement', + TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', + TRANS_data: ' Données : ', + TRANS_gas: ' Gaz : ', + TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', + TRANSModal_Content_0: 'Note sur les transactions et services divers :', + TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', + TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', + TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', + TRANSModal_Yes: 'Génial, j\'ai compris.', + TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', + + /* Offline Transaction */ + OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', + OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', + OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', + OFFLINE_Step1_Button: 'Générer l\'information', + OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', + OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', + OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', + OFFLINE_Step2_Label_1: 'Adresse de destination : ', + OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', + OFFLINE_Step2_Label_3: 'Prix du gaz ', + OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_4: 'Limite de gaz ', + OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_6: 'Données', + OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', + OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', + OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', + OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', + + /* DAO */ + DAO_bal1: 'au bloc 1.919.999', + DAO_bal2: 'actuel', + DAO_TitleETH: 'Retrait de DAO en ETH', + DAO_TitleETC: 'Retrait de DAO en ETC', + DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', + DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', + DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', + DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', + DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', + DAOModal_Title: 'Juste pour être sûr...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Vous êtes sur le point de retirer', + DAOModal_2: 'tokens DAO vers', + DAOModal_3: 'pour', // "in return for" + + /* Digix */ + DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', + DGD_Label_1: 'Estimation des frais consommés :', + DGD_Label_2: 'Frais maximum fournis :', + DGD_Label_3: 'Prix du gaz :', + DGD_Generate: 'Générer une réclamation', + DGD_Content: 'Vous allez réclamer vos tokens DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Générer le bytecode', + DEP_generated: 'Bytecode généré', + DEP_signtx: 'Signer la transaction', + DEP_interface: 'Interface générée', + + /* My Wallet */ + MYWAL_Nick: 'Nom du portefeuille', + MYWAL_Address: 'Adresse du portefeuille', + MYWAL_Bal: 'Solde', + MYWAL_Edit: 'Modifier', + MYWAL_View: 'Voir', + MYWAL_Remove: 'Supprimer', + MYWAL_RemoveWal: 'Supprimer le portefeuille :', + MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', + MYWAL_Viewing: 'Affichage des portefeuilles : ', + MYWAL_Hide: 'Cacher les informations sur le portefeuille', + MYWAL_Edit_2: 'Modifier le portefeuille : ', + MYWAL_Name: 'Nom du portefeuille', + MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', + MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', + MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', + VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', + + /* Chrome Extension */ + CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', + CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Veuillez entrer un montant valide.', + ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', + ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', + ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', + ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', + ERROR_6: 'Adresse invalide. ', + ERROR_7: 'Mot de passe invalide. ', + ERROR_8: 'Montant invalide. ', + ERROR_9: 'Limite de gaz invalide. ', + ERROR_10: 'Valeur des donnnées invalide. ', + ERROR_11: 'Montant de gaz invalide. ', + ERROR_12: 'Nonce invalide. ', + ERROR_13: 'Transaction signée invalide. ', + ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', + ERROR_15: 'Portefeuille non trouvé. ', + ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', + ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', + ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', + ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', + ERROR_20: 'Symbole invalide', + SUCCESS_1: 'Adresse valide', + SUCCESS_2: 'Portefeuille déchiffré avec succès', + SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', + SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', + SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', + SUCCESS_6: 'Fichier sélectionné : ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Expéditeur invalide', + GETH_Nonce: 'Nonce trop bas', + GETH_Cheap: 'Prix du gaz trop bas pour être accepté', + GETH_Balance: 'Solde insuffisant', + GETH_NonExistentAccount: 'Compte inexistant ou solde du compte trop bas', + GETH_InsufficientFunds: 'Fonds insuffisants pour gaz * prix + valeur', + GETH_IntrinsicGas: 'Gaz intrinsèque trop bas', + GETH_GasLimit: 'Limite en gaz dépassée', + GETH_NegativeValue: 'Valeur négative', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', + /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ + TranslatorName_2: 'Jean Zundel · ', + TranslatorAddr_2: '', + /* Translator 2: */ + TranslatorName_3: 'girards', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', + HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', + HELP_Remind_Title: 'Quelques rappels :', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', + HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', + + HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', + HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', + HELP_0_Desc_2: 'Créez un nouveau portefeuille.', + HELP_0_Desc_3: 'Sauvegardez le portefeuille.', + HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', + HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', + + HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', + HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', + HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', + HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', + HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', + HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', + + HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', + HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', + HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', + HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', + HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', + HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', + HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', + + HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', + HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', + HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', + HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', + HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', + HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', + HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', + + HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', + HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', + HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', + HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', + HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', + HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', + + HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', + HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', + HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', + HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', + HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', + HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', + HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', + HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', + HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', + HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', + HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', + + + HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', + HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', + HELP_4CX_Desc_2: 'Envoi rapide :', + HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', + HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', + HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', + HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', + HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', + HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', + HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', + HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', + HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', + HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', + + HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', + HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', + HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', + HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_5_Desc_5: 'Dézippez-le.', + HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', + HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', + HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', + + HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', + HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', + HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', + HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', + HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', + HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', + HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', + HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', + + HELP_6_Title: '6) Comment puis-je séparer mes ETH / ETC ? ', + HELP_6_Desc_1: 'Quand le hard fork s\'est produit, à tout ETH que vous possédiez dans votre portefeuille correspond maintenant un montant égal en ETC. Si vous envoyez des ETH par une transaction standard, cela enverra également des ETC et, pour l\'empêcher, il vous faut maintenant "séparer" votre portefeuille d\'origine en deux en vous assurant que seul du ETH va dans le portefeuille ETH et seul du ETC va dans le portefeuille ETC.', + HELP_6_Desc_2: 'Vous pouvez également envoyer tout votre ETH et ETC par une transaction standard vers Kraken ou Poloniex. Ces *exchanges* vont automatiquement séparer vos ETH et ETC. Vous pouvez alors déplacer ces fonds vers de nouveaux portefeuilles ou vendre vos ETH ou vos ETC.', + HELP_6_Desc_3: '[Vous trouverez plus d\'informations sur les portefeuilles et les attaques par réexécution ici](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Générer un nouveau portefeuille ETH post-fork vierge pour vous-même (destination finale du pur ETH).', + HELP_6_Desc_5: 'Générer un nouveau portefeuille ETC post-fork vierge pour vous-même (destination finale du pur ETC).', + HELP_6_Desc_6: 'Sauvegardez ces nouveaux portefeuilles et vérifiez que vous pouvez y accéder. Voir #2a et #3 ci-dessus.', + HELP_6_Desc_7: 'Envoyez 0.1234 ETH à votre nouveau portefeuille ETH en utilisant l\'option "ETH seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_8: 'Envoyez 0.5678 ETC à votre nouveau portefeuille ETC en utilisant l\'option "ETC seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_9: 'Vérifiez que seuls les 0.1234 ETH ont bougé sur etherscan.io. Vérifiez que seuls les 0.5678 ETC ont bougé sur gastracker.io.', + HELP_6_Desc_10: 'Envoyez une transaction de 0.0001 ETH depuis votre nouveau portefeuille ETH. Vérifiez sur etherscan.io. Assurez-vous que les 0.0001 ETH ont bougé.', + HELP_6_Desc_11: 'Générez (mais n\'envoyez pas) une transaction de 0.0002 ETC depuis votre nouveau portefeuille ETC. Copiez le champ "Transaction signée". ', + HELP_6_Desc_12: 'Allez sur [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) et copiez cette transaction ETC dans l\'onglet hors ligne de classicetherwallet.com tout en bas et envoyez-la. Vérifiez sur gastracker.io. Assurez-vous que les 0.0002 ETC ont bougé.', + HELP_6_Desc_13: 'Si tout est correctement reçu et envoyé, vous avez gagné.', + HELP_6_Desc_14: 'Envoyez le reste du solde ETH par l\'option "ETH seulement" et répétez l\'opération pour le solde ETC par l\'option "ETC seulement".', + HELP_6_Desc_15: 'Par la suite, vous pourrez utiliser les transactions standard pour ces portefeuilles sans risque d\'attaque par réexécution.', + + + HELP_7_Title: '7) Comment puis-je envoyer des tokens et ajouter des tokens spécifiques ?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) est un excellent moyen d\'explorer les tokens et de trouver les décimales d\'un token.', + HELP_7_Desc_1: 'Naviguez vers la page "Envoi de tokens".', + HELP_7_Desc_2: 'Déverrouillez votre portefeuille.', + HELP_7_Desc_3: 'Entre l\'adresse à laquelle vous désirez faire l\'envoi dans le champ "Adresse de destination".', + HELP_7_Desc_4: 'Entrez le montant que vous désirez envoyer.', + HELP_7_Desc_5: 'Sélectionnez le token que vous désirez envoyer.', + HELP_7_Desc_6: 'Si celui-ci n\'est pas listé :', + HELP_7_Desc_7: 'Cliquez sur "Spécifique".', + HELP_7_Desc_8: 'Entrez l\'adresse, le nom et les décimales du token. Ces informations sont fournies par les développeurs du token et sont également nécessaires quand vous faites "Add a Watch Token" dans Mist.', + HELP_7_Desc_9: 'Cliquez sur "Sauver".', + HELP_7_Desc_10: 'Vous pouvez maintenant envoyer ces tokens ainsi qu\'en voir le solde dans la zone sur le côté.', + HELP_7_Desc_11: 'Cliquez sur "Générer la transaction".', + HELP_7_Desc_12: 'Quelques champs supplémentaires vont apparaître : votre navigateur est en train de générer la transaction.', + HELP_7_Desc_13: 'Cliquez sur le bouton bleu "Envoyer la transation" au dessous.', + HELP_7_Desc_14: 'Une fenêtre pop-up va apparaître. Vérifiez que le montant et que l\'adresse de destination sont corrects puis cliquez sur le bouton "Oui, j\'en suis sûr ! Effectuer la transaction."', + HELP_7_Desc_15: 'La transaction est alors soumise et l\'identifiant de transaction est affiché. Vous pouvez cliquer dessus pour le voir sur la blockchain.', + + HELP_8_Title: '8) Que se passe-t-il si votre site tombe ?', + HELP_8_Desc_1: 'MyEtherWallet n\'est pas un portefeuille sur le web. Vous n\'avez pas de login et rien n\'est jamais stocké sur nos serveurs. Ce n\'est qu\'une interface qui vous permet d\'interagir avec la blockchain.', + HELP_8_Desc_2: 'Si MyEtherWallet.com tombe, vous devrez trouver un autre moyen (comme geth ou Ethereum Wallet / Mist) pour faire la même chose. Mais vous n\'aurez pas à "récupérer" votre Ether depuis MyEtherWallet parce qu\'il ne se trouve pas dans MyEtherWallet. Il est chez vous, dans le portefeuille que vous avez généré par notre site.', + HELP_8_Desc_3: 'Vous pouvez maintenant importer facilement votre clef privée non chiffrée et vos fichiers (chiffrés) au format Geth/Mist, directement dans geth / Ethereum Wallet / Mist. Voir question #12 ci-dessous.', + HELP_8_Desc_4: 'De plus, la probabilité que nous laissions tomber MyEtherWallet approche zéro. Il ne nous coûte presque rien de le maintenir comme nous n\'y stockons aucune information. Si le domaine venait à être perdu, le logiciel sera toujours disponible publiquement sur [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vous pourrez y télécharger le ZIP et le faire tourner localement. ', + + HELP_8CX_Title: '8) Que se passe-t-il si MyEtherWallet CX disparaît ?', + HELP_8CX_Desc_1: 'D\'abord, toutes les données sont sauvegardées sur votre ordinateur et non sur nos serveurs. Cela peut paraître étonnant mais, quand vous regardez sur l\'extension Chrome, ce que vous voyez *ne se trouve pas* sur nos serveurs ; tout est stocké sur votre propre ordinateur.', + HELP_8CX_Desc_2: 'Cela dit, il est **très important** que vous sauvegardiez toutes les données de tous les portefeuilles générés par MyEtherWallet CX. De cette manière, si quoi que ce soit arrivait à MyEtherWallet CX ou à votre ordinateur, vous conserveriez toutes les informations nécessaires pour accéder à votre Ether. Voir #2a pour la sauvegarde de vos portefeuilles.', + HELP_8CX_Desc_3: 'Si, pour une raison quelconque, MyEtherWallet CX disparaissait du Chrome Store, vous pourrez en trouver le source sur Github et le charger manuellement. Voir #5 ci-dessus.', + + HELP_9_Title: '9) La page "Envoi d\'Ether" est-elle hors ligne ?', + HELP_9_Desc_1: 'Non, la page d\'envoi de transaction n\'est pas hors ligne. Elle a besoin de l\'internet pour obtenir le prix actuel du gaz, le nonce de votre compte et pour émettre la transaction (c\'est-à-dire "envoyer"). Cependant, elle n\'envoie que la transaction signée. Votre clef privée reste en sécurité chez vous. Nous fournissons maintenant aussi une page "Transaction hors ligne" pour vous permettre de conserver en permanence vos clefs privées sur une machine hors ligne.', + + HELP_10_Title: '10) Comment puis-je faire une transaction hors ligne ?', + HELP_10_Desc_1: 'Allez à la page "Transaction hors ligne" avec votre ordinateur en ligne.', + HELP_10_Desc_2: 'Entrez l\'"Adresse d\'émission". Attention, c\'est l\'adresse *d\'où* vous envoyez et non celle *vers* laquelle vous envoyez. Ceci va générer ke nonce et le prix du gaz.', + HELP_10_Desc_3: 'Allez sur votre ordinateur hors ligne. Entrez l\'"Adresse de destination" et le "Montant" que vous désirez envoyer.', + HELP_10_Desc_4: 'Entrez le "Prix du gaz" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_5: 'Entrez le "Nonce" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_6: 'La "Limite en gaz" a une valeur de 21000 par défaut. Ceci couvre les frais d\'une transaction standard. Si vous envoyez à un contrat ou si vous embarquez des données supplémentaires avec votre transaction vous devrez augmenter la limite de gaz. Tout gaz non consommé vous sera retourné.', + HELP_10_Desc_7: 'Si vous le désirez, entrez des données. Dans ce cas, vous devrez inclure plus que la limite de 21000 par défaut? Toutes les données sont au format hexadécimal.', + HELP_10_Desc_8: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_10_Desc_9: 'Cliquez sur le bouton "Générer la transaction signée".', + HELP_10_Desc_10: 'Le champ de données sous ce bouton se remplit avec votre transaction signée. Copiez-la et revenez avec elle sur votre ordinateur en ligne. ', + HELP_10_Desc_11: 'Sur votre ordinateur en ligne, collez la transaction signée dans le champ texte et cliquez sur "Envoyez l\'Ether". Ceci émettra votre transaction.', + + HELP_11_Title: '11) Comment puis-je envoyer à un contrat ?', + HELP_11_Desc_1: 'L\'envoi à un contrat vous impose souvent d\'inclure des données ou du gaz supplémentaire, ou les deux.', + HELP_11_Desc_2: 'Allez à la page "Envoi d\'Ether". ', + HELP_11_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille. ', + HELP_11_Desc_4: 'Entrez une "Adresse de destination" et un "Montant à envoyer".', + HELP_11_Desc_5: 'Cliquez sur le bouton "+Avancé : Ajouter du gaz ou des données supplémentaires" sous le champ du montant. Ceci affiche deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au dessus de la valeur par défaut de 21000 ainsi que d\'ajouter des données à votre transaction.', + + HELP_12_Title: '12) Comment puis-je importer un portefeuille créé par MyEtherWallet dans geth / Ethereum Wallet / Mist ?', + HELP_12_Desc_1: 'Avec un fichier Geth/Mist JSON de MyEtherWallet v2+....', + HELP_12_Desc_2: 'Allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_3: 'Déverrouillez votre portefeuille avec votre clef privée **chiffrée** ou votre fichier JSON. ', + HELP_12_Desc_4: 'Allez à la page "Mes portefeuilles".', + HELP_12_Desc_5: 'Sélectionnez le portefeuille que vous désirez importer dans Mist, cliquez sur l\'icône "View", entrez votre mot de passe et accédez à votre portefeuille. ', + HELP_12_Desc_6: 'Allez à la section "Téléchargez le fichier JSON file - Format Geth/Mist (chiffé)". Cliquez sur le bouton "Télécharger" en dessous. Vous avez maintenant votre fichier *keystore.* ', + HELP_12_Desc_7: 'Ouvrez l\'application Ethereum Wallet. ', + HELP_12_Desc_8: 'Dans la barre de menu, allez sur "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Ceci ouvre votre dossier de keystores. Copiez-y le fichier que vous venez de télécharger (`UTC--2016-04-14......../`) dans ce dossier.', + HELP_12_Desc_10: 'Votre compte doit apparaître immédiatement sous "Accounts."', + HELP_12_Desc_11: 'Avec votre clef privée non chiffrée...', + HELP_12_Desc_12: 'Si vous n\'avez pas déjà votre clef privée non chiffrée, allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_13: 'Sélectionnez le fichier de votre portefeuille -ou- entrez/collez votre clef privée pour déverrouiller votre portefeuille.', + HELP_12_Desc_14: 'Copiez votre clef privée (non chiffrée).', + HELP_12_Desc_15: 'Si vous êtes sur un Mac :', + HELP_12_Desc_15b: 'Si vous êtes sur un PC :', // Strange, already in French, not found in de.js + HELP_12_Desc_16: 'Ouvez Text Edit et collez cette clef privée.', + HELP_12_Desc_17: 'Dans la barre de menu, cliquez sur "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Sauvegardez ce fichier vers votre `Desktop/` en tant que `nothing_special_delete_me.txt`. Assurez-vous qu\'il précise "UTF-8" et "If no extension is provided use .txt" dans le dialogue de sauvegarde.', + HELP_12_Desc_19: 'Ouvrez un terminal et lancez la commande suivante : `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserez dans geth / Ethereum Wallet / Mist à chaque vois que vos enverrez une transaction, donc ne l\'oubliez pas. ', + HELP_12_Desc_21: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + HELP_12_Desc_23: 'Ouvrez Notepad et collez-y la clef privée', + HELP_12_Desc_24: 'Sauvegardez le fichier en tant que `nothing_special_delete_me.txt` sur `C:`', + HELP_12_Desc_25: 'Lancez la commande `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserz dans geth / Ethereum Wallet / Mist à chaque foiq que vous enverrez une transaction donc ne l\'oubliez pas.', + HELP_12_Desc_27: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + + HELP_13_Title: '13) Que signigie "Limite de gaz trop basse" ?', + HELP_13_Desc_1: 'Il est très probable que vous essayiez d\'envoyer de l\'Ether à un contrat, ce qui implique un peu plus de données et donc un peu plus de gaz. Sur la page "Envoi d\'Ether", cliquez sur le bouton "+Advancé : Ajouter du gaz ou des données supplémentaire" sous le champ du montant. Ceci fera afficher deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au-dessus de sa valeur par défaut de 21000, ou pour ajouter des données à votre transaction.', + + HELP_14_Title: '14) Certains sites randomisent (initialisent) la génération de clef privée par les mouvements de la sours. Ce n\'est pas le cas de MyEtherWallet.com. La génération de nombres aléatoires de MyEtherWallet est-elle sûre ?', + HELP_14_Desc_1: 'Bien que l\'interception des mouvement de la souris soit jugée attractive par beaucoup, et que nous en comprenions les raisons, la réalité est que window.crypto assure plus d\'entropie que les mouvements de votre souris. L\'utilisation de ces mouvements est sûre mais nous (ainsi que de nombreux projets crypto) avons de bonnes raisons de croire en window.crypto. De plus, MyEtherWallet.com peut être utilisé sur des périphériques tactiles. Voici une [conversation entre un redditor rageur et Vitalik Buterin sur les mouvements de souris et window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) et voici [les spécifications w3 de window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Pourquoi le compte que je viens de créer n\'apparaît-il pas dans l\'explorateur de blockchain ? (i.e. : etherchain, etherscan)', + HELP_15_Desc_1: 'Les comptes n\'apparaissent dans un explorateur de blockchain qu\'après une activité y ait eu lieu comme, par exemple, quand on y a transféré de l\'Ether.', + + HELP_16_Title: '16) Comment puis-je vérifier le solde de mon compte ? ', + HELP_16_Desc_1: 'Vous pouvez utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/). Collez votre adresse dans la barre de recherche et cela récupérera votre solde et l\'historique de vos transactions. Par exemple, voici ce que montre notre [compte de donations](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) sur etherscan.io', + + HELP_17_Title: '17) Pourquoi mon solde n\'apparaît-il pas quand je déverrouille mon portefeuille ? ', + HELP_17_Desc_1: ' C\'est probablement dû au fait que vous vous trouvez derrière un firewall. L\'API que nous utilisons pour obtenir le solde et converir celui-ci est souvent bloquée par des firewalls pour des raisons diverses. Vous êtes toujours capable d\'envoyer des transactions mais il vous faut employer une autre méthode pour voir le solde, comme etherscan.io', + + HELP_18_Title: '18) Où est le fichier de mon portefeuille geth ?', + + HELP_19_Title: '19) Où est le fichier de mon portefeuille Mist ? ', + HELP_19_Desc_1: 'Les fichiers Mist se trouvent généralement aux endroits ci-dessus mais il est beaucoup plus facile d\'ouvrir Mist, de sélectionner "Accounts" dans la barre du haut, puis "Backup" et "Accounts". Cela ouvre le dossier où vos fichiers sont stockés.', + + HELP_20_Title: '20) Où est le fichier de mon portefeuille de *pre-sale* (pré-vente) ?', + HELP_20_Desc_1: 'Là où vous l\'avez mis. ;) Il vous a aussi été envoyé donc allez vérifier vos mails. Cherchez le fichier appelé `"ethereum_wallet_backup.json"` et choisissez ce fichier. Il est chiffré avec un mot de passe que vous avez créé pendant l\'achat au moment de la pré-vente.', + + HELP_21_Title: '21) N\'importe qui ne peut-il pas prendre une clef privée au hasard, chercher un solde et l\'envoyer à sa propre adresse ? ', + HELP_21_Desc_1: 'Version courte : oui, mais trouver un compte avec un solde prendrait plus longtemps que la durée de l\'univers... donc... non.', + HELP_21_Desc_2: 'Version longue : Ethereum est basé sur la [cryptographie à clef publique](https://en.wikipedia.org/wiki/Public-key_cryptography), plus précisément la [cryptographie des courbes elliptiques (ECC)](https://eprint.iacr.org/2013/734.pdf) qui est très couramment employée, pas uniquement dans Ethereum. La plupart des serveurs sont protégés par les ECC. Bitcoin les emploie ainsi que SSH, TLS et bien d\'autres protocoles. Dans le cas spécifique d\'Ethereum, les clefs font 256 bits et sont plus fortes que celles en 128 et 192 bits, encore très employées et toujours considérées comme sûres par les experts.', + HELP_21_Desc_3: 'Vous avez une clef privée et une clef publique. La clef privée peut servir à dériver la clef publique mais l\'inverse est impossible. Le fait que l\'internet et le monde entier utilise ce système cryptographique signifie que, s\'il existait un moyen de dériver la clef privée de la clef publique, le risque que courrait votre Ether serait le moindre des problèmes de tout le monde.', + HELP_21_Desc_4: 'Cela dit, OUI : si quelqu\'un possède votre clef privée, il peut envoyer de l\'Ether depuis votre compte, de même que si une personne a le mot de passe de votre email, elle peut lire des mails ou en envoyer, ou si c\'est le mot de passe de votre compte en banque, elle peut faire des virements. Vous pouvez télécharger la versoin KEystore de votre clef privée qui est la clef privée chiffrée avec un mot de passe. Cela ressemble à avoir un mot de passe protégé par un autre mot de passe.', + HELP_21_Desc_5: 'Et OUI, en théorie, on peut taper une chaîne de 64 caractères hexadécimaux jusqu\'à en trouver un qui correspond. Il est d\'ailleurs possible d\'écrire un programme qui vérifie très rapidement des clefs privée aléatoires. C\'est ce que l\'on appelle utiliser la "brute force" ou miner des clefs privées. Beaucoup de monde y a pensé très fort et très longtemps. Quelques serveurs haut de gamme peuvent vérifier plus de 1 million de clefs par seconde. Pourtant, même ce chiffre ne donnerait pas accès à un compte suffisamment approvisionné pour en valoir la chandelle ; il est bien plus probable que vous, vos enfant et vos petits-enfants mourront avant d\'obtenir une correspondance.', + HELP_21_Desc_6: 'Si vous connaissez un peu Bitcoin, [ceci remettra les choses en perspective :](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Pour illustrer l\'improbabilité de tout ceci : supposons quqe chaque satoshi de chaque bitcoin qui sera jamais produit soit affecté à sa propre clef privée distincte. La probabilité que, parmi ces clefs, s\'en trouvent deux qui correspondent à la même adresse serait d\'environ 1 sur 100 quintillons. ', + HELP_21_Desc_7: '[Si vous voulez un argumentaire un peu plus technique :](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Ces nombres n\'ont rien à voir avec la technologie des systèmes ; ce sont les maximums autorisés par la thermodynamique. Et ils impliquent clairement qu\'une attaque par brute force contre des clefs de 256 bits restera impossible jusqu\'à ce que l\'on construise des ordinateurs avec autre chose que de la matière et qu\'ils occupent autre chose que l\'espace.', + HELP_21_Desc_8: 'Cela suppose bien entendu que les clefs sont générées d\'une manière totalement aléatoire avec suffisamment d\'entropie. C\'est le cas des clefs générées ici, tout comme celles de Jaxx et de Mist/geth. Les portefeuilles Ethereum sont tous assez bons de ce point de vue. Les clefs générées par des cerveaux humains ne le sont pas, car ces derniers ne sont pas capables de partir d\'un nombre parfaitement aléatoire. Il y a eu des cas d\'autres problèmes d\'entropie insuffisante ou de nombres imparfaitement aléatoires dans le monde de Bitcoin mais il s\'agit là d\'un tout autre problème qui peut attendre un peu.', + + HELP_SecCX_Title: 'Securité - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Où cette extension sauve-t-elle mes informations ?', + HELP_SecCX_Desc_2: 'Les informations stockées dans cette extension sont sauvegardée via [chrome.storage](http://chrome.storage/), c\'est à dire au même endroit que vos mots de passe dans Chrome.', + HELP_SecCX_Desc_3: 'Quelles informations sont sauvegardées ? ', + HELP_SecCX_Desc_4: 'L\'adresse, le surnom, la clef privée sont stockés dans chrome.storage. La clef privée est chiffrée par le mot de passe défini à l\'ajout du portefeuille. Le surnom et l\'adresse du portefeuille ne sont pas chiffrés.', + HELP_SecCX_Desc_5: 'Pourquoi le surnom et l\'adresse du portefeuille ne sont-ils pas chiffrés ? ', + HELP_SecCX_Desc_6: 'Si nous devions chiffrer ces informations, il vous faudrait entrer un mot de passe à chaque fois que vous voudriez voir votre solde ou les surnoms. Si cela vous ennuie, nous vous recommandons d\'utiliser MyEtherWallet.com au lieu de cette extension Chrome.', + + HELP_Sec_Title: 'Sécurité', + HELP_Sec_Desc_1: 'Si l\'une des premières questions que vous vous posez est "Pourquoi devrais-je faire confiance à ces gens ?", c\'est une bonne démarche. Nous espérons que ce qui suit va dissiper vos craintes. ', + HELP_Sec_Desc_2: 'Nous avons commencé en août 2015. Si vous recherchez ["myetherwallet" sur reddit](https://www.reddit.com/search?q=myetherwallet), vous pouvez voir qu\'un nombre considérable de personnes nous utilisent sans problème.', + HELP_Sec_Desc_3: 'Nous n\'allons pas prendre votre argent ou voler vos clefs privées. Il n\'y a pas de code malveillant sur ce site. En fait, les pages "Génération d\'un portefeuille" sont totalement côté client. Cela signifie que tout le code s\'éxécute sur **votre ordinateur** et n\'est jamais sauvé et/ou transmis où que ce soit.', + HELP_Sec_Desc_4: 'Vérifiez l\'URL -- Ce site est servi par Github et vous pouvez en voir le code source ici : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) aux domaines : [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) et [https://www.myetherwallet.com](https://www.myetherwallet.com). Vous pouvez vérifier qu\'il est hébergé chez Github en utilisant [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") ; les deux derniers enregistrements A appartiennent à Github pour leur hébergement de domaines spécifiques.', + HELP_Sec_Desc_5: 'Pour générer les portefeuilles, vous pouvez télécharger le [code source](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Voir #5 ci-dessus.', + HELP_Sec_Desc_6: 'Lancez un test et vérifiez le type d\'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis "Inspecter". Allez à l\'onglet "Network". Générez un portefeuille de test. Vous verrez qu\'il n\'y a pas d\'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n\'a été transféré.', + HELP_Sec_Desc_7: 'Maintenant, pour en être absolument sûr, allez à la page "Resources" (ou "Application"). Vous pouvez y voir tous les éléments qui constituent un site web. Si vous cliquez sur Local Storage, Cookies et Cache, vous verrez que rien n\'y est stocké. Rien n\'y est sauvegardé. Rafraîchissez la page et vous voilà revenu au départ."', + HELP_Sec_Desc_8: 'Si cet outil ne vous plaît pas, alors ne l\'utilisez surtout pas. Nous l\'avons créé pour qu\'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n\'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ', + + HELP_FAQ_Title: 'Plus de réponses utiles aux questions fréquentes', + HELP_Contact_Title: 'Moyens de nous contacter' +}; + +module.exports = fr; },{}],44:[function(require,module,exports){ -// Hindi -'use strict'; -var hi = function() {} -hi.code = 'hi'; -hi.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hi; +// Hebrew +'use strict'; +var he = function() {} +he.code = 'he'; +he.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = he; },{}],45:[function(require,module,exports){ -// Hungarian -'use strict'; -var hu = function() {} -hu.code = 'hu'; -hu.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hu; +// Hindi +'use strict'; +var hi = function() {} +hi.code = 'hi'; +hi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hi; },{}],46:[function(require,module,exports){ -// Indonesian -'use strict'; -var id = function() {} -id.code = 'id'; -id.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = id; +// Hungarian +'use strict'; +var hu = function() {} +hu.code = 'hu'; +hu.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hu; },{}],47:[function(require,module,exports){ -// Italian -// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e -'use strict'; -var it = function() {} -it.code = 'it'; -it.data = { - - /* Navigation*/ - NAV_YourWallets: 'I tuoi portafogli', - NAV_AddWallet: 'Aggiungi portafoglio', - NAV_GenerateWallet: 'Genera portafoglio', - NAV_BulkGenerate: 'Generazione multipla', - NAV_SendEther: 'Invia ether', - NAV_SendTokens: 'Invia token', - NAV_Offline: 'Invia offline', - NAV_WithdrawDAO: 'Preleva DAO', - DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', - NAV_ClaimDGD: 'Richiedi DGD', - DGD_TitleLong: 'Richiedi i tuoi token DGD', - NAV_DeployContract: 'Pubblica contratto', - NAV_MyWallets: 'I miei portafogli', - NAV_ViewWallet: 'Informazioni portafoglio', - NAV_Help: 'Aiuto', - NAV_Contact: 'Contatti', - - /* General */ - x_Password: 'Password', - x_Download: 'Download', - x_Address: 'Il tuo indirizzo', - x_Save: 'Salva', - x_Cancel: 'Annulla', - x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', - x_PrivKey: 'Chiave privata (non crittografata)', - x_PrivKey2: 'Chiave privata', - x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', - x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', - x_Keystore2: 'File Keystore / JSON', - x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', - x_Json: 'File JSON (non crittografato)', - x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', - x_PrintShort: 'Stampa', - x_Print: 'Stampa portafoglio cartaceo', - x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', - x_CSV: 'File CSV (non crittografato)', - x_TXT: 'File TXT (non crittografato)', - x_Wallet: 'Portafoglio', - - /* Header */ - MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', - CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', - MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', - CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', - - /* Footer */ - FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', - FOOTER_1b: 'Creato da', - FOOTER_2: 'Donazioni molto apprezzate:', - FOOTER_3: 'Generazione portafogli lato client da parte di', - FOOTER_4: 'Dichiarazione di non responsabilità', - - /* Sidebar */ - sidebar_AccountInfo: 'Informazioni conto: ', - sidebar_AccountAddr: 'Indirizzo conto: ', - sidebar_AccountBal: 'Saldo conto: ', - sidebar_TokenBal: 'Saldo token: ', - sidebar_Equiv: 'Valori equivalenti: ', - sidebar_TransHistory: 'Storico transazioni: ', - sidebar_DGDBal: 'Informazioni crowdsale DGD:', - sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', - sidebar_donate: 'Dona', - sidebar_thanks: 'GRAZIE!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', - decrypt_Title: 'Seleziona il formato della tua chiave privata:', - decrypt_Select: 'Seleziona un portafoglio:', - - /* Add Wallet */ - ADD_Label_1: 'Cosa vuoi fare?', - ADD_Radio_1: 'Genera un nuovo portafoglio', - ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', - ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', - ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', - ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', - ADD_Radio_4: 'Aggiungi un conto da osservare', - ADD_Label_2: 'Crea un nome:', - ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', - ADD_Label_4: 'Aggiungi un conto da osservare', - ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', - ADD_Label_5: 'Inserisci l\'indirizzo: ', - ADD_Label_6: 'Sblocca portafoglio: ', - ADD_Label_6_short: 'Sblocca', - ADD_Label_7: 'Aggiungi conto', - - /* Generate Wallets */ - GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', - GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', - GEN_Placeholder_1: 'NON dimenticarti di salvarla!', - GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', - GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', - GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', - GEN_Label_3: 'Salva il tuo indirizzo.', - GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Numero di portafogli da generare', - BULK_Label_2: 'Genera portafogli', - BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Indirizzo destinatario: ', - SEND_amount: 'Importo da inviare: ', - SEND_amount_short: 'Importo', - SEND_custom: 'Altro', - SEND_gas: 'Gas', - SEND_generate: 'Genera transazione', - SEND_raw: 'Transazione grezza', - SEND_signed: 'Transazione firmata', - SEND_trans: 'Invia transazione', - SEND_TransferTotal: 'Invia l\'intero saldo', - SENDModal_Title: 'Attenzione! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Stai per inviare', - SENDModal_Content_2: 'all\'indirizzo', - SENDModal_Content_3: 'Sei sicuro di volerlo fare?', - SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', - SENDModal_No: 'No, tiratemi fuori da qui!', - SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', - - /* Tokens */ - TOKEN_Addr: 'Indirizzo: ', - TOKEN_Symbol: 'Simbolo del token: ', - TOKEN_Dec: 'Decimali: ', - - /* Send Transaction */ - TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', - TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', - TRANS_standard: 'ETH (transazione standard)', - TRANS_eth: 'Solo ETH', - TRANS_etc: 'Solo ETC', - TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', - TRANS_data: ' Dati: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', - TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', - TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', - TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', - TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', - TRANSModal_Yes: 'Bene, ho capito.', - TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genera & invia una transazione offline', - OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', - OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', - OFFLINE_Step1_Button: 'Genera informazioni', - OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', - OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', - OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', - OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', - OFFLINE_Step2_Label_2: 'Valore / importo da inviare', - OFFLINE_Step2_Label_3: 'Prezzo gas ', - OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_4: 'Limite gas ', - OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_6: 'Dati', - OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', - OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', - OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', - OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', - - /* DAO */ - DAO_bal1: 'al blocco 1.919.999', - DAO_bal2: 'adesso', - DAO_TitleETH: 'Preleva DAO e ricevi ETH', - DAO_TitleETC: 'Preleva DAO e ricevi ETC', - DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', - DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', - DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', - DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', - DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', - DAOModal_Title: 'Tanto per essere sicuri...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Stai per prelevare', - DAOModal_2: 'token DAO inviando a', - DAOModal_3: 'una somma di', // "in return for" - - /* Digix */ - DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', - DGD_Label_1: 'Stima commissione utilizzata:', - DGD_Label_2: 'Commissione massima fornita:', - DGD_Label_3: 'Prezzo gas:', - DGD_Generate: 'Genera richiesta', - DGD_Content: 'Stai per richiedere i tuoi token DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Genera bytecode', - DEP_generated: 'Bytecode generato', - DEP_signtx: 'Firma transazione', - DEP_interface: 'Interfaccia generata', - - /* My Wallet */ - MYWAL_Nick: 'Nome portafoglio', - MYWAL_Address: 'Indirizzo portafoglio', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Modifica', - MYWAL_View: 'Mostra', - MYWAL_Remove: 'Rimuovi', - MYWAL_RemoveWal: 'Rimozione portafoglio:', - MYWAL_WatchOnly: 'I tuoi conti osservati', - MYWAL_Viewing: 'Dettagli portafoglio: ', - MYWAL_Hide: 'Nascondi informazioni portafoglio', - MYWAL_Edit_2: 'Modifica portafoglio: ', - MYWAL_Name: 'Nome portafoglio', - MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', - MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', - MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', - VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', - - /* CX */ - CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', - CX_quicksend: 'Invio rapido', - - /* Error Messages */ - ERROR_1: 'Ti preghiamo di inserire una quantità valida.', - ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', - ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', - ERROR_4: 'Questo non è un file portafoglio valido. ', - ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', - ERROR_6: 'Indirizzo non valido. ', - ERROR_7: 'Password non valida. ', - ERROR_8: 'Numero non valido. ', - ERROR_9: 'Limite gas non valido. ', - ERROR_10: 'Valori dati non validi. ', - ERROR_11: 'Quantità di gas non valida. ', - ERROR_12: 'Nonce non valido. ', - ERROR_13: 'Transazione firmata non valida. ', - ERROR_14: 'Esiste già un portafoglio con questo nome. ', - ERROR_15: 'Portafoglio non trovato. ', - ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', - ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', - ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', - ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', - ERROR_20: 'Simbolo non valido', - SUCCESS_1: 'Indirizzo valido', - SUCCESS_2: 'Portafoglio decodificato correttamente', - SUCCESS_3: 'Transazione inviata. TX ID: ', - SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', - SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', - SUCCESS_6: 'File selezionato: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Mittente non valido', - GETH_Nonce: 'Nonce troppo basso', - GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', - GETH_Balance: 'Saldo insufficiente', - GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', - GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', - GETH_IntrinsicGas: 'Gas intrinseco troppo basso', - GETH_GasLimit: 'Eccede il limite gas per il blocco', - GETH_NegativeValue: 'Valore negativo', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Grazie ai nostri traduttori: ', - TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', - TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', - HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', - HELP_Remind_Title: 'Qualche promemoria', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', - HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', - - HELP_0_Title: '0) Sono nuovo. Cosa faccio?', - HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', - HELP_0_Desc_2: 'Crea un nuovo portafoglio.', - HELP_0_Desc_3: 'Fai un backup del portafoglio.', - HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', - HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', - - HELP_1_Title: '1) Come creo un nuovo portafoglio? ', - HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', - HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', - HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', - HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', - HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', - - HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', - HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', - HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', - HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', - HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', - HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', - HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', - - HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', - HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', - HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', - HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', - HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', - HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', - HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', - HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', - - HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', - HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', - HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', - HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', - HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', - HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', - - HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', - HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', - HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', - HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', - HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', - HELP_4_Desc_9: 'Fai clic su "Genera transazione".', - HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', - - HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', - HELP_4CX_Desc_2: 'Invio rapido:', - HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', - HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', - HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', - HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', - HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', - HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', - HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', - HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', - - HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', - HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', - HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', - HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', - HELP_5_Desc_5: 'Decomprimi il file.', - HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', - HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', - HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', - - HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', - HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', - HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', - HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', - HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', - HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', - HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', - HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', - - HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', - HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', - HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', - HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', - HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', - HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', - HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', - HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', - HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', - HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', - HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', - HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', - HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', - HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', - HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', - - HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', - HELP_7_Desc_1: 'Vai alla pagina "Invia token".', - HELP_7_Desc_2: 'Sblocca il portafoglio.', - HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', - HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', - HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', - HELP_7_Desc_7: 'Fai clic su "Altro".', - HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', - HELP_7_Desc_9: 'Fai clic su "Salva".', - HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', - HELP_7_Desc_11: 'Fai clic su "Genera transazione".', - HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', - - HELP_8_Title: '8) Che succede se il vostro sito va giù?', - HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', - HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', - HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', - HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', - - HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', - HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', - HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', - HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', - - HELP_9_Title: '9) La pagina "Invia ether" è offline?', - HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', - - HELP_10_Title: '10) Come creo una transazione offline?', - HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', - HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', - HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', - HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', - HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', - HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', - HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', - HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', - - HELP_11_Title: '11) Come faccio a inviare a un contratto?', - HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', - HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', - HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', - HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', - HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', - HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', - HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', - HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', - HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', - HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', - HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', - HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', - HELP_12_Desc_11: 'Con una chiave privata non crittografata...', - HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', - HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', - HELP_12_Desc_15: 'Se sei su un Mac:', - HELP_12_Desc_15b: 'Se sei su un PC:', - HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', - HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', - HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', - HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', - HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', - HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', - HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', - HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', - HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', - HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', - HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', - - HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', - HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', - HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', - HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', - - HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', - HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', - - HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', - HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', - - HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', - - HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', - HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', - - HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', - HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', - - HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', - HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', - HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', - HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', - HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', - HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', - HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', - HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', - HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', - - HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', - HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', - HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', - HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', - HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', - HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', - - HELP_Sec_Title: 'Sicurezza', - HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', - HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', - HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', - HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', - HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', - HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', - HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', - HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', - - HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', - HELP_Contact_Title: 'Modi per contattarci (in Inglese)' -}; - -module.exports = it; +// Indonesian +'use strict'; +var id = function() {} +id.code = 'id'; +id.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dompet Anda', /*'Your Wallets'*/ + NAV_AddWallet: 'Tambahkan Dompet', /*'Add Wallet'*/ + NAV_GenerateWallet: 'Buat Dompet', /*'Generate Wallet'*/ + NAV_BulkGenerate: 'Buat Banyak Dompet Sekaligus', /*'Bulk Generate'*/ + NAV_SendEther: 'Kirim Ether', /*'Send Ether'*/ + NAV_SendTokens: 'Kirim Tokens', /*'Send Tokens'*/ + NAV_Offline: 'Kirim Offline', /*'Send Offline'*/ + NAV_WithdrawDAO: 'Ambil DAO', /*'Withdraw DAO'*/ + DAO_TitleLong: 'Ambil ETH dari Token DAO Anda Withdraw Your Dao Tokens For ETH', /*'Withdraw Your Dao Tokens For ETH'*/ + NAV_ClaimDGD: 'Klaim DGD', /*'Claim DGD'*/ + DGD_TitleLong: 'Klaim DGD Token Anda', /*'Claim Your DGD Tokens'*/ + NAV_DeployContract: 'Deploy Contract', /*'Deploy Contract'*/ + NAV_MyWallets: 'Dompet Saya', /*'My Wallets'*/ + NAV_ViewWallet: 'Lihat Info Dompet', /*'View Wallet Info'*/ + NAV_Help: 'Bantuan', /*'Help'*/ + NAV_Contact: 'Kontak', /*'Contact'*/ + + /* General */ + x_Address: 'Alamat Anda', /*'Your Address'*/ + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Batal', /*'Cancel'*/ + x_CSV: 'File CSV (tidak ter-enkripsi)', /*'CSV file (unencrypted)*/ + x_Download: 'Download', + x_Json: 'File JSON File (tidak ter-enkripsi)', /*'JSON File (unencrypted)'*/ + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Dompet Kertas', /*'Print Paper Wallet'*/ + x_PrintDesc: 'ProTip: klik print dan simpan sebagai PDF, meskipun Anda tidak memiliki printer!', /*'ProTip: Click print and save this as a PDF, even if you do not own a printer!'*/ + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (tidak ter-enkripsi)', /*'Private Key (unencrypted)'*/ + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Simpan', /*'Save'*/ + x_TXT: 'File TXT file (tidak ter-enkripsi)', /*'TXT file (unencrypted)'*/ + x_Wallet: 'Dompet', /*'Wallet'*/ + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'Yos Ginting', + TranslatorAddr_1: '0x8F646C5c215be6E0163f02Bd2eB97AFC2DF70e5c', + /* Translator 1: Start translating into Indonesian. Will do it in stages */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = id; },{}],48:[function(require,module,exports){ -// Japanese -'use strict'; -var ja = function() {} -ja.code = 'ja'; -ja.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'あなたのウォレット', - NAV_AddWallet: 'ウォレットを追加', - NAV_GenerateWallet: 'ウォレットを作成', - NAV_BulkGenerate: 'バルク作成', - NAV_SendEther: 'Ether送出', - NAV_SendTokens: 'トークン送出', - NAV_Offline: 'オフライン送出', - NAV_WithdrawDAO: 'DAO払い戻し', - DAO_TitleLong: 'DAOトークンをETHで払い出し', - NAV_ClaimDGD: 'DGD請求', - DGD_TitleLong: 'DGDトークンを請求', - NAV_DeployContract: 'コントラクトをデプロイ', - NAV_MyWallets: '自分のウォレット', - NAV_ViewWallet: 'ウォレット情報を見る', - NAV_Help: 'ヘルプ', - NAV_Contact: '連絡する', - - /* General */ - x_Address: '自分のアドレス', - x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', - x_CSV: 'CSV ファイル (未暗号化)', - x_Cancel: '取り消す', - x_Download: 'ダウンロード', - x_Json: 'JSON ファイル (未暗号化)', - x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', - x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', - x_Keystore2: 'Keystore / JSON ファイル', - x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', - x_Password: 'パスワード', - x_Print: 'ペーパーウォレットを印刷', - x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', - x_PrintShort: '印刷', - x_PrivKey: 'プライベートキー(未暗号化)', - x_PrivKey2: 'プライベートキー', - x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', - x_Save: '保存する', - x_TXT: 'TXT ファイル (未暗号化)', - x_Wallet: 'ウォレット', - - /* Header */ - MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', - CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', - MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', - CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', - - /* Footer */ - FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', - FOOTER_1b: '制作', - FOOTER_2: '御寄付に感謝!:', - FOOTER_3: 'クライアントサイドウォレット制作', - FOOTER_4: '免責事項', - - /* Sidebar */ - sidebar_AccountInfo: 'アカウント情報: ', - sidebar_AccountAddr: 'アカウントアドレス: ', - sidebar_AccountBal: 'アカウント残高: ', - sidebar_TokenBal: 'トークン残高: ', - sidebar_Equiv: '等価: ', - sidebar_TransHistory: 'トランザクション履歴: ', - sidebar_DGDBal: 'DGDクラウドセール情報:', - sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', - sidebar_donate: '寄付する', - sidebar_thanks: '感謝します!!!', - - /* Decrypt Panel */ - decrypt_Access: 'どの方法でウォレットを操作しますか?', - decrypt_Title: 'プライベートキーフォーマットの選択:', - decrypt_Select: 'ウォレットの選択', - - /* Add Wallet */ - ADD_Label_1: 'ご希望の操作をお選びください', - ADD_Radio_1: '新規ウォレットの作成', - ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', - ADD_Radio_2_alt: 'ウォレットファイルの選択: ', - ADD_Radio_2_short: 'ウォレットファイルを選択', - ADD_Radio_3: 'プライベートキーをペースト/タイプ ', - ADD_Radio_4: '監視するアカウントを追加', - ADD_Label_2: 'ニックネームの作成:', - ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', - ADD_Label_4: '監視するアカウントを追加', - ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', - ADD_Label_5: 'アドレスを入力: ', - ADD_Label_6: 'ウォレットをアンロック: ', - ADD_Label_6_short: 'アンロック', - ADD_Label_7: 'アカウントを追加', - - /* Generate Wallets */ - GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', - GEN_Label_1: '強固なパスワードを入力(9文字以上)', - GEN_Placeholder_1: '必ず保存してください!', - GEN_SuccessMsg: '成功!ウォレットが作成されました。', - GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', - GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', - GEN_Label_3: 'アドレスを保存してください。', - GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', - - /* Bulk Generate Wallets */ - BULK_Label_1: '作成するウォレット数', - BULK_Label_2: '複数ウォレットを作成する', - BULK_SuccessMsg: '成功!ウォレットが作成されました。', - - /* Sending Ether and Tokens */ - SEND_addr: '宛先アドレス: ', - SEND_amount: '送出数量: ', - SEND_amount_short: '数量', - SEND_custom: 'カスタム', - SEND_gas: 'ガス', - SEND_TransferTotal: '残高をすべて送出する', - SEND_generate: 'トランザクションを生成', - SEND_raw: '未加工トランザクション', - SEND_signed: '署名済みトランザクション', - SEND_trans: 'トランザクションの送出', - SENDModal_Title: '警告! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: '送出準備が', - SENDModal_Content_2: 'について、アドレス', - SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', - SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', - SENDModal_No: 'いいえ、中断します。', - SENDModal_Yes: 'はい、確かです。処理を実行します。', - - /* Tokens */ - TOKEN_Addr: 'アドレス:', - TOKEN_Symbol: 'トークンシンボル: ', - TOKEN_Dec: 'ケタ数: ', - - /* Send Transaction */ - TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', - TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', - TRANS_standard: 'ETH(標準トランザクション)', - TRANS_eth: 'ETHのみ', - TRANS_etc: 'ETCのみ', - TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', - TRANS_data: ' データ: ', - TRANS_gas: ' ガス: ', - TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', - - /* Send Transaction Modals */ - TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', - TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', - TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', - TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', - TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: '理解しました。', - TRANSModal_No: '理解できません。ヘルプが必要です。', - - /* Offline Transaction */ - OFFLINE_Title: 'オフライントランザクションを作成し送出', - OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', - OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', - OFFLINE_Step1_Button: '情報生成', - OFFLINE_Step1_Label_1: '送出元アドレス: ', - OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', - OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', - OFFLINE_Step2_Label_1: '送出先アドレス: ', - OFFLINE_Step2_Label_2: '送出する値/総量', - OFFLINE_Step2_Label_3: 'ガス価格 ', - OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_4: 'ガスリミット ', - OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_6: 'データ', - OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', - OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', - OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', - OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', - - /* DAO */ - DAO_bal1: 'ブロック 1,919,999', - DAO_bal2: '現在の', - DAO_TitleETH: 'ETHでDAOを払い出し', - DAO_TitleETC: 'ETCでDAOを払い出し', - DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', - DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', - DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', - DAO_Inst: '赤いボタンをクリックしてください。簡単です。', - DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', - DAOModal_Title: '確認中/...', - DAOModal_1: '払い出しを進めます', - DAOModal_2: 'DAOトークンを', - DAOModal_3: 'に対し', // “の代わりに” - - /* Digix */ - DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', - DGD_Label_1: 'フィー消費量概算:', - DGD_Label_2: 'フィー最大消費量:', - DGD_Label_3: 'ガス価格:', - DGD_Generate: '請求の生成', - DGD_Content: 'DGDトークンの請求を進めます', - - /* Deploy Contracts */ - DEP_generate: 'バイトコードを生成する', - DEP_generated: '生成されたバイトコード', - DEP_signtx: 'トランザクションに署名', - DEP_interface: '生成されたインターフェース', - - /* My Wallet */ - MYWAL_Nick: 'ウォレットニックネーム', - MYWAL_Address: 'ウォレットアドレス', - MYWAL_Bal: '残高', - MYWAL_Edit: '編集', - MYWAL_View: '表示', - MYWAL_Remove: '除去', - MYWAL_RemoveWal: 'ウォレットを除去:', - MYWAL_WatchOnly: '自分の監視専用アカウント', - MYWAL_Viewing: 'ウォレットを表示: ', - MYWAL_Hide: 'ウォレット情報を隠す', - MYWAL_Edit_2: 'ウォレットを編集: ', - MYWAL_Name: 'ウォレット名', - MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', - MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', - MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', - VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', - VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', - - /* Chrome Extension */ - CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', - CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: '正しい値を入力してください。', - ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', - ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', - ERROR_4: '正しいウォレットファイルではありません。 ', - ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', - ERROR_6: '無効なアドレスです。 ', - ERROR_7: '無効なパスワードです。 ', - ERROR_8: '無効な総量です。 ', - ERROR_9: '無効なガスリミットです。 ', - ERROR_10: '無効なデータです。 ', - ERROR_11: '無効なガス総量です。 ', - ERROR_12: '無効な nonce です。 ', - ERROR_13: '無効な署名のトランザクションです。 ', - ERROR_14: '同じニックネームのウォレットが既にあります。 ', - ERROR_15: 'ウォレットが見つかりません。 ', - ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', - ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', - ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', - ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  - ERROR_20: '無効なシンボル', - SUCCESS_1: '有効なアドレス', - SUCCESS_2: 'ウォレットは正常に暗号解除されました。', - SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', - SUCCESS_4: 'ウォレットが追加されました:', - SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', - SUCCESS_6: '選択されました: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'トランスレーターに感謝: ', - TranslatorName_1: 'sekisanchi', - TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', - /* Translator 1: Kazunori Seki / 関一典 */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ja; +// Italian +// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e +'use strict'; +var it = function() {} +it.code = 'it'; +it.data = { + + /* Navigation*/ + NAV_YourWallets: 'I tuoi portafogli', + NAV_AddWallet: 'Aggiungi portafoglio', + NAV_GenerateWallet: 'Genera portafoglio', + NAV_BulkGenerate: 'Generazione multipla', + NAV_SendEther: 'Invia ether', + NAV_SendTokens: 'Invia token', + NAV_Offline: 'Invia offline', + NAV_WithdrawDAO: 'Preleva DAO', + DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', + NAV_ClaimDGD: 'Richiedi DGD', + DGD_TitleLong: 'Richiedi i tuoi token DGD', + NAV_DeployContract: 'Pubblica contratto', + NAV_MyWallets: 'I miei portafogli', + NAV_ViewWallet: 'Informazioni portafoglio', + NAV_Help: 'Aiuto', + NAV_Contact: 'Contatti', + + /* General */ + x_Password: 'Password', + x_Download: 'Download', + x_Address: 'Il tuo indirizzo', + x_Save: 'Salva', + x_Cancel: 'Annulla', + x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', + x_PrivKey: 'Chiave privata (non crittografata)', + x_PrivKey2: 'Chiave privata', + x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', + x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', + x_Keystore2: 'File Keystore / JSON', + x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', + x_Json: 'File JSON (non crittografato)', + x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', + x_PrintShort: 'Stampa', + x_Print: 'Stampa portafoglio cartaceo', + x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', + x_CSV: 'File CSV (non crittografato)', + x_TXT: 'File TXT (non crittografato)', + x_Wallet: 'Portafoglio', + + /* Header */ + MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', + CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', + MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', + CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', + + /* Footer */ + FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', + FOOTER_1b: 'Creato da', + FOOTER_2: 'Donazioni molto apprezzate:', + FOOTER_3: 'Generazione portafogli lato client da parte di', + FOOTER_4: 'Dichiarazione di non responsabilità', + + /* Sidebar */ + sidebar_AccountInfo: 'Informazioni conto: ', + sidebar_AccountAddr: 'Indirizzo conto: ', + sidebar_AccountBal: 'Saldo conto: ', + sidebar_TokenBal: 'Saldo token: ', + sidebar_Equiv: 'Valori equivalenti: ', + sidebar_TransHistory: 'Storico transazioni: ', + sidebar_DGDBal: 'Informazioni crowdsale DGD:', + sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', + sidebar_donate: 'Dona', + sidebar_thanks: 'GRAZIE!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', + decrypt_Title: 'Seleziona il formato della tua chiave privata:', + decrypt_Select: 'Seleziona un portafoglio:', + + /* Add Wallet */ + ADD_Label_1: 'Cosa vuoi fare?', + ADD_Radio_1: 'Genera un nuovo portafoglio', + ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', + ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', + ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', + ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', + ADD_Radio_4: 'Aggiungi un conto da osservare', + ADD_Label_2: 'Crea un nome:', + ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', + ADD_Label_4: 'Aggiungi un conto da osservare', + ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', + ADD_Label_5: 'Inserisci l\'indirizzo: ', + ADD_Label_6: 'Sblocca portafoglio: ', + ADD_Label_6_short: 'Sblocca', + ADD_Label_7: 'Aggiungi conto', + + /* Generate Wallets */ + GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', + GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', + GEN_Placeholder_1: 'NON dimenticarti di salvarla!', + GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', + GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', + GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', + GEN_Label_3: 'Salva il tuo indirizzo.', + GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Numero di portafogli da generare', + BULK_Label_2: 'Genera portafogli', + BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Indirizzo destinatario: ', + SEND_amount: 'Importo da inviare: ', + SEND_amount_short: 'Importo', + SEND_custom: 'Altro', + SEND_gas: 'Gas', + SEND_generate: 'Genera transazione', + SEND_raw: 'Transazione grezza', + SEND_signed: 'Transazione firmata', + SEND_trans: 'Invia transazione', + SEND_TransferTotal: 'Invia l\'intero saldo', + SENDModal_Title: 'Attenzione! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Stai per inviare', + SENDModal_Content_2: 'all\'indirizzo', + SENDModal_Content_3: 'Sei sicuro di volerlo fare?', + SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', + SENDModal_No: 'No, tiratemi fuori da qui!', + SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', + + /* Tokens */ + TOKEN_Addr: 'Indirizzo: ', + TOKEN_Symbol: 'Simbolo del token: ', + TOKEN_Dec: 'Decimali: ', + + /* Send Transaction */ + TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', + TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', + TRANS_standard: 'ETH (transazione standard)', + TRANS_eth: 'Solo ETH', + TRANS_etc: 'Solo ETC', + TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', + TRANS_data: ' Dati: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', + TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', + TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', + TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', + TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', + TRANSModal_Yes: 'Bene, ho capito.', + TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genera & invia una transazione offline', + OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', + OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', + OFFLINE_Step1_Button: 'Genera informazioni', + OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', + OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', + OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', + OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', + OFFLINE_Step2_Label_2: 'Valore / importo da inviare', + OFFLINE_Step2_Label_3: 'Prezzo gas ', + OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_4: 'Limite gas ', + OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_6: 'Dati', + OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', + OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', + OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', + OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', + + /* DAO */ + DAO_bal1: 'al blocco 1.919.999', + DAO_bal2: 'adesso', + DAO_TitleETH: 'Preleva DAO e ricevi ETH', + DAO_TitleETC: 'Preleva DAO e ricevi ETC', + DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', + DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', + DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', + DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', + DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', + DAOModal_Title: 'Tanto per essere sicuri...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Stai per prelevare', + DAOModal_2: 'token DAO inviando a', + DAOModal_3: 'una somma di', // "in return for" + + /* Digix */ + DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', + DGD_Label_1: 'Stima commissione utilizzata:', + DGD_Label_2: 'Commissione massima fornita:', + DGD_Label_3: 'Prezzo gas:', + DGD_Generate: 'Genera richiesta', + DGD_Content: 'Stai per richiedere i tuoi token DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Genera bytecode', + DEP_generated: 'Bytecode generato', + DEP_signtx: 'Firma transazione', + DEP_interface: 'Interfaccia generata', + + /* My Wallet */ + MYWAL_Nick: 'Nome portafoglio', + MYWAL_Address: 'Indirizzo portafoglio', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Modifica', + MYWAL_View: 'Mostra', + MYWAL_Remove: 'Rimuovi', + MYWAL_RemoveWal: 'Rimozione portafoglio:', + MYWAL_WatchOnly: 'I tuoi conti osservati', + MYWAL_Viewing: 'Dettagli portafoglio: ', + MYWAL_Hide: 'Nascondi informazioni portafoglio', + MYWAL_Edit_2: 'Modifica portafoglio: ', + MYWAL_Name: 'Nome portafoglio', + MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', + MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', + MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', + VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', + + /* CX */ + CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', + CX_quicksend: 'Invio rapido', + + /* Error Messages */ + ERROR_1: 'Ti preghiamo di inserire una quantità valida.', + ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', + ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', + ERROR_4: 'Questo non è un file portafoglio valido. ', + ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', + ERROR_6: 'Indirizzo non valido. ', + ERROR_7: 'Password non valida. ', + ERROR_8: 'Numero non valido. ', + ERROR_9: 'Limite gas non valido. ', + ERROR_10: 'Valori dati non validi. ', + ERROR_11: 'Quantità di gas non valida. ', + ERROR_12: 'Nonce non valido. ', + ERROR_13: 'Transazione firmata non valida. ', + ERROR_14: 'Esiste già un portafoglio con questo nome. ', + ERROR_15: 'Portafoglio non trovato. ', + ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', + ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', + ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', + ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', + ERROR_20: 'Simbolo non valido', + SUCCESS_1: 'Indirizzo valido', + SUCCESS_2: 'Portafoglio decodificato correttamente', + SUCCESS_3: 'Transazione inviata. TX ID: ', + SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', + SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', + SUCCESS_6: 'File selezionato: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Mittente non valido', + GETH_Nonce: 'Nonce troppo basso', + GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', + GETH_Balance: 'Saldo insufficiente', + GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', + GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', + GETH_IntrinsicGas: 'Gas intrinseco troppo basso', + GETH_GasLimit: 'Eccede il limite gas per il blocco', + GETH_NegativeValue: 'Valore negativo', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Grazie ai nostri traduttori: ', + TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', + TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', + HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', + HELP_Remind_Title: 'Qualche promemoria', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', + HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', + + HELP_0_Title: '0) Sono nuovo. Cosa faccio?', + HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', + HELP_0_Desc_2: 'Crea un nuovo portafoglio.', + HELP_0_Desc_3: 'Fai un backup del portafoglio.', + HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', + HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', + + HELP_1_Title: '1) Come creo un nuovo portafoglio? ', + HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', + HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', + HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', + HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', + HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', + + HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', + HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', + HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', + HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', + HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', + HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', + HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', + + HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', + HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', + HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', + HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', + HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', + HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', + HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', + HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', + + HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', + HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', + HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', + HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', + HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', + HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', + + HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', + HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', + HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', + HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', + HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', + HELP_4_Desc_9: 'Fai clic su "Genera transazione".', + HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', + + HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', + HELP_4CX_Desc_2: 'Invio rapido:', + HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', + HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', + HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', + HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', + HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', + HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', + HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', + HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', + + HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', + HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', + HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', + HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', + HELP_5_Desc_5: 'Decomprimi il file.', + HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', + HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', + HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', + + HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', + HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', + HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', + HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', + HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', + HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', + HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', + HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', + + HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', + HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', + HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', + HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', + HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', + HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', + HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', + HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', + HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', + HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', + HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', + HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', + HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', + HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', + HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', + + HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', + HELP_7_Desc_1: 'Vai alla pagina "Invia token".', + HELP_7_Desc_2: 'Sblocca il portafoglio.', + HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', + HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', + HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', + HELP_7_Desc_7: 'Fai clic su "Altro".', + HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', + HELP_7_Desc_9: 'Fai clic su "Salva".', + HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', + HELP_7_Desc_11: 'Fai clic su "Genera transazione".', + HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', + + HELP_8_Title: '8) Che succede se il vostro sito va giù?', + HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', + HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', + HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', + HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', + + HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', + HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', + HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', + HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', + + HELP_9_Title: '9) La pagina "Invia ether" è offline?', + HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', + + HELP_10_Title: '10) Come creo una transazione offline?', + HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', + HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', + HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', + HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', + HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', + HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', + HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', + HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', + + HELP_11_Title: '11) Come faccio a inviare a un contratto?', + HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', + HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', + HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', + HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', + HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', + HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', + HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', + HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', + HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', + HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', + HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', + HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', + HELP_12_Desc_11: 'Con una chiave privata non crittografata...', + HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', + HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', + HELP_12_Desc_15: 'Se sei su un Mac:', + HELP_12_Desc_15b: 'Se sei su un PC:', + HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', + HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', + HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', + HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', + HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', + HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', + HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', + HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', + HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', + HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', + HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', + + HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', + HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', + HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', + HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', + + HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', + HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', + + HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', + HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', + + HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', + + HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', + HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', + + HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', + HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', + + HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', + HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', + HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', + HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', + HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', + HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', + HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', + HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', + HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', + + HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', + HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', + HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', + HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', + HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', + HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', + + HELP_Sec_Title: 'Sicurezza', + HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', + HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', + HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', + HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', + HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', + HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', + HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', + HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', + + HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', + HELP_Contact_Title: 'Modi per contattarci (in Inglese)' +}; + +module.exports = it; },{}],49:[function(require,module,exports){ -// Korean -'use strict'; -var ko = function() {} -ko.code = 'ko'; -ko.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ko; +// Japanese +'use strict'; +var ja = function() {} +ja.code = 'ja'; +ja.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'あなたのウォレット', + NAV_AddWallet: 'ウォレットを追加', + NAV_GenerateWallet: 'ウォレットを作成', + NAV_BulkGenerate: 'バルク作成', + NAV_SendEther: 'Ether送出', + NAV_SendTokens: 'トークン送出', + NAV_Offline: 'オフライン送出', + NAV_WithdrawDAO: 'DAO払い戻し', + DAO_TitleLong: 'DAOトークンをETHで払い出し', + NAV_ClaimDGD: 'DGD請求', + DGD_TitleLong: 'DGDトークンを請求', + NAV_DeployContract: 'コントラクトをデプロイ', + NAV_MyWallets: '自分のウォレット', + NAV_ViewWallet: 'ウォレット情報を見る', + NAV_Help: 'ヘルプ', + NAV_Contact: '連絡する', + + /* General */ + x_Address: '自分のアドレス', + x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', + x_CSV: 'CSV ファイル (未暗号化)', + x_Cancel: '取り消す', + x_Download: 'ダウンロード', + x_Json: 'JSON ファイル (未暗号化)', + x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', + x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', + x_Keystore2: 'Keystore / JSON ファイル', + x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', + x_Password: 'パスワード', + x_Print: 'ペーパーウォレットを印刷', + x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', + x_PrintShort: '印刷', + x_PrivKey: 'プライベートキー(未暗号化)', + x_PrivKey2: 'プライベートキー', + x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', + x_Save: '保存する', + x_TXT: 'TXT ファイル (未暗号化)', + x_Wallet: 'ウォレット', + + /* Header */ + MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', + CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', + MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', + CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', + + /* Footer */ + FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', + FOOTER_1b: '制作', + FOOTER_2: '御寄付に感謝!:', + FOOTER_3: 'クライアントサイドウォレット制作', + FOOTER_4: '免責事項', + + /* Sidebar */ + sidebar_AccountInfo: 'アカウント情報: ', + sidebar_AccountAddr: 'アカウントアドレス: ', + sidebar_AccountBal: 'アカウント残高: ', + sidebar_TokenBal: 'トークン残高: ', + sidebar_Equiv: '等価: ', + sidebar_TransHistory: 'トランザクション履歴: ', + sidebar_DGDBal: 'DGDクラウドセール情報:', + sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', + sidebar_donate: '寄付する', + sidebar_thanks: '感謝します!!!', + + /* Decrypt Panel */ + decrypt_Access: 'どの方法でウォレットを操作しますか?', + decrypt_Title: 'プライベートキーフォーマットの選択:', + decrypt_Select: 'ウォレットの選択', + + /* Add Wallet */ + ADD_Label_1: 'ご希望の操作をお選びください', + ADD_Radio_1: '新規ウォレットの作成', + ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', + ADD_Radio_2_alt: 'ウォレットファイルの選択: ', + ADD_Radio_2_short: 'ウォレットファイルを選択', + ADD_Radio_3: 'プライベートキーをペースト/タイプ ', + ADD_Radio_4: '監視するアカウントを追加', + ADD_Label_2: 'ニックネームの作成:', + ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', + ADD_Label_4: '監視するアカウントを追加', + ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', + ADD_Label_5: 'アドレスを入力: ', + ADD_Label_6: 'ウォレットをアンロック: ', + ADD_Label_6_short: 'アンロック', + ADD_Label_7: 'アカウントを追加', + + /* Generate Wallets */ + GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', + GEN_Label_1: '強固なパスワードを入力(9文字以上)', + GEN_Placeholder_1: '必ず保存してください!', + GEN_SuccessMsg: '成功!ウォレットが作成されました。', + GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', + GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', + GEN_Label_3: 'アドレスを保存してください。', + GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', + + /* Bulk Generate Wallets */ + BULK_Label_1: '作成するウォレット数', + BULK_Label_2: '複数ウォレットを作成する', + BULK_SuccessMsg: '成功!ウォレットが作成されました。', + + /* Sending Ether and Tokens */ + SEND_addr: '宛先アドレス: ', + SEND_amount: '送出数量: ', + SEND_amount_short: '数量', + SEND_custom: 'カスタム', + SEND_gas: 'ガス', + SEND_TransferTotal: '残高をすべて送出する', + SEND_generate: 'トランザクションを生成', + SEND_raw: '未加工トランザクション', + SEND_signed: '署名済みトランザクション', + SEND_trans: 'トランザクションの送出', + SENDModal_Title: '警告! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: '送出準備が', + SENDModal_Content_2: 'について、アドレス', + SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', + SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', + SENDModal_No: 'いいえ、中断します。', + SENDModal_Yes: 'はい、確かです。処理を実行します。', + + /* Tokens */ + TOKEN_Addr: 'アドレス:', + TOKEN_Symbol: 'トークンシンボル: ', + TOKEN_Dec: 'ケタ数: ', + + /* Send Transaction */ + TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', + TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', + TRANS_standard: 'ETH(標準トランザクション)', + TRANS_eth: 'ETHのみ', + TRANS_etc: 'ETCのみ', + TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', + TRANS_data: ' データ: ', + TRANS_gas: ' ガス: ', + TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', + + /* Send Transaction Modals */ + TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', + TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', + TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', + TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', + TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: '理解しました。', + TRANSModal_No: '理解できません。ヘルプが必要です。', + + /* Offline Transaction */ + OFFLINE_Title: 'オフライントランザクションを作成し送出', + OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', + OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', + OFFLINE_Step1_Button: '情報生成', + OFFLINE_Step1_Label_1: '送出元アドレス: ', + OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', + OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', + OFFLINE_Step2_Label_1: '送出先アドレス: ', + OFFLINE_Step2_Label_2: '送出する値/総量', + OFFLINE_Step2_Label_3: 'ガス価格 ', + OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_4: 'ガスリミット ', + OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_6: 'データ', + OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', + OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', + OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', + OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', + + /* DAO */ + DAO_bal1: 'ブロック 1,919,999', + DAO_bal2: '現在の', + DAO_TitleETH: 'ETHでDAOを払い出し', + DAO_TitleETC: 'ETCでDAOを払い出し', + DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', + DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', + DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', + DAO_Inst: '赤いボタンをクリックしてください。簡単です。', + DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', + DAOModal_Title: '確認中/...', + DAOModal_1: '払い出しを進めます', + DAOModal_2: 'DAOトークンを', + DAOModal_3: 'に対し', // “の代わりに” + + /* Digix */ + DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', + DGD_Label_1: 'フィー消費量概算:', + DGD_Label_2: 'フィー最大消費量:', + DGD_Label_3: 'ガス価格:', + DGD_Generate: '請求の生成', + DGD_Content: 'DGDトークンの請求を進めます', + + /* Deploy Contracts */ + DEP_generate: 'バイトコードを生成する', + DEP_generated: '生成されたバイトコード', + DEP_signtx: 'トランザクションに署名', + DEP_interface: '生成されたインターフェース', + + /* My Wallet */ + MYWAL_Nick: 'ウォレットニックネーム', + MYWAL_Address: 'ウォレットアドレス', + MYWAL_Bal: '残高', + MYWAL_Edit: '編集', + MYWAL_View: '表示', + MYWAL_Remove: '除去', + MYWAL_RemoveWal: 'ウォレットを除去:', + MYWAL_WatchOnly: '自分の監視専用アカウント', + MYWAL_Viewing: 'ウォレットを表示: ', + MYWAL_Hide: 'ウォレット情報を隠す', + MYWAL_Edit_2: 'ウォレットを編集: ', + MYWAL_Name: 'ウォレット名', + MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', + MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', + MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', + VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', + VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', + + /* Chrome Extension */ + CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', + CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: '正しい値を入力してください。', + ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', + ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', + ERROR_4: '正しいウォレットファイルではありません。 ', + ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', + ERROR_6: '無効なアドレスです。 ', + ERROR_7: '無効なパスワードです。 ', + ERROR_8: '無効な総量です。 ', + ERROR_9: '無効なガスリミットです。 ', + ERROR_10: '無効なデータです。 ', + ERROR_11: '無効なガス総量です。 ', + ERROR_12: '無効な nonce です。 ', + ERROR_13: '無効な署名のトランザクションです。 ', + ERROR_14: '同じニックネームのウォレットが既にあります。 ', + ERROR_15: 'ウォレットが見つかりません。 ', + ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', + ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', + ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', + ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  + ERROR_20: '無効なシンボル', + SUCCESS_1: '有効なアドレス', + SUCCESS_2: 'ウォレットは正常に暗号解除されました。', + SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', + SUCCESS_4: 'ウォレットが追加されました:', + SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', + SUCCESS_6: '選択されました: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'トランスレーターに感謝: ', + TranslatorName_1: 'sekisanchi', + TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', + /* Translator 1: Kazunori Seki / 関一典 */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ja; },{}],50:[function(require,module,exports){ -// Dutch -'use strict'; -var nl = function() {} -nl.code = 'nl'; -nl.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Jouw Wallets', - NAV_AddWallet: 'Wallet Toevoegen', - NAV_GenerateWallet: 'Genereer Wallet', - NAV_BulkGenerate: 'Bulk Genereren', - NAV_SendEther: 'Verzend Ether', - NAV_SendTokens: 'Verzend Tokens', - NAV_Offline: 'Verzend Offline', - NAV_WithdrawDAO: 'DAO Opnemen', - DAO_TitleLong: 'DAO Token in ETH omzetten', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim je DGD Tokens', - NAV_DeployContract: 'Verspreid Contract', - NAV_MyWallets: 'Mijn Wallets', - NAV_ViewWallet: 'Bekijk Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Wachtwoord', - x_Download: 'Download', - x_Address: 'Je Adres', - x_Save: 'x_Opslaan', - x_Cancel: 'x_Annuleren', - x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', - x_PrivKey: 'Prive Sleutel (onversleuteld)', - x_PrivKey2: 'Prive Sleutel', - x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', - x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', - x_Keystore2: 'Keystore/JSON Bestand', - x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', - x_Json: 'JSON Bestand (onversleuteld)', - x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', - x_PrintShort: 'Afdrukken', - x_Print: 'Druk je papieren wallet af', - x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', - x_CSV: 'CSV bestand (onverlseuteld)', - x_TXT: 'TXT bestand (onverlseuteld)', - - /* Header */ - MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', - CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', - - /* Footer */ - FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', - FOOTER_1b: 'Gemaakt door', - FOOTER_2: 'Donaties worden zeer gewaardeerd:', - FOOTER_3: 'Client-side wallet genereren door', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Informatie: ', - sidebar_AccountAddr: 'Account Adres: ', - sidebar_AccountBal: 'Account Saldo: ', - sidebar_TokenBal: 'Token Saldo: ', - sidebar_Equiv: 'Equivalente Waarde: ', - sidebar_TransHistory: 'Transactie Geschiedenis: ', - sidebar_DGDBal: 'DGD Crowdsale Informatie:', - sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', - sidebar_donate: 'Doneer', - sidebar_thanks: 'BEDANKT!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hoe wil je toegang tot je wallet?', - decrypt_Title: 'Selecteer het formaat van je prive sleutel:', - decrypt_Select: 'Selecteer een Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'Wat wil je doen?', - ADD_Radio_1: 'Genereer nieuwe wallet', - ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', - ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', - ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', - ADD_Radio_3: 'Plak/Type je prive sleutel ', - ADD_Radio_4: 'Voeg een te bekijken account toe', - ADD_Label_2: 'Verzin een Nickname:', - ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', - ADD_Label_4: 'Voeg een te bekijken account toe', - ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', - ADD_Label_5: 'Voor het Adres in: ', - ADD_Label_6: 'Ontsleutel je wallet: ', - ADD_Label_6_short: 'Ontsleutel', - ADD_Label_7: 'Voeg account toe', - - /* Generate Wallets */ - GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', - GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', - GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', - GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', - GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', - GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', - GEN_Label_3: 'Sla je adres op.', - GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Aantal te genereren wallets', - BULK_Label_2: 'Genereer Wallets', - BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Aan Adres: ', - SEND_amount: 'Te verzenden bedrag: ', - SEND_amount_short: 'Bedrag', - SEND_custom: 'Aangepast', - SEND_gas: 'Gas', - SEND_generate: 'Genereer Transactie', - SEND_raw: 'Raw Transactie', - SEND_signed: 'Gesigneerde Transactie', - SEND_trans: 'Verzend Transactie', - SEND_TransferTotal: 'Verzend volledig saldo', - SENDModal_Title: 'Waarschuwing! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', - SENDModal_Content_2: 'aan adres', - SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', - SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', - SENDModal_No: 'Nee, haal me hier weg!', - SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token Symbool: ', - TOKEN_Dec: 'Decimalen: ', - - /* Send Transaction */ - TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', - TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', - TRANS_standard: 'ETH (Standaard Transactie)', - TRANS_eth: 'Enkel ETH', - TRANS_etc: 'Enkel ETC', - TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', - TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', - TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', - TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', - TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', - TRANSModal_Yes: 'Mooi, nu begrijp ik het.', - TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', - OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', - OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', - OFFLINE_Step1_Button: 'Genereer Informatie', - OFFLINE_Step1_Label_1: 'Van Adres: ', - OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', - OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', - OFFLINE_Step2_Label_1: 'Aan Adres: ', - OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', - OFFLINE_Step2_Label_3: 'Gas Prijs ', - OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_4: 'Gas Limiet ', - OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', - OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', - OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', - OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', - - /* DAO */ - DAO_bal1: 'bij blok 1.919.999', - DAO_bal2: 'momenteel', - DAO_TitleETH: 'DAO voor ETH opnemen', - DAO_TitleETC: 'DAO voor ETC opnemen', - DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', - DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', - DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', - DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', - DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', - DAOModal_Title: 'Voor de zekerheid...', - // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Je staat op het punt om', - DAOModal_2: 'DAO Tokens op te nemen voor', - DAOModal_3: 'voor', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', - DGD_Label_1: 'Geschatte transactie kosten:', - DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', - DGD_Label_3: 'Gas Prijs:', - DGD_Generate: 'Genereer Claim', - DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', - - /* Deploy Contracts */ - DEP_generate: 'Genereer Bytecode', - DEP_generated: 'Gegenereerde Bytecode', - DEP_signtx: 'Onderteken Transactie', - DEP_interface: 'Gegenereerde Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Adres', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Bewerken', - MYWAL_View: 'Bekijken', - MYWAL_Remove: 'Verwijderen', - MYWAL_RemoveWal: 'Verwijder Wallet:', - MYWAL_WatchOnly: 'Je Watch-Only Accounts', - MYWAL_Viewing: 'Te Bekijken Wallet: ', - MYWAL_Hide: 'Verberg Wallet Info', - MYWAL_Edit_2: 'Bewerk Wallet: ', - MYWAL_Name: 'Wallet Naam', - MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', - MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', - MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', - VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', - CX_quicksend: 'VerzendSnel', - - /* Error Messages */ - ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', - ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', - ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', - ERROR_4: 'Dit is geen geldig Wallet bestand. ', - ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', - ERROR_6: 'Ongeldig adres. ', - ERROR_7: 'Ongeldig wachtwoord. ', - ERROR_8: 'Ongeldig bedrag. ', - ERROR_9: 'Ongeldige gas limiet. ', - ERROR_10: 'Ongeldige data waarde. ', - ERROR_11: 'Ongeldige gas bedrag. ', - ERROR_12: 'Ongeldige nonce. ', - ERROR_13: 'Ongeldige gesigneerde transactie. ', - ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', - ERROR_15: 'Wallet niet gevonden. ', - ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', - ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', - ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', - ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', - ERROR_20: 'Ongeldig symbol', - SUCCESS_1: 'Geldig adres', - SUCCESS_2: 'Wallet succesvol ontsleuteld', - SUCCESS_3: 'Transactie verzonden. TX ID: ', - SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', - SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', - SUCCESS_6: 'Bestand Geselecteerd: ', - - /* Translation Info */ - translate_version: '0.3', - Translator_Desc: 'Veel dank voor onze vertalers: ', - TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', - TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', - HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', - HELP_Remind_Title: 'Enkele herinneringen', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', - HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', - - HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', - HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', - HELP_0_Desc_2: 'Creer een nieuwe wallet.', - HELP_0_Desc_3: 'Maak een wallet back-up.', - HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', - HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', - - HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', - HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', - HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', - HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', - HELP_1_Desc_4: 'klik "GENENEREER".', - HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', - - HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', - HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', - HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', - HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', - HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', - HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', - HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', - - HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', - HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', - HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', - HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', - HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', - HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', - HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', - - HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', - HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', - HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', - HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', - HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', - HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', - HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', - HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', - HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', - - HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', - HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', - HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', - HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', - HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', - HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', - HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', - HELP_4_Desc_9: 'Klik "Genereer Transactie".', - HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', - HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', - - HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', - HELP_4CX_Desc_2: 'VerzendSnel:', - HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', - HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', - HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', - HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', - HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', - HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', - HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', - HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', - - HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', - HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', - HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', - HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_5_Desc_5: 'Unzip het.', - HELP_5_Desc_6: 'Dubbel-klik `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', - HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', - HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', - - HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', - HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', - HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', - HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', - HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', - HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', - HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', - HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', - - HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', - HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', - HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', - HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', - HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', - HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', - HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', - HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', - HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', - HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', - HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', - HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', - HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', - - HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', - HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', - HELP_7_Desc_2: 'Ontsleutel je wallet.', - HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', - HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', - HELP_7_Desc_6: 'Als het token niet wordt vermeld:', - HELP_7_Desc_7: 'Klik op "Aangepast".', - HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', - HELP_7_Desc_9: 'Klik op "Opslaan".', - HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', - HELP_7_Desc_11: 'Klik "Genereer Transactie".', - HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', - HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', - - HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', - HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', - HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', - HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', - HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', - - HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', - HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', - HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', - HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', - - HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', - HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', - - HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', - HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', - HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', - HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', - HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', - HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', - HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', - HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', - HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', - HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', - - HELP_11_Title: '11) Hoe verstuur ik naar een contract?', - HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', - HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', - HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', - HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', - HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', - - HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', - HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', - HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', - HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', - HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', - HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', - HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', - HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', - HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', - HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', - HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', - HELP_12_Desc_15: 'Als je op een Mac werkt:', - HELP_12_Desc_15b: 'Als je op een PC werkt:', - HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', - HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', - HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', - HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', - HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', - HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C://`', - HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', - - HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', - - HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', - HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', - HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', - - HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', - HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', - - HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', - HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', - - HELP_18_Title: '18) Waar is mijn geth wallet bestand?', - - HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', - HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', - - HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', - HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', - - HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', - HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', - HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', - HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', - HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', - HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', - HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', - - HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', - HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', - HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', - HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', - HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', - HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', - - HELP_Sec_Title: 'Beveiliging', - HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', - HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', - HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', - HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', - HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', - HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', - HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', - HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', - - HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', - HELP_Contact_Title: 'Manieren om in contact te komen' -}; - -module.exports = nl; +// Korean +'use strict'; +var ko = function() {} +ko.code = 'ko'; +ko.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ko; },{}],51:[function(require,module,exports){ -// Norwegian -'use strict'; -var no = function() {} -no.code = 'no'; -no.data = { - - /* Navigation*/ - NAV_YourWallets: 'Dine lommebøker', - NAV_AddWallet: 'Legg til lommebok', - NAV_GenerateWallet: 'Opprett lommebok', - NAV_BulkGenerate: 'Opprett flere lommebøker', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Token', - NAV_Offline: 'Send Frakoblet', - NAV_WithdrawDAO: 'Ta ut DAO', - DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', - NAV_ClaimDGD: 'Gjør krav på DGD', - DGD_TitleLong: 'Gjør krav på dine DGD-token', - NAV_DeployContract: 'Utplasser kontrakt', - NAV_MyWallets: 'Mine lommebøker', - NAV_ViewWallet: 'Vis lommebok-info', - NAV_Help: 'Hjelp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Passord', - x_Download: 'Last ned', - x_Address: 'Din adresse', - x_Save: 'x_Save', - x_Cancel: 'x_Cancel', - x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', - x_PrivKey: 'Privat nøkkel (ukryptert)', - x_PrivKey2: 'Privat nøkkel', - x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', - x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', - x_Keystore2: 'Keystore/JSON-fil', - x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', - x_Json: 'JSON-fil (ukryptert)', - x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', - x_PrintShort: 'Skriv ut', - x_Print: 'Skriv ut papirlommebok', - x_PrintDesc: 'ProTips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', - x_CSV: 'CSV-fil (ukryptert)', - x_TXT: 'TXT-fil (ukryptert)', - x_Wallet: 'Lommebok', - - /* Header */ - MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', - CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ - - /* Footer */ - FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', - FOOTER_1b: 'Skapt av', - FOOTER_2: 'Donasjoner mottas med takk:', - FOOTER_3: 'Klient-side lommebok-oppretting av', - FOOTER_4: 'Ansvarsfraskrivelse', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformasjon: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Saldo på konto: ', - sidebar_TokenBal: 'Token-saldo: ', - sidebar_Equiv: 'Tilsvarende verdier: ', - sidebar_TransHistory: 'Transaksjonshistorikk: ', - sidebar_DGDBal: 'DGD Crowdsale informasjon:', - sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', - sidebar_donate: 'Doner', - sidebar_thanks: 'TAKK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', - decrypt_Title: 'Velg formatet på din private nøkkel:', - decrypt_Select: 'Velg en lommebok:', - - /* Add Wallet */ - ADD_Label_1: 'Hva ønsker du å gjøre?', - ADD_Radio_1: 'Opprett ny lommebok', - ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', - ADD_Radio_2_alt: 'Velg lommebok-fil: ', - ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', - ADD_Radio_3: 'Lim/skriv inn din private nøkkel', - ADD_Radio_4: 'Legg til en konto for overvåkning', - ADD_Label_2: 'Lag et kallenavn:', - ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', - ADD_Label_4: 'Legg til en konto for overvåkning', - ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', - ADD_Label_5: 'Oppgi adressen: ', - ADD_Label_6: 'Lås opp lommeboen din', - ADD_Label_6_short: 'Lås opp', - ADD_Label_7: 'Legg til konto', - - /* Generate Wallets */ - GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', - GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', - GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', - GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', - GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', - GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', - GEN_Label_3: 'Lagre adressen din.', - GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antall lommebøker som skal opprettes', - BULK_Label_2: 'Opprett lommebøker', - BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Til-adresse: ', - SEND_amount: 'Beløp som skal sendes: ', - SEND_amount_short: 'Beløp', - SEND_custom: 'Tilpasning', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' - SEND_generate: 'Generer transaksjon', - SEND_raw: 'Rå-transaksjon', - SEND_signed: 'Signert transaksjon', - SEND_trans: 'Send transaksjon', - SENDModal_Title: 'Advarsel! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du er i ferd med å sende', - SENDModal_Content_2: 'til adressen', - SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', - SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', - SENDModal_No: 'Nei, få meg ut herfra!', - SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-symbol: ', - TOKEN_Dec: 'Desimaler: ', - - /* Send Transaction */ - TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', - TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', - TRANS_standard: 'ETH (Standard transaksjon)', - TRANS_eth: 'Kun ETH', - TRANS_etc: 'Kun ETC', - TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', - TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', - TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', - TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', - TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', - TRANSModal_Yes: 'Flott, jeg skjønner det nå.', - TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generer & send frakoblet (offline) transaksjon', - OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', - OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', - OFFLINE_Step1_Button: 'Generer informasjon', - OFFLINE_Step1_Label_1: 'Fra-adresse: ', - OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', - OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', - OFFLINE_Step2_Label_1: 'Til-adresse: ', - OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', - OFFLINE_Step2_Label_3: 'Gas-pris ', - OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_4: 'Gas-grense ', - OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', - OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', - OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', - OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', - - /* DAO */ - DAO_bal1: 'ved blokk 1,919,999', - DAO_bal2: 'nåværende', - DAO_TitleETH: 'Veksle inn DAO mot ETH', - DAO_TitleETC: 'Veksle inn DAO mot ETC', - DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', - DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', - DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-poletter, vennligst bruk "Send Token"-siden.', - DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', - DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', - DAOModal_Title: 'Bare for å være sikker...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - // note: this may be a bit rough in Norwegian. - DAOModal_1: 'Du er i ferd med å veksle inn ', - DAOModal_2: 'DAO-tokens til ', - DAOModal_3: 'i bytte mot', - - /* Digix */ - DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', - DGD_Label_1: 'Estimert avgiftsforbruk:', - DGD_Label_2: 'Oppgitt maksimal avgift:', - DGD_Label_3: 'Gas-pris:', - DGD_Generate: 'Opprett krav', - DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', - - /* Deploy Contracts */ - DEP_generate: 'Generer Bytecode', - DEP_generated: 'Generert Bytecode', - DEP_signtx: 'Signer transaksjon', - DEP_interface: 'Generer grensesnitt', - - /* My Wallet */ - MYWAL_Nick: 'Lommebok-kallenavn', - MYWAL_Address: 'Lommebok-adresse', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Rediger', - MYWAL_View: 'Se på', - MYWAL_Remove: 'Fjern', - MYWAL_RemoveWal: 'Fjern lommebok:', - MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', - MYWAL_Viewing: 'Viser lommebok: ', - MYWAL_Hide: 'Skjul lommebok-info', - MYWAL_Edit_2: 'Rediger lommebok: ', - MYWAL_Name: 'Lommeboknavn', - MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', - MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', - MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', - VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', - - /* Chrome Extension */ - CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', - CX_quicksend: 'Send', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vennligst oppgi et gyldig beløp.', - ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', - ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', - ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', - ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', - ERROR_6: 'Ugyldig adresse. ', - ERROR_7: 'Ugyldig passord. ', - ERROR_8: 'Ugyldig beløp. ', - ERROR_9: 'Ugyldig gas-grense. ', - ERROR_10: 'Ugyldig dataverdi. ', - ERROR_11: 'Ugyldig gas-mengde. ', - ERROR_12: 'Ugyldig nonce. ', - ERROR_13: 'Ugyldig signert transaksjon. ', - ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', - ERROR_15: 'Lommebok ikke funnet. ', - ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', - ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', - ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', - ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', - ERROR_20: 'Ugyldig symbol', - SUCCESS_1: 'Gyldig adresse', - SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', - SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', - SUCCESS_4: 'Lommeboken din ble lagt til: ', - SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', - SUCCESS_6: 'Valgt fil: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Feil på avsender', - GETH_Nonce: 'Nonce for liten', - GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', - GETH_Balance: 'Utilstrekkelig saldo', - GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', - GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', - GETH_IntrinsicGas: 'Gas-egenverdi for lav', - GETH_GasLimit: 'Overskrider blokkens gas-grense', - GETH_NegativeValue: 'Negativ verdi', - - /* Tranlsation Info */ - translate_version: '0.4', - Translator_Desc: 'Takk til oversetterne våre: ', - TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', - HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', - HELP_Remind_Title: 'Noen påminnelser', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', - HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', - - HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', - HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', - HELP_0_Desc_2: 'Opprett en ny lommebok.', - HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', - HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', - HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', - - HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', - HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', - HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', - HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', - HELP_1_Desc_4: 'Klikk "OPPRETT".', - HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', - - HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', - HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', - HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', - HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', - HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', - HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', - HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', - - HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', - HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', - HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', - HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', - HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', - HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', - HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', - - HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', - HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', - HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', - HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', - HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', - HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', - HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', - HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', - - HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', - HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', - HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', - HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', - HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', - HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', - HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', - HELP_4_Desc_9: 'Klikk "Generer transaksjon".', - HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', - - HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', - HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', - HELP_4CX_Desc_2: 'Send:', - HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', - HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', - HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', - HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', - HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', - HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', - HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', - HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', - HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', - - HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', - HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send frakoblet"-siden.', - HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', - HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_5_Desc_5: 'Pakk ut zip-fila.', - HELP_5_Desc_6: 'Dobbelklikk `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', - HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', - HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', - - HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', - HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', - HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', - HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', - HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', - HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', - HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', - HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', - - HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', - HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', - HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', - HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', - HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', - HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', - HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', - HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', - HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', - HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', - HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', - HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', - HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', - HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', - HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', - - HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', - HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', - HELP_7_Desc_2: 'Lås opp lommeboken din.', - HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', - HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', - HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', - HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', - HELP_7_Desc_7: 'Klikk "Tilpasning".', - HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// - HELP_7_Desc_9: 'Klikk "Lagre".', - HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', - HELP_7_Desc_11: 'Klikk "Generer transaksjon".', - HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', - - HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', - HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', - HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', - HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', - HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', - - HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', - HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', - HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', - HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', - - HELP_9_Title: '9) Er "Send ether"-siden offline?', - HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Frakoblet transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', - - HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', - HELP_10_Desc_1: 'Naviger til "Send Frakoblet"-siden via din internettilknyttede datamaskin.', - HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', - HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', - HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', - HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', - HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', - HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', - HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', - - HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', - HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', - HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', - HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', - HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', - HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', - HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', - HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', - HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', - HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', - HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', - HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', - HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', - HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', - HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', - HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', - HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', - HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', - HELP_12_Desc_15: 'Hvis du er på en Mac:', - HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', - HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt/`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', - HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', - HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', - HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', - HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C://`', - HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:/ikke_noe_spesielt_slett_meg.txt`', - HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', - HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', - - HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', - HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', - - HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', - HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', - - HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', - HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', - - HELP_18_Title: '18) Hvor er min geth lommebok-fil', - - HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', - HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', - - HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', - HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', - - HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', - HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', - HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', - HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', - HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', - HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', - HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', - HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', - HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', - - HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', - HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', - HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', - HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', - HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', - HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', - HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', - - HELP_Sec_Title: 'Sikring', - HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', - HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', - HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', - HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', - HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', - HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', - HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', - HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', - - HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', - HELP_Contact_Title: 'Måter å ta kontakt på' -}; - -module.exports = no; +// Dutch +'use strict'; +var nl = function() {} +nl.code = 'nl'; +nl.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Jouw Wallets', + NAV_AddWallet: 'Wallet Toevoegen', + NAV_GenerateWallet: 'Genereer Wallet', + NAV_BulkGenerate: 'Bulk Genereren', + NAV_SendEther: 'Verzend Ether', + NAV_SendTokens: 'Verzend Tokens', + NAV_Offline: 'Verzend Offline', + NAV_WithdrawDAO: 'DAO Opnemen', + DAO_TitleLong: 'DAO Token in ETH omzetten', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim je DGD Tokens', + NAV_DeployContract: 'Verspreid Contract', + NAV_MyWallets: 'Mijn Wallets', + NAV_ViewWallet: 'Bekijk Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Wachtwoord', + x_Download: 'Download', + x_Address: 'Je Adres', + x_Save: 'x_Opslaan', + x_Cancel: 'x_Annuleren', + x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', + x_PrivKey: 'Prive Sleutel (onversleuteld)', + x_PrivKey2: 'Prive Sleutel', + x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', + x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', + x_Keystore2: 'Keystore/JSON Bestand', + x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', + x_Json: 'JSON Bestand (onversleuteld)', + x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', + x_PrintShort: 'Afdrukken', + x_Print: 'Druk je papieren wallet af', + x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', + x_CSV: 'CSV bestand (onverlseuteld)', + x_TXT: 'TXT bestand (onverlseuteld)', + + /* Header */ + MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', + CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', + + /* Footer */ + FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', + FOOTER_1b: 'Gemaakt door', + FOOTER_2: 'Donaties worden zeer gewaardeerd:', + FOOTER_3: 'Client-side wallet genereren door', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Informatie: ', + sidebar_AccountAddr: 'Account Adres: ', + sidebar_AccountBal: 'Account Saldo: ', + sidebar_TokenBal: 'Token Saldo: ', + sidebar_Equiv: 'Equivalente Waarde: ', + sidebar_TransHistory: 'Transactie Geschiedenis: ', + sidebar_DGDBal: 'DGD Crowdsale Informatie:', + sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', + sidebar_donate: 'Doneer', + sidebar_thanks: 'BEDANKT!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hoe wil je toegang tot je wallet?', + decrypt_Title: 'Selecteer het formaat van je prive sleutel:', + decrypt_Select: 'Selecteer een Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'Wat wil je doen?', + ADD_Radio_1: 'Genereer nieuwe wallet', + ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', + ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', + ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', + ADD_Radio_3: 'Plak/Type je prive sleutel ', + ADD_Radio_4: 'Voeg een te bekijken account toe', + ADD_Label_2: 'Verzin een Nickname:', + ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', + ADD_Label_4: 'Voeg een te bekijken account toe', + ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', + ADD_Label_5: 'Voor het Adres in: ', + ADD_Label_6: 'Ontsleutel je wallet: ', + ADD_Label_6_short: 'Ontsleutel', + ADD_Label_7: 'Voeg account toe', + + /* Generate Wallets */ + GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', + GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', + GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', + GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', + GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', + GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', + GEN_Label_3: 'Sla je adres op.', + GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Aantal te genereren wallets', + BULK_Label_2: 'Genereer Wallets', + BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Aan Adres: ', + SEND_amount: 'Te verzenden bedrag: ', + SEND_amount_short: 'Bedrag', + SEND_custom: 'Aangepast', + SEND_gas: 'Gas', + SEND_generate: 'Genereer Transactie', + SEND_raw: 'Raw Transactie', + SEND_signed: 'Gesigneerde Transactie', + SEND_trans: 'Verzend Transactie', + SEND_TransferTotal: 'Verzend volledig saldo', + SENDModal_Title: 'Waarschuwing! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', + SENDModal_Content_2: 'aan adres', + SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', + SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', + SENDModal_No: 'Nee, haal me hier weg!', + SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token Symbool: ', + TOKEN_Dec: 'Decimalen: ', + + /* Send Transaction */ + TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', + TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', + TRANS_standard: 'ETH (Standaard Transactie)', + TRANS_eth: 'Enkel ETH', + TRANS_etc: 'Enkel ETC', + TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', + TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', + TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', + TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', + TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', + TRANSModal_Yes: 'Mooi, nu begrijp ik het.', + TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', + OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', + OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', + OFFLINE_Step1_Button: 'Genereer Informatie', + OFFLINE_Step1_Label_1: 'Van Adres: ', + OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', + OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', + OFFLINE_Step2_Label_1: 'Aan Adres: ', + OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', + OFFLINE_Step2_Label_3: 'Gas Prijs ', + OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_4: 'Gas Limiet ', + OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', + OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', + OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', + OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', + + /* DAO */ + DAO_bal1: 'bij blok 1.919.999', + DAO_bal2: 'momenteel', + DAO_TitleETH: 'DAO voor ETH opnemen', + DAO_TitleETC: 'DAO voor ETC opnemen', + DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', + DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', + DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', + DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', + DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', + DAOModal_Title: 'Voor de zekerheid...', + // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Je staat op het punt om', + DAOModal_2: 'DAO Tokens op te nemen voor', + DAOModal_3: 'voor', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', + DGD_Label_1: 'Geschatte transactie kosten:', + DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', + DGD_Label_3: 'Gas Prijs:', + DGD_Generate: 'Genereer Claim', + DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', + + /* Deploy Contracts */ + DEP_generate: 'Genereer Bytecode', + DEP_generated: 'Gegenereerde Bytecode', + DEP_signtx: 'Onderteken Transactie', + DEP_interface: 'Gegenereerde Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Adres', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Bewerken', + MYWAL_View: 'Bekijken', + MYWAL_Remove: 'Verwijderen', + MYWAL_RemoveWal: 'Verwijder Wallet:', + MYWAL_WatchOnly: 'Je Watch-Only Accounts', + MYWAL_Viewing: 'Te Bekijken Wallet: ', + MYWAL_Hide: 'Verberg Wallet Info', + MYWAL_Edit_2: 'Bewerk Wallet: ', + MYWAL_Name: 'Wallet Naam', + MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', + MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', + MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', + VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', + CX_quicksend: 'VerzendSnel', + + /* Error Messages */ + ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', + ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', + ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', + ERROR_4: 'Dit is geen geldig Wallet bestand. ', + ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', + ERROR_6: 'Ongeldig adres. ', + ERROR_7: 'Ongeldig wachtwoord. ', + ERROR_8: 'Ongeldig bedrag. ', + ERROR_9: 'Ongeldige gas limiet. ', + ERROR_10: 'Ongeldige data waarde. ', + ERROR_11: 'Ongeldige gas bedrag. ', + ERROR_12: 'Ongeldige nonce. ', + ERROR_13: 'Ongeldige gesigneerde transactie. ', + ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', + ERROR_15: 'Wallet niet gevonden. ', + ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', + ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', + ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', + ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', + ERROR_20: 'Ongeldig symbol', + SUCCESS_1: 'Geldig adres', + SUCCESS_2: 'Wallet succesvol ontsleuteld', + SUCCESS_3: 'Transactie verzonden. TX ID: ', + SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', + SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', + SUCCESS_6: 'Bestand Geselecteerd: ', + + /* Translation Info */ + translate_version: '0.3', + Translator_Desc: 'Veel dank voor onze vertalers: ', + TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', + TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', + HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', + HELP_Remind_Title: 'Enkele herinneringen', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', + HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', + + HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', + HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', + HELP_0_Desc_2: 'Creer een nieuwe wallet.', + HELP_0_Desc_3: 'Maak een wallet back-up.', + HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', + HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', + + HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', + HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', + HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', + HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', + HELP_1_Desc_4: 'klik "GENENEREER".', + HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', + + HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', + HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', + HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', + HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', + HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', + HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', + HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', + + HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', + HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', + HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', + HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', + HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', + HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', + HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', + + HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', + HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', + HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', + HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', + HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', + HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', + HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', + HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', + HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', + + HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', + HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', + HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', + HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', + HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', + HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', + HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', + HELP_4_Desc_9: 'Klik "Genereer Transactie".', + HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', + HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', + + HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', + HELP_4CX_Desc_2: 'VerzendSnel:', + HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', + HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', + HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', + HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', + HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', + HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', + HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', + HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', + + HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', + HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', + HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', + HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_5_Desc_5: 'Unzip het.', + HELP_5_Desc_6: 'Dubbel-klik `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', + HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', + HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', + + HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', + HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', + HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', + HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', + HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', + HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', + HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', + HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', + + HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', + HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', + HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', + HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', + HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', + HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', + HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', + HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', + HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', + HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', + HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', + HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', + HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', + + HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', + HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', + HELP_7_Desc_2: 'Ontsleutel je wallet.', + HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', + HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', + HELP_7_Desc_6: 'Als het token niet wordt vermeld:', + HELP_7_Desc_7: 'Klik op "Aangepast".', + HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', + HELP_7_Desc_9: 'Klik op "Opslaan".', + HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', + HELP_7_Desc_11: 'Klik "Genereer Transactie".', + HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', + HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', + + HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', + HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', + HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', + HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', + HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', + + HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', + HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', + HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', + HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', + + HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', + HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', + + HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', + HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', + HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', + HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', + HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', + HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', + HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', + HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', + HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', + HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', + + HELP_11_Title: '11) Hoe verstuur ik naar een contract?', + HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', + HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', + HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', + HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', + HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', + + HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', + HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', + HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', + HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', + HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', + HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', + HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', + HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', + HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', + HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', + HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', + HELP_12_Desc_15: 'Als je op een Mac werkt:', + HELP_12_Desc_15b: 'Als je op een PC werkt:', + HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', + HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', + HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', + HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', + HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', + HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C:`', + HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:\\niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', + + HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', + + HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', + HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', + HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', + + HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', + HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', + + HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', + HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', + + HELP_18_Title: '18) Waar is mijn geth wallet bestand?', + + HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', + HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', + + HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', + HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', + + HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', + HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', + HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', + HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', + HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', + HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', + HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', + + HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', + HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', + HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', + HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', + HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', + HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', + + HELP_Sec_Title: 'Beveiliging', + HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', + HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', + HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', + HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', + HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', + HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', + HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', + HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', + + HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', + HELP_Contact_Title: 'Manieren om in contact te komen' +}; + +module.exports = nl; },{}],52:[function(require,module,exports){ -// Polish -'use strict'; -var pl = function() {} -pl.code = 'pl'; -pl.data = { - - /* Navigation*/ - NAV_YourWallets: 'Twoje Portfele', - NAV_AddWallet: 'Dodaj Portfel', - NAV_GenerateWallet: 'Wygeneruj Portfel', - NAV_BulkGenerate: 'Generuj Hurtowo', - NAV_SendEther: 'Wyślij Ether', - NAV_SendTokens: 'Wyślij Tokeny', - NAV_Offline: 'Wyślij Offline', - NAV_WithdrawDAO: 'Wypłać DAO', - DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', - NAV_ClaimDGD: 'Odbierz DGD', - DGD_TitleLong: 'Odbierz swoje Tokeny DGD', - NAV_MyWallets: 'Moje Portfele', - NAV_ViewWallet: 'Wyświetl informacje o portfelu', - NAV_Help: 'Pomoc', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Hasło', - x_Download: 'Pobierz', - x_Address: 'Twój Adres', - x_Save: 'Zapisz', - x_Cancel: 'Anuluj', - x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', - x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', - x_PrivKey2: 'Klucz Prywatny', - x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', - x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', - x_Keystore2: 'Plik Keystore/JSON', - x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', - x_Json: 'Plik JSON (nieszyfrowany)', - x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', - x_PrintShort: 'Drukuj', - x_Print: 'Drukuj Portfel Papierowy', - x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', - x_CSV: 'Plik CSV (nieszyfrowany)', - x_TXT: 'Plik TXT (nieszyfrowany)', - x_Wallet: 'Portfel', - - /* Header */ - MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', - CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', - MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', - CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', - - /* Footer */ - FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', - FOOTER_1b: 'Twórcy:', - FOOTER_2: 'Darowizny:', - FOOTER_3: 'Generowanie portfeli po stronie klienta przez', - FOOTER_4: 'Wyłączenie odpowiedzialności', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacje o Koncie: ', - sidebar_AccountAddr: 'Adres Konta: ', - sidebar_AccountBal: 'Stan Konta: ', - sidebar_TokenBal: 'Stan Tokenów: ', - sidebar_Equiv: 'Ekwiwalent: ', - sidebar_TransHistory: 'Historia Transakcji: ', - sidebar_DGDBal: 'Informacje o sprzedaży DGD:', - sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', - sidebar_donate: 'Prześlij darowiznę', - sidebar_thanks: 'DZIĘKUJEMY!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', - decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', - decrypt_Select: 'Wybierz Portfel:', - - /* Add Wallet */ - ADD_Label_1: 'Co chciałbyś zrobić?', - ADD_Radio_1: 'Generuj Nowy Portfel', - ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', - ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', - ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', - ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', - ADD_Radio_4: 'Dodaj Konto do Obserwacji', - ADD_Label_2: 'Utwórz Nazwę Użytkownika:', - ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', - ADD_Label_4: 'Dodaj Konto do Obserwacji', - ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', - ADD_Label_5: 'Wpisz Adres: ', - ADD_Label_6: 'Odblokuj Portfel', - ADD_Label_6_short: 'Odblokuj', - ADD_Label_7: 'Dodaj konto', - - /* Generate Wallets */ - GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', - GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', - GEN_Placeholder_1: 'NIE zapomnij tego hasła!', - GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', - GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', - GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', - GEN_Label_3: 'Zapisz swój adres.', - GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Ilość Portfeli do Wygenerowania', - BULK_Label_2: 'Generuj Portfele', - BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Do Adresu: ', - SEND_amount: 'Kwota do Wysłania: ', - SEND_amount_short: 'Kwota', - SEND_custom: 'Inny', - SEND_gas: 'Paliwo', - SEND_TransferTotal: 'Wyślij wszystkie środki', - SEND_generate: 'Wygeneruj Transakcję', - SEND_raw: 'Surowa Transakcja', - SEND_signed: 'Podpisana Transakcja', - SEND_trans: 'Wyślij Transakcję', - SENDModal_Title: 'Ostrzeżenie! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Wysyłasz', - SENDModal_Content_2: 'do adresu', - SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', - SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', - SENDModal_No: 'Nie, zabierz mnie stąd!', - SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Symbol Tokenu: ', - TOKEN_Dec: 'Miejsc po przecinku: ', - - /* Send Transaction */ - TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', - TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', - TRANS_standard: 'ETH (Standardowa Transakcja)', - TRANS_eth: 'Tylko ETH', - TRANS_etc: 'Tylko ETC', - TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', - TRANS_data: ' Dane: ', - TRANS_gas: ' Paliwo: ', - TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', - TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', - TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', - TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', - TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', - TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', - TRANSModal_Yes: 'Super, już rozumiem.', - TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', - OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', - OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', - OFFLINE_Step1_Button: 'Wygeneruj Informacje', - OFFLINE_Step1_Label_1: 'Od Adresu: ', - OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', - OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', - OFFLINE_Step2_Label_1: 'Do Adresu: ', - OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', - OFFLINE_Step2_Label_3: 'Cena Paliwa ', - OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_4: 'Limit Paliwa ', - OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', - OFFLINE_Step2_Label_5: 'Wyróżnik', - OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_6: 'Dane', - OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', - OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', - OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', - OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', - - /* DAO */ - DAO_bal1: 'w bloku 1,919,999', - DAO_bal2: 'aktualny', - DAO_TitleETH: 'Wypłać DAO do ETH', - DAO_TitleETC: 'Wypłać DAO do ETC', - DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', - DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', - DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', - DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', - DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', - DAOModal_Title: 'Tylko się upewniam...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Zamierzasz wypłacić', - DAOModal_2: 'DAO tokenów do', - DAOModal_3: 'za', // "w zamian za" - - /* Digix */ - DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', - DGD_Label_1: 'Szacunkowa Opłata:', - DGD_Label_2: 'Zapewniona Maksymalna Opłata:', - DGD_Label_3: 'Cena Paliwa:', - DGD_Generate: 'Wygeneruj Żądanie', - DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', - - /* Deploy Contracts */ - NAV_DeployContract: 'Wyślij Kontrakt', - DEP_generate: 'Wygeneruj Kod Bajtowy', - DEP_generated: 'Wygenerowany Kod Bajtowy', - DEP_signtx: 'Podpisz Transakcję', - DEP_interface: 'Wygeneruj Interfejs', - - /* My Wallet */ - MYWAL_Nick: 'Nazwa Portfela', - MYWAL_Address: 'Adres Portfela', - MYWAL_Bal: 'Środki', - MYWAL_Edit: 'Edytuj', - MYWAL_View: 'Podgląd', - MYWAL_Remove: 'Usuń', - MYWAL_RemoveWal: 'Usuń Portfel:', - MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', - MYWAL_Viewing: 'Podgląd Portfela: ', - MYWAL_Hide: 'Ukryj Dane Portfela', - MYWAL_Edit_2: 'Edytuj Portfel: ', - MYWAL_Name: 'Nazwa Portfela', - MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', - MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', - MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', - VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', - - /* Chrome Extension */ - CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Wyślij', - - /* Error Messages */ - ERROR_1: 'Wprowadź prawidłową kwotę.', - ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', - ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', - ERROR_4: 'To nie jest prawidłowy plik portfela. ', - ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', - ERROR_6: 'Błędny adres. ', - ERROR_7: 'Błędne hasło. ', - ERROR_8: 'Błędna wartość. ', - ERROR_9: 'Błędny limit paliwa. ', - ERROR_10: 'Błędne dane. ', - ERROR_11: 'Błędna ilość paliwa. ', - ERROR_12: 'Błędny wyróżnik. ', - ERROR_13: 'Błąd podpisu transakcji. ', - ERROR_14: 'Portfel z tą nazwą już istnieje. ', - ERROR_15: 'Nie znaleziono portfela. ', - ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', - ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', - ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', - ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', - ERROR_20: 'Nieprawidłowy symbol', - SUCCESS_1: 'Prawidłowy adres', - SUCCESS_2: 'Portfel został odszyfrowany', - SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', - SUCCESS_4: 'Twój portfel został dodany: ', - SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', - SUCCESS_6: 'Wybrany plik: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Nieprawidłowy nadawca', - GETH_Nonce: 'Wyróżnik transakcji za niski', - GETH_Cheap: 'Cena paliwa poniżej akceptacji', - GETH_Balance: 'Niewystarczająca ilość środków na koncie', - GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', - GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', - GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', - GETH_GasLimit: 'Przekroczono limit paliwa na blok', - GETH_NegativeValue: 'Ujemna wartość', - - /* Tranlsation Info */ - translate_version: '3.0 (0.3)', - Translator_Desc: 'Podziękowania tłumaczom: ', - TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', - TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: '', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', - HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', - HELP_Remind_Title: 'W ramach uściślenia', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', - HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', - - HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', - HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', - HELP_0_Desc_2: 'Wygeneruj nowy portfel.', - HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', - HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', - HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', - - HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', - HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', - HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', - HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', - HELP_1_Desc_4: 'Kliknij "GENERUJ".', - HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', - - HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', - HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', - HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', - HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', - HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', - HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', - HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', - - HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', - HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', - HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', - HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', - HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', - HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', - HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', - - HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', - HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', - HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', - HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', - HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', - - HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', - HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', - HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', - HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', - HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', - HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', - HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', - HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', - HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', - HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', - HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', - - HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', - HELP_4CX_Desc_2: 'Wyślij:', - HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', - HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', - HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', - HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', - HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', - HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', - HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', - HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', - HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', - - HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', - HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', - HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', - HELP_5_Desc_5: 'Rozpakuj paczkę.', - HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', - HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', - HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', - - HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', - HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', - HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', - HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', - HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', - HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', - HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', - HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', - - HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', - HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', - HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', - HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', - HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', - HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', - HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', - HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', - HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', - HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', - HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', - HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', - HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', - HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', - HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', - - HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', - HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', - HELP_7_Desc_2: 'Odblokuj portfel.', - HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', - HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', - HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', - HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', - HELP_7_Desc_7: 'Kliknij "Inny".', - HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', - HELP_7_Desc_9: 'Kliknij "Zapisz".', - HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', - HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', - HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', - HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', - HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', - HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', - - HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', - HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', - HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', - HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', - HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', - - HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', - HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', - HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', - HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', - - HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', - HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', - - HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', - HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', - HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', - HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', - HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', - HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', - HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', - HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', - HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', - - HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', - HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', - HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', - HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', - HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', - HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', - HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', - HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', - HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', - HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', - HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', - HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', - HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', - HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', - HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', - HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', - HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', - HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', - HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', - HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt/`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', - HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt/`', - HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', - HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', - HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', - HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', - - HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', - HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', - HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', - HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', - - HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', - HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', - - HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', - HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', - - HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', - - HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', - HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', - - HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', - HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', - - HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', - HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', - HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', - HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', - HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', - HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', - HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', - HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', - HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', - - HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', - HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', - HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', - HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', - HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', - HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', - - HELP_Sec_Title: 'Bezpieczeństwo', - HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', - HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', - HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', - HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', - HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', - HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', - HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', - HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', - - HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', - HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' -}; - -module.exports = pl; +// Norwegian +'use strict'; +var no = function() {} +no.code = 'no'; +no.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dine lommebøker', + NAV_AddWallet: 'Legg til lommebok', + NAV_GenerateWallet: 'Opprett lommebok', + NAV_BulkGenerate: 'Opprett flere lommebøker', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Token', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Ta ut DAO', + DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', + NAV_ClaimDGD: 'Gjør krav på DGD', + DGD_TitleLong: 'Gjør krav på dine DGD-token', + NAV_DeployContract: 'Utplasser kontrakt', + NAV_MyWallets: 'Mine lommebøker', + NAV_ViewWallet: 'Vis lommebok-info', + NAV_Help: 'Hjelp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Passord', + x_Download: 'Last ned', + x_Address: 'Din adresse', + x_Save: 'x_Save', + x_Cancel: 'x_Cancel', + x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', + x_PrivKey: 'Privat nøkkel (ukryptert)', + x_PrivKey2: 'Privat nøkkel', + x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', + x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', + x_Keystore2: 'Keystore/JSON-fil', + x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', + x_Json: 'JSON-fil (ukryptert)', + x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', + x_PrintShort: 'Skriv ut', + x_Print: 'Skriv ut papirlommebok', + x_PrintDesc: 'Profftips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', + x_CSV: 'CSV-fil (ukryptert)', + x_TXT: 'TXT-fil (ukryptert)', + x_Wallet: 'Lommebok', + + /* Header */ + MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', + CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ + + /* Footer */ + FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', + FOOTER_1b: 'Skapt av', + FOOTER_2: 'Donasjoner mottas med takk:', + FOOTER_3: 'Klient-side lommebok-oppretting av', + FOOTER_4: 'Ansvarsfraskrivelse', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformasjon: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Saldo på konto: ', + sidebar_TokenBal: 'Token-saldo: ', + sidebar_Equiv: 'Tilsvarende verdier: ', + sidebar_TransHistory: 'Transaksjonshistorikk: ', + sidebar_DGDBal: 'DGD Crowdsale informasjon:', + sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', + sidebar_donate: 'Doner', + sidebar_thanks: 'TAKK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', + decrypt_Title: 'Velg formatet på din private nøkkel:', + decrypt_Select: 'Velg en lommebok:', + + /* Add Wallet */ + ADD_Label_1: 'Hva ønsker du å gjøre?', + ADD_Radio_1: 'Opprett ny lommebok', + ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', + ADD_Radio_2_alt: 'Velg lommebok-fil: ', + ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', + ADD_Radio_3: 'Lim/skriv inn din private nøkkel', + ADD_Radio_4: 'Legg til en konto for overvåkning', + ADD_Label_2: 'Lag et kallenavn:', + ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', + ADD_Label_4: 'Legg til en konto for overvåkning', + ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', + ADD_Label_5: 'Oppgi adressen: ', + ADD_Label_6: 'Lås opp lommeboen din', + ADD_Label_6_short: 'Lås opp', + ADD_Label_7: 'Legg til konto', + + /* Generate Wallets */ + GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', + GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', + GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', + GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', + GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', + GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', + GEN_Label_3: 'Lagre adressen din.', + GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antall lommebøker som skal opprettes', + BULK_Label_2: 'Opprett lommebøker', + BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Til-adresse: ', + SEND_amount: 'Beløp som skal sendes: ', + SEND_amount_short: 'Beløp', + SEND_custom: 'Tilpasning', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' + SEND_generate: 'Generer transaksjon', + SEND_raw: 'Rå-transaksjon', + SEND_signed: 'Signert transaksjon', + SEND_trans: 'Send transaksjon', + SENDModal_Title: 'Advarsel! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du er i ferd med å sende', + SENDModal_Content_2: 'til adressen', + SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', + SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', + SENDModal_No: 'Nei, få meg ut herfra!', + SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-symbol: ', + TOKEN_Dec: 'Desimaler: ', + + /* Send Transaction */ + TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', + TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', + TRANS_standard: 'ETH (Standard transaksjon)', + TRANS_eth: 'Kun ETH', + TRANS_etc: 'Kun ETC', + TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', + TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', + TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', + TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', + TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', + TRANSModal_Yes: 'Flott, jeg skjønner det nå.', + TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generer & send offline transaksjon', + OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', + OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', + OFFLINE_Step1_Button: 'Generer informasjon', + OFFLINE_Step1_Label_1: 'Fra-adresse: ', + OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', + OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', + OFFLINE_Step2_Label_1: 'Til-adresse: ', + OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', + OFFLINE_Step2_Label_3: 'Gas-pris ', + OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_4: 'Gas-grense ', + OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', + OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', + OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', + OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', + + /* DAO */ + DAO_bal1: 'ved blokk 1,919,999', + DAO_bal2: 'nåværende', + DAO_TitleETH: 'Veksle inn DAO mot ETH', + DAO_TitleETC: 'Veksle inn DAO mot ETC', + DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', + DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', + DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-token, vennligst bruk "Send Token"-siden.', + DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', + DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', + DAOModal_Title: 'Bare for å være sikker...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + // note: this may be a bit rough in Norwegian. + DAOModal_1: 'Du er i ferd med å veksle inn ', + DAOModal_2: 'DAO-tokens til ', + DAOModal_3: 'i bytte mot', + + /* Digix */ + DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', + DGD_Label_1: 'Estimert avgiftsforbruk:', + DGD_Label_2: 'Oppgitt maksimal avgift:', + DGD_Label_3: 'Gas-pris:', + DGD_Generate: 'Opprett krav', + DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', + + /* Deploy Contracts */ + DEP_generate: 'Generer Bytecode', + DEP_generated: 'Generert Bytecode', + DEP_signtx: 'Signer transaksjon', + DEP_interface: 'Generer grensesnitt', + + /* My Wallet */ + MYWAL_Nick: 'Lommebok-kallenavn', + MYWAL_Address: 'Lommebok-adresse', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Rediger', + MYWAL_View: 'Se på', + MYWAL_Remove: 'Fjern', + MYWAL_RemoveWal: 'Fjern lommebok:', + MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', + MYWAL_Viewing: 'Viser lommebok: ', + MYWAL_Hide: 'Skjul lommebok-info', + MYWAL_Edit_2: 'Rediger lommebok: ', + MYWAL_Name: 'Lommeboknavn', + MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', + MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', + MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', + VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', + + /* Chrome Extension */ + CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', + CX_quicksend: 'Send', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vennligst oppgi et gyldig beløp.', + ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', + ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', + ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', + ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', + ERROR_6: 'Ugyldig adresse. ', + ERROR_7: 'Ugyldig passord. ', + ERROR_8: 'Ugyldig beløp. ', + ERROR_9: 'Ugyldig gas-grense. ', + ERROR_10: 'Ugyldig dataverdi. ', + ERROR_11: 'Ugyldig gas-mengde. ', + ERROR_12: 'Ugyldig nonce. ', + ERROR_13: 'Ugyldig signert transaksjon. ', + ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', + ERROR_15: 'Lommebok ikke funnet. ', + ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', + ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', + ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', + ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', + ERROR_20: 'Ugyldig symbol', + SUCCESS_1: 'Gyldig adresse', + SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', + SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', + SUCCESS_4: 'Lommeboken din ble lagt til: ', + SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', + SUCCESS_6: 'Valgt fil: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Feil på avsender', + GETH_Nonce: 'Nonce for liten', + GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', + GETH_Balance: 'Utilstrekkelig saldo', + GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', + GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', + GETH_IntrinsicGas: 'Gas-egenverdi for lav', + GETH_GasLimit: 'Overskrider blokkens gas-grense', + GETH_NegativeValue: 'Negativ verdi', + + /* Tranlsation Info */ + translate_version: '0.4', + Translator_Desc: 'Takk til oversetterne våre: ', + TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', + HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', + HELP_Remind_Title: 'Noen påminnelser', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', + HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', + + HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', + HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', + HELP_0_Desc_2: 'Opprett en ny lommebok.', + HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', + HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', + HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', + + HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', + HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', + HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', + HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', + HELP_1_Desc_4: 'Klikk "OPPRETT".', + HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', + + HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', + HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', + HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', + HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', + HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', + HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', + HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', + + HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', + HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', + HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', + HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', + HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', + HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', + HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', + + HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', + HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', + HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', + HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', + HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', + HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', + HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', + HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', + + HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', + HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', + HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', + HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', + HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', + HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', + HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', + HELP_4_Desc_9: 'Klikk "Generer transaksjon".', + HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', + + HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', + HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', + HELP_4CX_Desc_2: 'Send:', + HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', + HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', + HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', + HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', + HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', + HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', + HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', + HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', + HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', + + HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', + HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send offline"-siden.', + HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', + HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_5_Desc_5: 'Pakk ut zip-fila.', + HELP_5_Desc_6: 'Dobbelklikk `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', + HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', + HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', + + HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', + HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', + HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', + HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', + HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', + HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', + HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', + HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', + + HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', + HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', + HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', + HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', + HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', + HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', + HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', + HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', + HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', + HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', + HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', + HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', + HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', + HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', + HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', + + HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', + HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', + HELP_7_Desc_2: 'Lås opp lommeboken din.', + HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', + HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', + HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', + HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', + HELP_7_Desc_7: 'Klikk "Tilpasning".', + HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// + HELP_7_Desc_9: 'Klikk "Lagre".', + HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', + HELP_7_Desc_11: 'Klikk "Generer transaksjon".', + HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', + + HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', + HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', + HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', + HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', + HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', + + HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', + HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', + HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', + HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', + + HELP_9_Title: '9) Er "Send ether"-siden offline?', + HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Offline transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', + + HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', + HELP_10_Desc_1: 'Naviger til "Send Offline"-siden via din internettilknyttede datamaskin.', + HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', + HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', + HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', + HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', + HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', + HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', + HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', + + HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', + HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', + HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', + HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', + HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', + HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', + HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', + HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', + HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', + HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', + HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', + HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', + HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', + HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', + HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', + HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', + HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', + HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', + HELP_12_Desc_15: 'Hvis du er på en Mac:', + HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', + HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', + HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', + HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', + HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', + HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C:`', + HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:\\ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', + HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', + + HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', + HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', + + HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', + HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', + + HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', + HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', + + HELP_18_Title: '18) Hvor er min geth lommebok-fil', + + HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', + HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', + + HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', + HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', + + HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', + HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', + HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', + HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', + HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', + HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', + HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', + HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', + HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', + + HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', + HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', + HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', + HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', + HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', + HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', + HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', + + HELP_Sec_Title: 'Sikring', + HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', + HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', + HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', + HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', + HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', + HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', + HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', + HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', + + HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', + HELP_Contact_Title: 'Måter å ta kontakt på' +}; + +module.exports = no; },{}],53:[function(require,module,exports){ -// Portuguese -'use strict'; -var pt = function() {} -pt.code = 'pt'; -pt.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = pt; +// Polish +'use strict'; +var pl = function() {} +pl.code = 'pl'; +pl.data = { + + /* Navigation*/ + NAV_YourWallets: 'Twoje Portfele', + NAV_AddWallet: 'Dodaj Portfel', + NAV_GenerateWallet: 'Wygeneruj Portfel', + NAV_BulkGenerate: 'Generuj Hurtowo', + NAV_SendEther: 'Wyślij Ether', + NAV_SendTokens: 'Wyślij Tokeny', + NAV_Offline: 'Wyślij Offline', + NAV_WithdrawDAO: 'Wypłać DAO', + DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', + NAV_ClaimDGD: 'Odbierz DGD', + DGD_TitleLong: 'Odbierz swoje Tokeny DGD', + NAV_MyWallets: 'Moje Portfele', + NAV_ViewWallet: 'Wyświetl informacje o portfelu', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Hasło', + x_Download: 'Pobierz', + x_Address: 'Twój Adres', + x_Save: 'Zapisz', + x_Cancel: 'Anuluj', + x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', + x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', + x_PrivKey2: 'Klucz Prywatny', + x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', + x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', + x_Keystore2: 'Plik Keystore/JSON', + x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', + x_Json: 'Plik JSON (nieszyfrowany)', + x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', + x_PrintShort: 'Drukuj', + x_Print: 'Drukuj Portfel Papierowy', + x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', + x_CSV: 'Plik CSV (nieszyfrowany)', + x_TXT: 'Plik TXT (nieszyfrowany)', + x_Wallet: 'Portfel', + + /* Header */ + MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', + CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', + MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', + CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', + + /* Footer */ + FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', + FOOTER_1b: 'Twórcy:', + FOOTER_2: 'Darowizny:', + FOOTER_3: 'Generowanie portfeli po stronie klienta przez', + FOOTER_4: 'Wyłączenie odpowiedzialności', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacje o Koncie: ', + sidebar_AccountAddr: 'Adres Konta: ', + sidebar_AccountBal: 'Stan Konta: ', + sidebar_TokenBal: 'Stan Tokenów: ', + sidebar_Equiv: 'Ekwiwalent: ', + sidebar_TransHistory: 'Historia Transakcji: ', + sidebar_DGDBal: 'Informacje o sprzedaży DGD:', + sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', + sidebar_donate: 'Prześlij darowiznę', + sidebar_thanks: 'DZIĘKUJEMY!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', + decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', + decrypt_Select: 'Wybierz Portfel:', + + /* Add Wallet */ + ADD_Label_1: 'Co chciałbyś zrobić?', + ADD_Radio_1: 'Generuj Nowy Portfel', + ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', + ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', + ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', + ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', + ADD_Radio_4: 'Dodaj Konto do Obserwacji', + ADD_Label_2: 'Utwórz Nazwę Użytkownika:', + ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', + ADD_Label_4: 'Dodaj Konto do Obserwacji', + ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', + ADD_Label_5: 'Wpisz Adres: ', + ADD_Label_6: 'Odblokuj Portfel', + ADD_Label_6_short: 'Odblokuj', + ADD_Label_7: 'Dodaj konto', + + /* Generate Wallets */ + GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', + GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', + GEN_Placeholder_1: 'NIE zapomnij tego hasła!', + GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', + GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', + GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', + GEN_Label_3: 'Zapisz swój adres.', + GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Ilość Portfeli do Wygenerowania', + BULK_Label_2: 'Generuj Portfele', + BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Do Adresu: ', + SEND_amount: 'Kwota do Wysłania: ', + SEND_amount_short: 'Kwota', + SEND_custom: 'Inny', + SEND_gas: 'Paliwo', + SEND_TransferTotal: 'Wyślij wszystkie środki', + SEND_generate: 'Wygeneruj Transakcję', + SEND_raw: 'Surowa Transakcja', + SEND_signed: 'Podpisana Transakcja', + SEND_trans: 'Wyślij Transakcję', + SENDModal_Title: 'Ostrzeżenie! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Wysyłasz', + SENDModal_Content_2: 'do adresu', + SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', + SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', + SENDModal_No: 'Nie, zabierz mnie stąd!', + SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Symbol Tokenu: ', + TOKEN_Dec: 'Miejsc po przecinku: ', + + /* Send Transaction */ + TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', + TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', + TRANS_standard: 'ETH (Standardowa Transakcja)', + TRANS_eth: 'Tylko ETH', + TRANS_etc: 'Tylko ETC', + TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', + TRANS_data: ' Dane: ', + TRANS_gas: ' Paliwo: ', + TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', + TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', + TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', + TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', + TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', + TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', + TRANSModal_Yes: 'Super, już rozumiem.', + TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', + OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', + OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', + OFFLINE_Step1_Button: 'Wygeneruj Informacje', + OFFLINE_Step1_Label_1: 'Od Adresu: ', + OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', + OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', + OFFLINE_Step2_Label_1: 'Do Adresu: ', + OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', + OFFLINE_Step2_Label_3: 'Cena Paliwa ', + OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_4: 'Limit Paliwa ', + OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', + OFFLINE_Step2_Label_5: 'Wyróżnik', + OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_6: 'Dane', + OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', + OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', + OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', + OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', + + /* DAO */ + DAO_bal1: 'w bloku 1,919,999', + DAO_bal2: 'aktualny', + DAO_TitleETH: 'Wypłać DAO do ETH', + DAO_TitleETC: 'Wypłać DAO do ETC', + DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', + DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', + DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', + DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', + DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', + DAOModal_Title: 'Tylko się upewniam...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Zamierzasz wypłacić', + DAOModal_2: 'DAO tokenów do', + DAOModal_3: 'za', // "w zamian za" + + /* Digix */ + DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', + DGD_Label_1: 'Szacunkowa Opłata:', + DGD_Label_2: 'Zapewniona Maksymalna Opłata:', + DGD_Label_3: 'Cena Paliwa:', + DGD_Generate: 'Wygeneruj Żądanie', + DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', + + /* Deploy Contracts */ + NAV_DeployContract: 'Wyślij Kontrakt', + DEP_generate: 'Wygeneruj Kod Bajtowy', + DEP_generated: 'Wygenerowany Kod Bajtowy', + DEP_signtx: 'Podpisz Transakcję', + DEP_interface: 'Wygeneruj Interfejs', + + /* My Wallet */ + MYWAL_Nick: 'Nazwa Portfela', + MYWAL_Address: 'Adres Portfela', + MYWAL_Bal: 'Środki', + MYWAL_Edit: 'Edytuj', + MYWAL_View: 'Podgląd', + MYWAL_Remove: 'Usuń', + MYWAL_RemoveWal: 'Usuń Portfel:', + MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', + MYWAL_Viewing: 'Podgląd Portfela: ', + MYWAL_Hide: 'Ukryj Dane Portfela', + MYWAL_Edit_2: 'Edytuj Portfel: ', + MYWAL_Name: 'Nazwa Portfela', + MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', + MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', + MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', + VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', + + /* Chrome Extension */ + CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Wyślij', + + /* Error Messages */ + ERROR_1: 'Wprowadź prawidłową kwotę.', + ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', + ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', + ERROR_4: 'To nie jest prawidłowy plik portfela. ', + ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', + ERROR_6: 'Błędny adres. ', + ERROR_7: 'Błędne hasło. ', + ERROR_8: 'Błędna wartość. ', + ERROR_9: 'Błędny limit paliwa. ', + ERROR_10: 'Błędne dane. ', + ERROR_11: 'Błędna ilość paliwa. ', + ERROR_12: 'Błędny wyróżnik. ', + ERROR_13: 'Błąd podpisu transakcji. ', + ERROR_14: 'Portfel z tą nazwą już istnieje. ', + ERROR_15: 'Nie znaleziono portfela. ', + ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', + ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', + ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', + ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', + ERROR_20: 'Nieprawidłowy symbol', + SUCCESS_1: 'Prawidłowy adres', + SUCCESS_2: 'Portfel został odszyfrowany', + SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', + SUCCESS_4: 'Twój portfel został dodany: ', + SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', + SUCCESS_6: 'Wybrany plik: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Nieprawidłowy nadawca', + GETH_Nonce: 'Wyróżnik transakcji za niski', + GETH_Cheap: 'Cena paliwa poniżej akceptacji', + GETH_Balance: 'Niewystarczająca ilość środków na koncie', + GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', + GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', + GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', + GETH_GasLimit: 'Przekroczono limit paliwa na blok', + GETH_NegativeValue: 'Ujemna wartość', + + /* Tranlsation Info */ + translate_version: '3.0 (0.3)', + Translator_Desc: 'Podziękowania tłumaczom: ', + TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', + TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: '', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', + HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', + HELP_Remind_Title: 'W ramach uściślenia', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', + HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', + + HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', + HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', + HELP_0_Desc_2: 'Wygeneruj nowy portfel.', + HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', + HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', + HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', + + HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', + HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', + HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', + HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', + HELP_1_Desc_4: 'Kliknij "GENERUJ".', + HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', + + HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', + HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', + HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', + HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', + HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', + HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', + HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', + + HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', + HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', + HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', + HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', + HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', + HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', + HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', + + HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', + HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', + HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', + HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', + HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', + + HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', + HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', + HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', + HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', + HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', + HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', + HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', + HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', + HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', + HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', + HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', + + HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', + HELP_4CX_Desc_2: 'Wyślij:', + HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', + HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', + HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', + HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', + HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', + HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', + HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', + HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', + HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', + + HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', + HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', + HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', + HELP_5_Desc_5: 'Rozpakuj paczkę.', + HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', + HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', + HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', + + HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', + HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', + HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', + HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', + HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', + HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', + HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', + HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', + + HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', + HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', + HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', + HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', + HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', + HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', + HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', + HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', + HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', + HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', + HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', + HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', + HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', + HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', + HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', + + HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', + HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', + HELP_7_Desc_2: 'Odblokuj portfel.', + HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', + HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', + HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', + HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', + HELP_7_Desc_7: 'Kliknij "Inny".', + HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', + HELP_7_Desc_9: 'Kliknij "Zapisz".', + HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', + HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', + HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', + HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', + HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', + HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', + + HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', + HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', + HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', + HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', + HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', + + HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', + HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', + HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', + HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', + + HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', + HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', + + HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', + HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', + HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', + HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', + HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', + HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', + HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', + HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', + HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', + + HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', + HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', + HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', + HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', + HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', + HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', + HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', + HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', + HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', + HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', + HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', + HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', + HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', + HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', + HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', + HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', + HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', + HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', + HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', + HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', + HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', + HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', + HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', + HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', + + HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', + HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', + HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', + HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', + + HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', + HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', + + HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', + HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', + + HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', + + HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', + HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', + + HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', + HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', + + HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', + HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', + HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', + HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', + HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', + HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', + HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', + HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', + HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', + + HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', + HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', + HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', + HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', + HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', + HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', + + HELP_Sec_Title: 'Bezpieczeństwo', + HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', + HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', + HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', + HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', + HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', + HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', + HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', + HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', + + HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', + HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' +}; + +module.exports = pl; },{}],54:[function(require,module,exports){ -// Portuguese -'use strict'; -var ptbr = function() {} -ptbr.code = 'ptbr'; -ptbr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ptbr; +// Portuguese +'use strict'; +var pt = function() {} +pt.code = 'pt'; +pt.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = pt; },{}],55:[function(require,module,exports){ -// Russian -'use strict'; -var ru = function() {} -ru.code = 'ru'; -ru.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ваши кошельки', - NAV_AddWallet: 'Добавить кошелёк', - NAV_GenerateWallet: 'Создать кошелёк', - NAV_BulkGenerate: 'Создать несколько кошельков', - NAV_SendEther: 'Перевести эфир (ether)', - NAV_SendTokens: 'Перевести токены', - NAV_Offline: 'Оффлайн-перевод', - NAV_WithdrawDAO: 'Обменять DAO', - DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', - NAV_ClaimDGD: 'Получить DGD', - DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', - NAV_DeployContract: 'Опубликовать контракт', - NAV_MyWallets: 'Мои кошельки', - NAV_ViewWallet: 'Информация о кошельке', - NAV_Help: 'Справка', - NAV_Contact: 'Контакты', - - /* General */ - x_Password: 'Пароль', - x_Download: 'Скачать', - x_Address: 'Ваш адрес', - x_Save: 'Сохранить', - x_Cancel: 'Отменить', - x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', - x_PrivKey: 'Закрытый ключ (не зашифрован)', - x_PrivKey2: 'Закрытый ключ', - x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', - x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', - x_Keystore2: 'Файл Keystore/JSON', - x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', - x_Json: 'Файл JSON (не зашифрован)', - x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', - x_PrintShort: 'Печать', - x_Print: 'Напечатать бумажный кошелёк', - x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', - x_CSV: 'Файл CSV (не зашифрован)', - x_TXT: 'Файл TXT (не зашифрован)', - x_Wallet: 'кошелёк', - - /* Header */ - MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', - CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', - MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', - CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', - - /* Footer */ - FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', - FOOTER_1b: 'Авторы:', - FOOTER_2: 'Пожертвования приветствуются:', - FOOTER_3: 'Создание кошелька на стороне клиента от', - FOOTER_4: 'Отказ от ответственности', - - /* Sidebar */ - sidebar_AccountInfo: 'Информация о счёте: ', - sidebar_AccountAddr: 'Адрес (номер) счёта: ', - sidebar_AccountBal: 'Баланс счёта: ', - sidebar_TokenBal: 'Балансы токенов: ', - sidebar_Equiv: 'Эквивалентные значения: ', - sidebar_TransHistory: 'История транзакций: ', - sidebar_DGDBal: 'Информация о распродаже DGD:', - sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', - sidebar_donate: 'Пожертвовать', - sidebar_thanks: 'СПАСИБО!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', - decrypt_Title: 'Выберите формат Вашего закрытого ключа:', - decrypt_Select: 'Выберите кошелёк:', - - /* Add Wallet */ - ADD_Label_1: 'Что Вы хотите сделать?', - ADD_Radio_1: 'Создать новый кошелёк', - ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', - ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', - ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', - ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', - ADD_Radio_4: 'Добавить счёт в список слежения', - ADD_Label_2: 'Присвоить название:', - ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', - ADD_Label_4: 'Добавить счёт в список слежения', - ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', - ADD_Label_5: 'Введите адрес: ', - ADD_Label_6: 'Отпереть кошелёк', - ADD_Label_6_short: 'Отпереть', - ADD_Label_7: 'Добавить счёт', - - /* Generate Wallets */ - GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', - GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', - GEN_Placeholder_1: 'Не забудьте сохранить это!', - GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', - GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', - GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', - GEN_Label_3: 'Сохраните Ваш адрес.', - GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Сколько кошельков создать', - BULK_Label_2: 'Создать кошельки', - BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Адрес получателя: ', - SEND_amount: 'Сумма перевода: ', - SEND_amount_short: 'Сумма', - SEND_custom: 'Другое', - SEND_gas: 'Газ', - SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter - SEND_generate: 'Сформировать транзакцию', - SEND_raw: 'Готовая транзакция', - SEND_signed: 'Подписанная транзакция', - SEND_trans: 'Отправить транзакцию', - SENDModal_Title: 'Внимание! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Вы собираетесь перевести', - SENDModal_Content_2: 'на адрес', - SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', - SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', - SENDModal_No: 'Нет, отменить транзакцию!', - SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', - - /* Tokens */ - TOKEN_Addr: 'Адрес: ', - TOKEN_Symbol: 'Символ токена: ', - TOKEN_Dec: 'Дробность (знаков после запятой): ', - - /* Send Transaction */ - TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', - TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', - TRANS_standard: 'Эфир (ether, обычная транзакция)', - TRANS_eth: 'Только ETH', - TRANS_etc: 'Только ETC', - TRANS_advanced: '+Дополнительно: добавить газ или данные ', - TRANS_data: ' Данные: ', - TRANS_gas: ' Газ: ', - TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', - TRANSModal_Content_0: 'О видах транзакций и сервисах:', - TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', - TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', - TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', - TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', - TRANSModal_Yes: 'Спасибо, я всё понял.', - TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', - - /* Offline Transaction */ - OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', - OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', - OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', - OFFLINE_Step1_Button: 'Подготовка информации', - OFFLINE_Step1_Label_1: 'Адрес отправителя: ', - OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', - OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', - OFFLINE_Step2_Label_1: 'Адрес получателя: ', - OFFLINE_Step2_Label_2: 'Сумма перевода', - OFFLINE_Step2_Label_3: 'Цена газа ', - OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_4: 'Лимит газа ', - OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', - OFFLINE_Step2_Label_5: '№ перевода (nonce)', - OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_6: 'Данные', - OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', - OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', - OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', - OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', - - /* DAO */ - DAO_bal1: 'на момент создания блока №1.919.999', - DAO_bal2: 'текущий', - DAO_TitleETH: 'Обменять DAO токены на ETH', - DAO_TitleETC: 'Обменять DAO токены на ETC', - DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', - DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', - DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', - DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', - DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', - DAOModal_Title: 'Просто чтобы убедиться...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Вы собираетесь обменять', - DAOModal_2: 'DAO токенов. На адрес', - DAOModal_3: 'будет зачислено', // "in return for" - - /* Digix */ - DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', - DGD_Label_1: 'Предположительный размер комиссии:', - DGD_Label_2: 'Максимальный размер комиссии:', - DGD_Label_3: 'Цена газа:', - DGD_Generate: 'Сформировать требование', - DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', - - /* Deploy Contracts */ - DEP_generate: 'Сформировать байткод', - DEP_generated: 'Сформированный байткод', - DEP_signtx: 'Подписать транзакцию', - DEP_interface: 'Сформированный интерфейс', - - /* My Wallet */ - MYWAL_Nick: 'Название кошелька', - MYWAL_Address: 'Адрес кошелька', - MYWAL_Bal: 'Баланс', - MYWAL_Edit: 'Редактировать', - MYWAL_View: 'Просмотреть', - MYWAL_Remove: 'Удалить', - MYWAL_RemoveWal: 'Удалить кошелёк:', - MYWAL_WatchOnly: 'Список слежения', - MYWAL_Viewing: 'Просматриваемый кошелёк: ', - MYWAL_Hide: 'Скрыть информацию о кошельке', - MYWAL_Edit_2: 'Редактировать кошелёк: ', - MYWAL_Name: 'Имя кошелька', - MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', - MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', - MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', - VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', - - /* Chrome Extension */ - CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" - - - /* Error Messages */ - ERROR_1: 'Пожалуйста, введите сумму корректно.', - ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', - ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', - ERROR_4: 'Этот файл не является файлом кошелька. ', - ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', - ERROR_6: 'Неправильный адрес. ', - ERROR_7: 'Неверный пароль. ', - ERROR_8: 'Некорректная сумма. ', - ERROR_9: 'Некорректно указан лимит газа. ', - ERROR_10: 'Недопустимые данные. ', - ERROR_11: 'Некорректно указано количество газа. ', - ERROR_12: 'Неверный номер перевода (nonce). ', - ERROR_13: 'Подписанная транзакция некорректна. ', - ERROR_14: 'Кошелёк с таким названием уже существует. ', - ERROR_15: 'Кошелёк не найден. ', - ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', - ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', - ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', - ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', - ERROR_20: 'Неправильный символ', - SUCCESS_1: 'Адрес указан верно', - SUCCESS_2: 'Кошелёк успешно расшифрован', - SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', - SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', - SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', - SUCCESS_6: 'Выбранный файл: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Спасибо нашим переводчикам: ', - TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Если вы используете ПК:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ru; +// Portuguese +'use strict'; +var ptbr = function() {} +ptbr.code = 'ptbr'; +ptbr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ptbr; },{}],56:[function(require,module,exports){ -// Slovak -'use strict'; -var sk = function() {} -sk.code = 'sk'; -sk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sk; +// Russian +'use strict'; +var ru = function() {} +ru.code = 'ru'; +ru.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Неверный адрес отправителя', + GETH_Nonce: 'Номер перевода (nonce) слишком мал', + GETH_Cheap: 'Цена газа слишком низкая', + GETH_Balance: 'Баланс недостаточен', + GETH_NonExistentAccount: 'Счёт не существует или баланс счёта слишком мал', + GETH_InsufficientFunds: 'Недостаточно средств для ГАЗ * ЦЕНА + СУММА', + GETH_IntrinsicGas: 'Недостаточно газа для выполнения транзакции', + GETH_GasLimit: 'Превышен лимит газа на блок', + GETH_NegativeValue: 'Отрицательная сумма', + + /* Navigation*/ + NAV_YourWallets: 'Ваши кошельки', + NAV_AddWallet: 'Добавить кошелёк', + NAV_GenerateWallet: 'Создать кошелёк', + NAV_BulkGenerate: 'Создать несколько кошельков', + NAV_SendEther: 'Перевести эфир (ether)', + NAV_SendTokens: 'Перевести токены', + NAV_Offline: 'Оффлайн-перевод', + NAV_WithdrawDAO: 'Обменять DAO', + DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', + NAV_ClaimDGD: 'Получить DGD', + DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', + NAV_DeployContract: 'Опубликовать контракт', + NAV_MyWallets: 'Мои кошельки', + NAV_ViewWallet: 'Информация о кошельке', + NAV_Help: 'Справка', + NAV_Contact: 'Контакты', + + /* General */ + x_Password: 'Пароль', + x_Download: 'Скачать', + x_Address: 'Ваш адрес', + x_Save: 'Сохранить', + x_Cancel: 'Отменить', + x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', + x_PrivKey: 'Закрытый ключ (не зашифрован)', + x_PrivKey2: 'Закрытый ключ', + x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', + x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', + x_Keystore2: 'Файл Keystore/JSON', + x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', + x_Json: 'Файл JSON (не зашифрован)', + x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', + x_PrintShort: 'Печать', + x_Print: 'Напечатать бумажный кошелёк', + x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', + x_CSV: 'Файл CSV (не зашифрован)', + x_TXT: 'Файл TXT (не зашифрован)', + x_Wallet: 'кошелёк', + + /* Header */ + MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', + CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', + MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', + CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', + + /* Footer */ + FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', + FOOTER_1b: 'Авторы:', + FOOTER_2: 'Пожертвования приветствуются:', + FOOTER_3: 'Создание кошелька на стороне клиента от', + FOOTER_4: 'Отказ от ответственности', + + /* Sidebar */ + sidebar_AccountInfo: 'Информация о счёте: ', + sidebar_AccountAddr: 'Адрес (номер) счёта: ', + sidebar_AccountBal: 'Баланс счёта: ', + sidebar_TokenBal: 'Балансы токенов: ', + sidebar_Equiv: 'Эквивалентные значения: ', + sidebar_TransHistory: 'История транзакций: ', + sidebar_DGDBal: 'Информация о распродаже DGD:', + sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', + sidebar_donate: 'Пожертвовать', + sidebar_thanks: 'СПАСИБО!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', + decrypt_Title: 'Выберите формат Вашего закрытого ключа:', + decrypt_Select: 'Выберите кошелёк:', + + /* Add Wallet */ + ADD_Label_1: 'Что Вы хотите сделать?', + ADD_Radio_1: 'Создать новый кошелёк', + ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', + ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', + ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', + ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', + ADD_Radio_4: 'Добавить счёт в список слежения', + ADD_Label_2: 'Присвоить название:', + ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', + ADD_Label_4: 'Добавить счёт в список слежения', + ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', + ADD_Label_5: 'Введите адрес: ', + ADD_Label_6: 'Отпереть кошелёк', + ADD_Label_6_short: 'Отпереть', + ADD_Label_7: 'Добавить счёт', + + /* Generate Wallets */ + GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', + GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', + GEN_Placeholder_1: 'Не забудьте сохранить это!', + GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', + GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', + GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', + GEN_Label_3: 'Сохраните Ваш адрес.', + GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Сколько кошельков создать', + BULK_Label_2: 'Создать кошельки', + BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Адрес получателя: ', + SEND_amount: 'Сумма перевода: ', + SEND_amount_short: 'Сумма', + SEND_custom: 'Другое', + SEND_gas: 'Газ', + SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter + SEND_generate: 'Сформировать транзакцию', + SEND_raw: 'Готовая транзакция', + SEND_signed: 'Подписанная транзакция', + SEND_trans: 'Отправить транзакцию', + SENDModal_Title: 'Внимание! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Вы собираетесь перевести', + SENDModal_Content_2: 'на адрес', + SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', + SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', + SENDModal_No: 'Нет, отменить транзакцию!', + SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', + + /* Tokens */ + TOKEN_Addr: 'Адрес: ', + TOKEN_Symbol: 'Символ токена: ', + TOKEN_Dec: 'Дробность (знаков после запятой): ', + + /* Send Transaction */ + TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', + TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', + TRANS_standard: 'Эфир (ether, обычная транзакция)', + TRANS_eth: 'Только ETH', + TRANS_etc: 'Только ETC', + TRANS_advanced: '+Дополнительно: добавить газ или данные ', + TRANS_data: ' Данные: ', + TRANS_gas: ' Газ: ', + TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', + TRANSModal_Content_0: 'О видах транзакций и сервисах:', + TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', + TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', + TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', + TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', + TRANSModal_Yes: 'Спасибо, я всё понял.', + TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', + + /* Offline Transaction */ + OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', + OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', + OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', + OFFLINE_Step1_Button: 'Подготовка информации', + OFFLINE_Step1_Label_1: 'Адрес отправителя: ', + OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', + OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', + OFFLINE_Step2_Label_1: 'Адрес получателя: ', + OFFLINE_Step2_Label_2: 'Сумма перевода', + OFFLINE_Step2_Label_3: 'Цена газа ', + OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_4: 'Лимит газа ', + OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', + OFFLINE_Step2_Label_5: '№ перевода (nonce)', + OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_6: 'Данные', + OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', + OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', + OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', + OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', + + /* DAO */ + DAO_bal1: 'на момент создания блока №1.919.999', + DAO_bal2: 'текущий', + DAO_TitleETH: 'Обменять DAO токены на ETH', + DAO_TitleETC: 'Обменять DAO токены на ETC', + DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', + DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', + DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', + DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', + DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', + DAOModal_Title: 'Просто чтобы убедиться...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Вы собираетесь обменять', + DAOModal_2: 'DAO токенов. На адрес', + DAOModal_3: 'будет зачислено', // "in return for" + + /* Digix */ + DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', + DGD_Label_1: 'Предположительный размер комиссии:', + DGD_Label_2: 'Максимальный размер комиссии:', + DGD_Label_3: 'Цена газа:', + DGD_Generate: 'Сформировать требование', + DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', + + /* Deploy Contracts */ + DEP_generate: 'Сформировать байткод', + DEP_generated: 'Сформированный байткод', + DEP_signtx: 'Подписать транзакцию', + DEP_interface: 'Сформированный интерфейс', + + /* My Wallet */ + MYWAL_Nick: 'Название кошелька', + MYWAL_Address: 'Адрес кошелька', + MYWAL_Bal: 'Баланс', + MYWAL_Edit: 'Редактировать', + MYWAL_View: 'Просмотреть', + MYWAL_Remove: 'Удалить', + MYWAL_RemoveWal: 'Удалить кошелёк:', + MYWAL_WatchOnly: 'Список слежения', + MYWAL_Viewing: 'Просматриваемый кошелёк: ', + MYWAL_Hide: 'Скрыть информацию о кошельке', + MYWAL_Edit_2: 'Редактировать кошелёк: ', + MYWAL_Name: 'Имя кошелька', + MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', + MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', + MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', + VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', + + /* Chrome Extension */ + CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Пожалуйста, введите сумму корректно.', + ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', + ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', + ERROR_4: 'Этот файл не является файлом кошелька. ', + ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', + ERROR_6: 'Неправильный адрес. ', + ERROR_7: 'Неверный пароль. ', + ERROR_8: 'Некорректная сумма. ', + ERROR_9: 'Некорректно указан лимит газа. ', + ERROR_10: 'Недопустимые данные. ', + ERROR_11: 'Некорректно указано количество газа. ', + ERROR_12: 'Неверный номер перевода (nonce). ', + ERROR_13: 'Подписанная транзакция некорректна. ', + ERROR_14: 'Кошелёк с таким названием уже существует. ', + ERROR_15: 'Кошелёк не найден. ', + ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', + ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', + ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', + ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', + ERROR_20: 'Неправильный символ', + SUCCESS_1: 'Адрес указан верно', + SUCCESS_2: 'Кошелёк успешно расшифрован', + SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', + SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', + SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', + SUCCESS_6: 'Выбранный файл: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Спасибо нашим переводчикам: ', + TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Если вы используете ПК:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ru; },{}],57:[function(require,module,exports){ -// Slovenian -'use strict'; -var sl = function() {} -sl.code = 'sl'; -sl.data = { - - /* Geth Error Messages */ - SUCCESS_6: 'File Selected: ', - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* New */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter - FOOTER_1b: 'Created by', - - /* Navigation*/ - NAV_YourWallets: 'Vaše Denarnice', - NAV_AddWallet: 'Dodaj Denarnico', - NAV_GenerateWallet: 'Ustvari Denarnico', - NAV_BulkGenerate: 'Ustvari Serijo Denarnic', - NAV_SendEther: 'Pošlji Ether', - NAV_SendTokens: 'Pošlji Žetone', - NAV_Offline: 'Pošlji Brez Povezave', - NAV_WithdrawDAO: 'Izplačaj DAO', - DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', - NAV_ClaimDGD: 'Zahtevaj DGD', - DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', - NAV_MyWallets: 'Moje Denarnice', - NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', - NAV_Help: 'Pomoč', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Geslo', - x_Download: 'Prenesi', - x_Address: 'Vaš Naslov', - x_Save: 'x_Shrani', - x_Cancel: 'x_Prekliči', - x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', - x_PrivKey: 'Osebni Ključ (nekriptiran)', - x_PrivKey2: 'Osebni Ključ', - x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', - x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', - x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', - x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', - x_Json: 'JSON Datoteka (nekriptirana)', - x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', - x_PrintShort: 'Natisni', - x_Print: 'Natisni Papirnato Denarnico', - x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', - x_CSV: 'CSV datoteka (nekriptirana)', - x_TXT: 'TXT datoteka (nekriptirana)', - x_Wallet: 'Denarnice', - - /* Header */ - MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', - CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', - MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', - CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', - - /* Footer */ - FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', - FOOTER_2: 'Donacije so zelo dobrodošle:', - FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacije o Računu: ', - sidebar_AccountAddr: 'Naslov Računa: ', - sidebar_AccountBal: 'Stanje Računa: ', - sidebar_TokenBal: 'Stanje Žetonov: ', - sidebar_Equiv: 'Ekvivalentne Vrednosti: ', - sidebar_TransHistory: 'Zgodovina Transakcij', - sidebar_DGDBal: 'Informacije o DGD Crowdsale:', - sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', - sidebar_donate: 'Doniraj', - sidebar_thanks: 'Najlepša vam hvala!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', - decrypt_Title: 'Izberite format vašega osebnega ključa:', - decrypt_Select: 'Izberite Denarnico:', - - /* Add Wallet */ - ADD_Label_1: 'Kaj želite storiti?', - ADD_Radio_1: 'Ustvari Novo Denarnico', - ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', - ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', - ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', - ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Label_2: 'Ustvari Vzdevek:', - ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', - ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', - ADD_Label_5: 'Vnestie Naslov: ', - ADD_Label_6: 'Odklenite vašo Denarnico', - ADD_Label_6_short: 'Odkleni', - ADD_Label_7: 'Dodaj Račun', - - /* Generate Wallets */ - GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', - GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', - GEN_Placeholder_1: 'NE pozabite shraniti tega!', - GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', - GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', - GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', - GEN_Label_3: 'Shranite Vaš Naslov.', - GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Signed Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet.', - MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'jkocjan', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sl; +// Slovak +'use strict'; +var sk = function() {} +sk.code = 'sk'; +sk.data = { + + NAV_DeployContract: 'Deploy Contract', + x_Keystore2: 'Keystore / JSON File', + x_PrivKey2: 'Private Key', + FOOTER_4: 'Disclaimer', + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Peňaženky', + NAV_AddWallet: 'Pridať peňaženku', + NAV_GenerateWallet: 'Vytvoriť peňaženku', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Poslať Ether', + NAV_SendTokens: 'Poslať Tokens', + NAV_Offline: 'Poslať Offline', + NAV_WithdrawDAO: 'Vybrať DAO', + DAO_TitleLong: 'Vymeniť Vaše Dao Tokens za ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_MyWallets: 'Moje peňaženky', + NAV_ViewWallet: 'Zobraziť detaily peňaženky', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Heslo', + x_Wallet: 'Peňaženka', + x_Download: 'Stiahnuť', + x_Address: 'Vaša Adresa', + x_Save: 'Uložiť', + x_Cancel: 'Zrušiť', + x_AddessDesc: 'Možno to poznate ako vaše "Konto #" alebo váš "Verejný Kľúč". Adresa je to, čo pošlete ľudom, aby vám mohli poslať ETH. Táto ikona vám pomôže rozpoznať vašu adresu.', + x_PrivKey: 'Súkromný Kľúč (nezašifrovaný)', + x_PrivKeyDesc: 'Toto je nezašifrovaná textova verzia vašho Súkromneho Kľuča, to znamená, že heslo nie je potrebné. Ak niekto získa vaš nezašifrovaný Súkromný Kľúč, môže získať prístup do vašej peňaženky bez hesla. Práve kvôli tomuto sú šifrované verzie odporúčané.', + x_Keystore: 'Keystore/JSON Súbor (Odporúčané · Šifrované · Mist/Geth Format)', + x_KeystoreDesc: 'Tento Keystore / JSON súbor je rovnakého formatu ako Mist & Geth takže ho budete môcť jednoducho importovať. Tento subor odporúčame stiahnuť a zálohovať.', + x_Json: 'JSON Súbor (nezašifrovaný)', + x_JsonDesc: 'Toto je nezašifrovaný JSON format vášho sukromného kľúča. To znamená, že nepotrebujete heslo, ale ak niekto získa váš JSON, je schopný sprístupniť vašu peňaženku a Ether bez hesla.', + x_PrintShort: 'Vytlačiť', + x_Print: 'Vytlačiť Papierovú Peňaženku', + x_PrintDesc: 'Rada: Ak nevlastnite tlačiareň, jednoducho kliknite tlačiť a uložte to ako PDF.', + x_CSV: 'CSV súbor (nezašifrovaný)', + x_TXT: 'TXT súbor (nezašifrovaný)', + + /* Header */ + MEW_Warning_1: 'Vždy skontrolujte URL adresu pred tým ako vytvoríte alebo sprístupnite vašu peňaženku. Davajte si pozor na Phisingové stránky!', + CX_Warning_1: 'Uistita sa, že máťe **externé zálohy** všetkych peňaženiek. Mnoho vecí može spôsobiť stratu dát tohoto Chrome rozširenia, vrátane odinštalovania a preinštalovania tohto rozšírenia. Toto rozšírenie pomáha jednoducho sprístupniť vašu peňaženku, **nie** ju zálohovať.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions.', + FOOTER_1b: 'Vytvorené', + FOOTER_2: 'Dotácie srdečne vítane:', + FOOTER_3: 'Client-side wallet generation by', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ETH to your account to cover the gas cost of sending tokens. Gas is paid in ETH.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + SEND_TransferTotal: 'Send Entire Balance', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* CX */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + +/* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sk; },{}],58:[function(require,module,exports){ -// Swedish -'use strict'; -var sv = function() {} -sv.code = 'sv'; -sv.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Dina Plånböcker', - NAV_AddWallet: 'Lägg till Plånbok', - NAV_GenerateWallet: 'Generera Plånbok', - NAV_BulkGenerate: 'Mass Generera', - NAV_SendEther: 'Skicka Ether', - NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ - NAV_Offline: 'Skicka Offline', - NAV_WithdrawDAO: 'Växla DAO', - DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', - NAV_ClaimDGD: 'Hämta DGD', - DGD_TitleLong: 'Hämta Dina DGD Tokens', - NAV_MyWallets: 'Mina Plånböcker', - NAV_ViewWallet: 'Visa Plånboks Info', - NAV_Help: 'Hjälp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Lösenord', - x_Download: 'Ladda Ner', - x_Address: 'Din Adress', - x_Save: 'Spara', - x_Cancel: 'Avbryt', - x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', - x_PrivKey: 'Privat Nyckel (okrypterad)', - x_PrivKey2: 'Privat Nyckel', - x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', - x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON Fil', - x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', - x_Json: 'JSON Fil (okrypterad)', - x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', - x_PrintShort: 'Skriv Ut', - x_Print: 'Skriv Ut Pappers Plånbok', - x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', - x_CSV: 'CSV fil (okrypterad)', - x_TXT: 'TXT fil (okrypterad)', - x_Wallet: 'Plånbok', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Konto Adress: ', - sidebar_AccountBal: 'Konto Saldo: ', - sidebar_TokenBal: 'Token Saldon: ', - sidebar_Equiv: 'Motsvarande Värden: ', - sidebar_TransHistory: 'Transaktionshistorik: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', - sidebar_donate: 'Donera', - sidebar_thanks: 'TACK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Adress: ', - ADD_Label_6: 'Unlock your Wallet', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Adress.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antal Plånböcker att Generera', - BULK_Label_2: 'Generera Plånböcker', - BULK_SuccessMsg: 'Dina plånböcker har genererats.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Adress: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SEND_TransferTotal: 'Send Entire Balance', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to adress', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adress: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimaler: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Adress: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Adress: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Plånboks Namn', - MYWAL_Address: 'Plånboks Adress', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Ändra', - MYWAL_View: 'Visa', - MYWAL_Remove: 'Ta Bort', - MYWAL_RemoveWal: 'Ta Bort Plånbok:', - MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ - MYWAL_Viewing: 'Visar Plånbok: ', - MYWAL_Hide: 'Dölj Plånboks Info', - MYWAL_Edit_2: 'Ändra Plånbok: ', - MYWAL_Name: 'Plånboks Namn', - MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', - MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', - MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', - TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sv; +// Slovenian +'use strict'; +var sl = function() {} +sl.code = 'sl'; +sl.data = { + + /* Geth Error Messages */ + SUCCESS_6: 'File Selected: ', + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* New */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter + FOOTER_1b: 'Created by', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Denarnice', + NAV_AddWallet: 'Dodaj Denarnico', + NAV_GenerateWallet: 'Ustvari Denarnico', + NAV_BulkGenerate: 'Ustvari Serijo Denarnic', + NAV_SendEther: 'Pošlji Ether', + NAV_SendTokens: 'Pošlji Žetone', + NAV_Offline: 'Pošlji Brez Povezave', + NAV_WithdrawDAO: 'Izplačaj DAO', + DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', + NAV_ClaimDGD: 'Zahtevaj DGD', + DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', + NAV_MyWallets: 'Moje Denarnice', + NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', + NAV_Help: 'Pomoč', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Geslo', + x_Download: 'Prenesi', + x_Address: 'Vaš Naslov', + x_Save: 'x_Shrani', + x_Cancel: 'x_Prekliči', + x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', + x_PrivKey: 'Osebni Ključ (nekriptiran)', + x_PrivKey2: 'Osebni Ključ', + x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', + x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', + x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', + x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', + x_Json: 'JSON Datoteka (nekriptirana)', + x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', + x_PrintShort: 'Natisni', + x_Print: 'Natisni Papirnato Denarnico', + x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', + x_CSV: 'CSV datoteka (nekriptirana)', + x_TXT: 'TXT datoteka (nekriptirana)', + x_Wallet: 'Denarnice', + + /* Header */ + MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', + CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', + MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', + CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', + + /* Footer */ + FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', + FOOTER_2: 'Donacije so zelo dobrodošle:', + FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacije o Računu: ', + sidebar_AccountAddr: 'Naslov Računa: ', + sidebar_AccountBal: 'Stanje Računa: ', + sidebar_TokenBal: 'Stanje Žetonov: ', + sidebar_Equiv: 'Ekvivalentne Vrednosti: ', + sidebar_TransHistory: 'Zgodovina Transakcij', + sidebar_DGDBal: 'Informacije o DGD Crowdsale:', + sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', + sidebar_donate: 'Doniraj', + sidebar_thanks: 'Najlepša vam hvala!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', + decrypt_Title: 'Izberite format vašega osebnega ključa:', + decrypt_Select: 'Izberite Denarnico:', + + /* Add Wallet */ + ADD_Label_1: 'Kaj želite storiti?', + ADD_Radio_1: 'Ustvari Novo Denarnico', + ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', + ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', + ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', + ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Label_2: 'Ustvari Vzdevek:', + ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', + ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', + ADD_Label_5: 'Vnestie Naslov: ', + ADD_Label_6: 'Odklenite vašo Denarnico', + ADD_Label_6_short: 'Odkleni', + ADD_Label_7: 'Dodaj Račun', + + /* Generate Wallets */ + GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', + GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', + GEN_Placeholder_1: 'NE pozabite shraniti tega!', + GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', + GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', + GEN_Label_3: 'Shranite Vaš Naslov.', + GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Signed Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet.', + MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Tranlsation Info */ + translate_version: '0.2', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'jkocjan', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sl; },{}],59:[function(require,module,exports){ -// Turkish -'use strict'; -var tr = function() {} -tr.code = 'tr'; -tr.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Cüzdanin', - NAV_AddWallet: 'Cüzdan ekle', - NAV_GenerateWallet: 'Cüzdan oluştur', - NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', - NAV_SendEther: 'Ether gönder', - NAV_SendTokens: 'Tokens gönder', - NAV_Offline: 'Offline gönder', - NAV_WithdrawDAO: 'DAO çek', - DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', - NAV_ClaimDGD: 'DGD talep et', - DGD_TitleLong: 'DGD tokenlerini talep et', - NAV_MyWallets: 'Cüzdanim', - NAV_ViewWallet: 'Cüzdan bilgilerni göster', - NAV_Help: 'Yardim et', - NAV_Contact: 'Iletişime geç', - - /* General */ - x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', - x_Address: 'Adresin', - x_Cancel: 'Iptal et', - x_Download: 'Indir', - x_Json: 'JSON dosya (şifrelenmemis)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', - x_Keystore2: 'Keystore/JSON dosya', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Parola', - x_Print: 'Cüzdanin kağıt versiyonunu yazdir', - x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', - x_PrintShort: 'Yazdir', - x_PrivKey: 'Özel anahtar (şifrelenmemis)', - x_PrivKey2: 'Özel anahtar', - x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', - x_Save: 'Indir', - x_TXT: 'TXT dosya (şifrelenmemis)', - x_CSV: 'CSV dosya (şifrelenmemis)', - x_Wallet: 'Cüzdan', - -/* Header */ - MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', - CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', - - /* Footer */ - FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', - FOOTER_1b: 'tarafından yaratıldı', - FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', - FOOTER_3: 'Client-side cüzdan olusturma', - FOOTER_4: 'Verzicht', - - /* Sidebar */ - sidebar_AccountInfo: 'Hesap bilgiler: ', - sidebar_AccountAddr: 'Hesap adres: ', - sidebar_AccountBal: 'Bakiye: ', - sidebar_TokenBal: 'Token bakiye: ', - sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ - sidebar_TransHistory: 'Işlem geçmişi: ', - sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', - sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', - sidebar_donate: 'Bağışta bulun', - sidebar_thanks: 'TEŞEKKÜRLER!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Cüzdanını nasıl acmak istersin?', - decrypt_Title: 'Özel anahtarinin formatini sec:', - decrypt_Select: 'Bir cüzdan sec:', - - /* Add Wallet */ - ADD_Label_1: 'Ne yapmak istiyorsun?', - ADD_Radio_1: 'Yeni cüzdan olustur', - ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', - ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', - ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', - ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', - ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ - ADD_Label_2: 'Bir nickname oluştur: ', - ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', - ADD_Label_4: 'Izlenecek hesap adresi ekle', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Adresi ekle: ', - ADD_Label_6: 'Cüzdani ac: ', - ADD_Label_6_short: 'Ac', - ADD_Label_7: 'Hesap ekle', - - /* Generate Wallets */ - GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', - GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', - GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', - GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', - GEN_Label_3: 'Adresini kaydet.', - GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Oluşturulacak cüzdan sayısı', - BULK_Label_2: 'Cüzdanlari olustur', - BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Bu Adrese gönder: ', - SEND_amount: 'Gönderilecek miktar: ', - SEND_amount_short: 'Miktar', - SEND_custom: 'Kullanici özel', /*maybe another word here too */ - SEND_gas: 'Gas', - SEND_TransferTotal: 'Tüm dengeyi gönder', - SEND_generate: 'Generate Transaction', - SEND_raw: 'İşlem oluştur', /* add Binär */ - SEND_signed: 'Imzali İşlem', - SEND_trans: 'Islemi gönder', - SENDModal_Title: 'Uyarı! ', - - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'şu an ', - SENDModal_Content_2: 'bu adresse', - SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'Hayir, cikar beni burdan!', - SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token symbolu: ', - TOKEN_Dec: 'Ondalık: ', - - /* Send Transaction */ - TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', - TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', - TRANS_standard: 'ETH (Standart işlem)', - TRANS_eth: 'Yalnızca ETH', - TRANS_etc: 'Yalnızca ETC', - TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', - TRANS_data: 'Veri: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', - TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', - TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ - TRANSModal_Yes: 'Güzel, şimdi anladım.', - TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', - - /* Offline Transaction */ - OFFLINE_Title: 'Olustur & offline islem', - OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', - OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', - OFFLINE_Step1_Button: 'Bilgileri olustur', - OFFLINE_Step1_Label_1: 'Adres\'den: ', - OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'Adrese: ', - OFFLINE_Step2_Label_2: 'Gönderilen miktar', - OFFLINE_Step2_Label_3: 'Gas fiyati ', - OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', - OFFLINE_Step2_Label_4: 'Gas limiti ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Veri', - OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', - OFFLINE_Step2_Label_6: 'Veri', - OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'block 1,919,999\'ta', - DAO_bal2: 'şimdiki', - DAO_TitleETH: 'DAO ETH olarak cek', - DAO_TitleETC: 'DAO ETC olarak cek', - DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', - DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Sadece emin olmak için...', - - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Cekmek üzeresin', - DAOModal_2: 'DAO token\'i ', - DAOModal_3: ' yerine', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Tahmini bedel:', - DGD_Label_2: 'Maximum bedel:', - DGD_Label_3: 'Gas fiyati:', - DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ - DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode oluştur', - DEP_generated: 'Oluşturulan Bytecode', - DEP_signtx: 'Islmemi Imzala', - DEP_interface: 'Interface oluştur', - - /* My Wallet */ - MYWAL_Nick: 'Cüzdan nickname', - MYWAL_Address: 'Cüzdan adres', - MYWAL_Bal: 'Bakiye', - MYWAL_Edit: 'Düzenle', - MYWAL_View: 'Göster', - MYWAL_Remove: 'Kaldir', - MYWAL_RemoveWal: 'Cüzdani kaldir:', - MYWAL_WatchOnly: 'Sadece izlenen hesaplar', - MYWAL_Viewing: 'Izlenen Cüzdan: ', - MYWAL_Hide: 'Cüzdan bilgilerini gizle', - MYWAL_Edit_2: 'Cüzdani düzenle: ', - MYWAL_Name: 'Cüzdan Ismi', - MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', - MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', - CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli - - /* Error Messages */ - ERROR_1: 'Geçerli tutar yaz.', - ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', - ERROR_6: 'Geçersiz adres. ', - ERROR_7: 'Geçersiz parola. ', - ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ - ERROR_9: 'Geçersiz gas limit. ', - ERROR_10: 'Geçersiz data value. ', - ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ - ERROR_12: 'Geçersiz veri. ', - ERROR_13: 'Geçersiz imzali isleme. ', - ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', - ERROR_15: 'Cüzdan bulunmadi. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Geçersiz sembol', - SUCCESS_1: 'Geçerli adres', - SUCCESS_2: 'Cüzdan basariyla desifre edildi', - SUCCESS_3: 'İşlem teslim edildi TX ID: ', - SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', - SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', - SUCCESS_6: 'Dosya secildi ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'ffidan61', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = tr; +// Swedish +'use strict'; +var sv = function() {} +sv.code = 'sv'; +sv.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Dina Plånböcker', + NAV_AddWallet: 'Lägg till Plånbok', + NAV_GenerateWallet: 'Generera Plånbok', + NAV_BulkGenerate: 'Mass Generera', + NAV_SendEther: 'Skicka Ether', + NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ + NAV_Offline: 'Skicka Offline', + NAV_WithdrawDAO: 'Växla DAO', + DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', + NAV_ClaimDGD: 'Hämta DGD', + DGD_TitleLong: 'Hämta Dina DGD Tokens', + NAV_MyWallets: 'Mina Plånböcker', + NAV_ViewWallet: 'Visa Plånboks Info', + NAV_Help: 'Hjälp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Lösenord', + x_Download: 'Ladda Ner', + x_Address: 'Din Adress', + x_Save: 'Spara', + x_Cancel: 'Avbryt', + x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', + x_PrivKey: 'Privat Nyckel (okrypterad)', + x_PrivKey2: 'Privat Nyckel', + x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', + x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON Fil', + x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', + x_Json: 'JSON Fil (okrypterad)', + x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', + x_PrintShort: 'Skriv Ut', + x_Print: 'Skriv Ut Pappers Plånbok', + x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', + x_CSV: 'CSV fil (okrypterad)', + x_TXT: 'TXT fil (okrypterad)', + x_Wallet: 'Plånbok', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Konto Adress: ', + sidebar_AccountBal: 'Konto Saldo: ', + sidebar_TokenBal: 'Token Saldon: ', + sidebar_Equiv: 'Motsvarande Värden: ', + sidebar_TransHistory: 'Transaktionshistorik: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', + sidebar_donate: 'Donera', + sidebar_thanks: 'TACK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Adress: ', + ADD_Label_6: 'Unlock your Wallet', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Adress.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antal Plånböcker att Generera', + BULK_Label_2: 'Generera Plånböcker', + BULK_SuccessMsg: 'Dina plånböcker har genererats.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Adress: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SEND_TransferTotal: 'Send Entire Balance', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to adress', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adress: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimaler: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Adress: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Adress: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Plånboks Namn', + MYWAL_Address: 'Plånboks Adress', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Ändra', + MYWAL_View: 'Visa', + MYWAL_Remove: 'Ta Bort', + MYWAL_RemoveWal: 'Ta Bort Plånbok:', + MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ + MYWAL_Viewing: 'Visar Plånbok: ', + MYWAL_Hide: 'Dölj Plånboks Info', + MYWAL_Edit_2: 'Ändra Plånbok: ', + MYWAL_Name: 'Plånboks Namn', + MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', + MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', + MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', + TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sv; },{}],60:[function(require,module,exports){ -'use strict'; -var ar = require('./ar'); -var bg = require('./bg'); -var de = require('./de'); -var el = require('./el'); -var en = require('./en'); -var es = require('./es'); -var et = require('./et'); -var fr = require('./fr'); -var he = require('./he'); -var hi = require('./hi'); -var hu = require('./hu'); -var id = require('./id'); -var it = require('./it'); -var ja = require('./ja'); -var ko = require('./ko'); -var nl = require('./nl'); -var no = require('./no'); -var pl = require('./pl'); -var pt = require('./pt'); -var ptbr = require('./ptbr'); -var ru = require('./ru'); -var sk = require('./sk'); -var sl = require('./sl'); -var sv = require('./sv'); -var tr = require('./tr'); -var uk = require('./uk'); -var vi = require('./vi'); -var zh = require('./zh'); - -var translate = function($translateProvider) { - $translateProvider.translations(ar.code, translate.marked(ar.data)); - $translateProvider.translations(bg.code, translate.marked(bg.data)); - $translateProvider.translations(de.code, translate.marked(de.data)); - $translateProvider.translations(el.code, translate.marked(el.data)); - $translateProvider.translations(en.code, translate.marked(en.data)); - $translateProvider.translations(es.code, translate.marked(es.data)); - $translateProvider.translations(et.code, translate.marked(et.data)); - $translateProvider.translations(fr.code, translate.marked(fr.data)); - $translateProvider.translations(he.code, translate.marked(he.data)); - $translateProvider.translations(hi.code, translate.marked(hi.data)); - $translateProvider.translations(hu.code, translate.marked(hu.data)); - $translateProvider.translations(id.code, translate.marked(id.data)); - $translateProvider.translations(it.code, translate.marked(it.data)); - $translateProvider.translations(ja.code, translate.marked(ja.data)); - $translateProvider.translations(ko.code, translate.marked(ko.data)); - $translateProvider.translations(nl.code, translate.marked(nl.data)); - $translateProvider.translations(no.code, translate.marked(no.data)); - $translateProvider.translations(pl.code, translate.marked(pl.data)); - $translateProvider.translations(pt.code, translate.marked(pt.data)); - $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); - $translateProvider.translations(ru.code, translate.marked(ru.data)); - $translateProvider.translations(sk.code, translate.marked(sk.data)); - $translateProvider.translations(sl.code, translate.marked(sl.data)); - $translateProvider.translations(sv.code, translate.marked(sv.data)); - $translateProvider.translations(tr.code, translate.marked(tr.data)); - $translateProvider.translations(uk.code, translate.marked(uk.data)); - $translateProvider.translations(vi.code, translate.marked(vi.data)); - $translateProvider.translations(zh.code, translate.marked(zh.data)); - $translateProvider.preferredLanguage('en'); - $translateProvider.useSanitizeValueStrategy(null); -} -translate.marked = function(data) { - var tData = data; - for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); - return tData; -} -module.exports = translate; - -},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fr":42,"./he":43,"./hi":44,"./hu":45,"./id":46,"./it":47,"./ja":48,"./ko":49,"./nl":50,"./no":51,"./pl":52,"./pt":53,"./ptbr":54,"./ru":55,"./sk":56,"./sl":57,"./sv":58,"./tr":59,"./uk":61,"./vi":62,"./zh":63}],61:[function(require,module,exports){ -// Ukranian -'use strict'; -var uk = function() {} -uk.code = 'uk'; -uk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = uk; - -},{}],62:[function(require,module,exports){ -// Vietnamese -'use strict'; -var vi = function() {} -vi.code = 'vi'; -vi.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Sai người nhận', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas quá thấp', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ví Của Bạn', - NAV_AddWallet: 'Thêm Ví', - NAV_GenerateWallet: 'Tạo Ví', - NAV_BulkGenerate: 'Tạo Nhiều Ví', - NAV_SendEther: 'Gửi Ether', - NAV_SendTokens: 'Gửi Token', - NAV_Offline: 'Giao Dịch Offline', - NAV_WithdrawDAO: 'Thu Hồi DAO Token', - DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', - NAV_ClaimDGD: 'Khiếu Nại Về DGD', - DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', - NAV_DeployContract: 'Phát Triển Hợp Đồng', - NAV_MyWallets: 'Ví Của Tôi', - NAV_ViewWallet: 'Thông Tin Ví', - NAV_Help: 'Trợ Giúp', - NAV_Contact: 'Liên Hệ', - - /* General */ - x_Address: 'Địa Chỉ Của Bạn', - x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', - x_CSV: 'Định Dạng CSV (Không mã hoá)', - x_Cancel: 'Huỷ', - x_Download: 'Tải Về Máy', - x_Json: 'Định Dạng JSON (Không mã hoá)', - x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', - x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', - x_Keystore2: 'Định Dạng Keystore / JSON', - x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', - x_Password: 'Mật Khẩu', - x_Print: 'Tạo Ví Giấy', - x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', - x_PrintShort: 'In Ví', - x_PrivKey: 'Private Key (Không mã hoá)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', - x_Save: 'Lưu', - x_TXT: 'Định Dạng TXT (Không mã Hoá)', - x_Wallet: 'Ví', - - /* Header */ - MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', - CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Nhà Phát Triển:', - FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Những Điều Cần Lưu Ý', - - /* Sidebar */ - sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', - sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', - sidebar_AccountBal: 'Số Dư Tài Khoản: ', - sidebar_TokenBal: 'Số Dư Token: ', - sidebar_Equiv: 'Giá Trị Tương Đương: ', - sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', - sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', - sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', - sidebar_donate: 'Quyên Góp', - sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', - decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', - decrypt_Select: 'Chọn ví:', - - /* Add Wallet */ - ADD_Label_1: 'Bạn đang cần làm gì?', - ADD_Radio_1: 'Tạo Ví Mới', - ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', - ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', - ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', - ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', - ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Label_2: 'Tạo Tên Gọi:', - ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', - ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', - ADD_Label_5: 'Điền Địa Chỉ Ví: ', - ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', - ADD_Label_6_short: 'Mở Khoá', - ADD_Label_7: 'Thêm Tài Khoản', - - /* Generate Wallets */ - GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', - GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', - GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', - GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', - GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', - GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', - GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Số Lượng Ví Cần Tạo', - BULK_Label_2: 'Tạo Ví', - BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Địa Chỉ Đến: ', - SEND_amount: 'Số Lượng Cần Gửi: ', - SEND_amount_short: 'Số Lượng', - SEND_custom: 'Tuỳ Chỉnh', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', - SEND_generate: 'Tạo Giao Dịch', - SEND_raw: 'Định Dạng Giao Dịch', - SEND_signed: 'Chữ Ký Giao Dich', - SEND_trans: 'Gửi Đi', - SENDModal_Title: 'Cảnh Báo! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Bạn muốn gửi đi', - SENDModal_Content_2: 'Địa chỉ đến', - SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', - SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', - SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', - SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', - - /* Tokens */ - TOKEN_Addr: 'Địa Chỉ: ', - TOKEN_Symbol: 'Ký Hiệu Token: ', - TOKEN_Dec: 'Phân Số Thập Phân: ', - - /* Send Transaction */ - TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', - TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', - TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', - TRANS_eth: 'Chỉ ETH', - TRANS_etc: 'Chỉ ETC', - TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', - TRANS_data: 'Dữ Liệu:', - TRANS_gas: 'Gas:', - TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', - TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', - TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', - TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', - TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', - TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', - TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', - - /* Offline Transaction */ - OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', - OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', - OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', - OFFLINE_Step1_Button: 'Tạo Thông Tin', - OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', - OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', - OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', - OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', - OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', - OFFLINE_Step2_Label_3: 'Giá Gas', - OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_4: 'Giới hạn Gas', - OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_6: 'Dữ Liệu', - OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', - OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', - OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', - OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', - - /* DAO */ - DAO_bal1: 'Tại Block 1,919,999', - DAO_bal2: 'Hiện Tại', - DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', - DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', - DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', - DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', - DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', - DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', - DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', - DAOModal_Title: 'Đảm bảo rằng...', - DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', - DAOModal_2: 'Số Dao Token đến', - DAOModal_3: 'Hoàn Lại', // "in return for" - - /* Digix */ - DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', - DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', - DGD_Label_2: 'Cung Cấp Phí Tối Đa:', - DGD_Label_3: 'Giá Gas:', - DGD_Generate: 'Tạo Khiếu Nại', - DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', - - /* Deploy Contracts */ - DEP_generate: 'Tạo Bytecode', - DEP_generated: 'Bytecode Đã Được Tạo', - DEP_signtx: 'Chữ Ký Giao Dịch', - DEP_interface: 'Đã Tạo Giao Diện', - - /* My Wallet */ - MYWAL_Nick: 'Tên Gọi Của Ví', - MYWAL_Address: 'Địa Chỉ Ví', - MYWAL_Bal: 'Số Dư', - MYWAL_Edit: 'Chỉnh Sửa', - MYWAL_View: 'Xem', - MYWAL_Remove: 'Gỡ Bỏ', - MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', - MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', - MYWAL_Viewing: 'Xem Ví: ', - MYWAL_Hide: 'Ẩn Thông Tin Ví', - MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', - MYWAL_Name: 'Tên Ví', - MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', - MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', - MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', - VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', - - /* Chrome Extension */ - CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', - CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vui lòng nhập số dư hợp lệ.', - ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', - ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', - ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', - ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', - ERROR_6: 'Địa chỉ không hợp lệ. ', - ERROR_7: 'Mật khẩu không hợp lệ. ', - ERROR_8: 'Tổng số không hợp lệ. ', - ERROR_9: 'Giới hạn gas không hợp lệ. ', - ERROR_10: 'Dữ liệu không hợp lệ. ', - ERROR_11: 'Tổng số gas không hợp lệ. ', - ERROR_12: 'Nonce không hợp lệ. ', - ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', - ERROR_14: 'Tên gọi này đã được sữ dụng. ', - ERROR_15: 'Không tìm thấy Ví. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', - ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', - ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', - ERROR_20: 'Biểu tượng không hợp lệ', - SUCCESS_1: 'Địa Chỉ Hợp Lệ', - SUCCESS_2: 'Ví đã được giải mã thành công', - SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', - SUCCESS_4: 'Ví của bạn đã được thêm thành công:', - SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', - SUCCESS_6: 'Tập Tin Được Chọn: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Chân Thành Cảm Ơn: ', - TranslatorName_1: 'Phạm Thế Vũ', - TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ - TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', - HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Lưu ý:', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', - HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', - - HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', - HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', - HELP_0_Desc_2: 'Tạo ví mới.', - HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', - HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', - HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', - - HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', - HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', - HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', - HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', - HELP_1_Desc_4: 'Bám "Tạo Ví', - HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', - - HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', - HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', - HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', - HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', - HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', - HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', - HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', - - HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', - HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', - HELP_2b_Desc_3: 'Tải tệp zip về máy.', - HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', - HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', - HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', - HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', - HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', - - HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', - HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', - HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', - HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', - HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', - HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_3_Desc_6: 'Bấm "Mở Khóa".', - HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', - HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - - HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', - HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', - HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', - HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_4_Desc_5: 'Bấm "Mở Khóa"', - HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', - HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', - HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', - HELP_4CX_Desc_11: 'Xác nhận giao dịch', - HELP_4CX_Desc_12: '', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = vi; +// Turkish +'use strict'; +var tr = function() {} +tr.code = 'tr'; +tr.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Cüzdanin', + NAV_AddWallet: 'Cüzdan ekle', + NAV_GenerateWallet: 'Cüzdan oluştur', + NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', + NAV_SendEther: 'Ether gönder', + NAV_SendTokens: 'Tokens gönder', + NAV_Offline: 'Offline gönder', + NAV_WithdrawDAO: 'DAO çek', + DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', + NAV_ClaimDGD: 'DGD talep et', + DGD_TitleLong: 'DGD tokenlerini talep et', + NAV_MyWallets: 'Cüzdanim', + NAV_ViewWallet: 'Cüzdan bilgilerni göster', + NAV_Help: 'Yardim et', + NAV_Contact: 'Iletişime geç', + + /* General */ + x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', + x_Address: 'Adresin', + x_Cancel: 'Iptal et', + x_Download: 'Indir', + x_Json: 'JSON dosya (şifrelenmemis)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', + x_Keystore2: 'Keystore/JSON dosya', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Parola', + x_Print: 'Cüzdanin kağıt versiyonunu yazdir', + x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', + x_PrintShort: 'Yazdir', + x_PrivKey: 'Özel anahtar (şifrelenmemis)', + x_PrivKey2: 'Özel anahtar', + x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', + x_Save: 'Indir', + x_TXT: 'TXT dosya (şifrelenmemis)', + x_CSV: 'CSV dosya (şifrelenmemis)', + x_Wallet: 'Cüzdan', + +/* Header */ + MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', + CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', + + /* Footer */ + FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', + FOOTER_1b: 'tarafından yaratıldı', + FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', + FOOTER_3: 'Client-side cüzdan olusturma', + FOOTER_4: 'Verzicht', + + /* Sidebar */ + sidebar_AccountInfo: 'Hesap bilgiler: ', + sidebar_AccountAddr: 'Hesap adres: ', + sidebar_AccountBal: 'Bakiye: ', + sidebar_TokenBal: 'Token bakiye: ', + sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ + sidebar_TransHistory: 'Işlem geçmişi: ', + sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', + sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', + sidebar_donate: 'Bağışta bulun', + sidebar_thanks: 'TEŞEKKÜRLER!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Cüzdanını nasıl acmak istersin?', + decrypt_Title: 'Özel anahtarinin formatini sec:', + decrypt_Select: 'Bir cüzdan sec:', + + /* Add Wallet */ + ADD_Label_1: 'Ne yapmak istiyorsun?', + ADD_Radio_1: 'Yeni cüzdan olustur', + ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', + ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', + ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', + ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', + ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ + ADD_Label_2: 'Bir nickname oluştur: ', + ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', + ADD_Label_4: 'Izlenecek hesap adresi ekle', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Adresi ekle: ', + ADD_Label_6: 'Cüzdani ac: ', + ADD_Label_6_short: 'Ac', + ADD_Label_7: 'Hesap ekle', + + /* Generate Wallets */ + GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', + GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', + GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', + GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', + GEN_Label_3: 'Adresini kaydet.', + GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Oluşturulacak cüzdan sayısı', + BULK_Label_2: 'Cüzdanlari olustur', + BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Bu Adrese gönder: ', + SEND_amount: 'Gönderilecek miktar: ', + SEND_amount_short: 'Miktar', + SEND_custom: 'Kullanici özel', /*maybe another word here too */ + SEND_gas: 'Gas', + SEND_TransferTotal: 'Tüm dengeyi gönder', + SEND_generate: 'Generate Transaction', + SEND_raw: 'İşlem oluştur', /* add Binär */ + SEND_signed: 'Imzali İşlem', + SEND_trans: 'Islemi gönder', + SENDModal_Title: 'Uyarı! ', + + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'şu an ', + SENDModal_Content_2: 'bu adresse', + SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'Hayir, cikar beni burdan!', + SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token symbolu: ', + TOKEN_Dec: 'Ondalık: ', + + /* Send Transaction */ + TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', + TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', + TRANS_standard: 'ETH (Standart işlem)', + TRANS_eth: 'Yalnızca ETH', + TRANS_etc: 'Yalnızca ETC', + TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', + TRANS_data: 'Veri: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', + TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', + TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ + TRANSModal_Yes: 'Güzel, şimdi anladım.', + TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', + + /* Offline Transaction */ + OFFLINE_Title: 'Olustur & offline islem', + OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', + OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', + OFFLINE_Step1_Button: 'Bilgileri olustur', + OFFLINE_Step1_Label_1: 'Adres\'den: ', + OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'Adrese: ', + OFFLINE_Step2_Label_2: 'Gönderilen miktar', + OFFLINE_Step2_Label_3: 'Gas fiyati ', + OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', + OFFLINE_Step2_Label_4: 'Gas limiti ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Veri', + OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', + OFFLINE_Step2_Label_6: 'Veri', + OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'block 1,919,999\'ta', + DAO_bal2: 'şimdiki', + DAO_TitleETH: 'DAO ETH olarak cek', + DAO_TitleETC: 'DAO ETC olarak cek', + DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', + DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Sadece emin olmak için...', + + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Cekmek üzeresin', + DAOModal_2: 'DAO token\'i ', + DAOModal_3: ' yerine', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Tahmini bedel:', + DGD_Label_2: 'Maximum bedel:', + DGD_Label_3: 'Gas fiyati:', + DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ + DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode oluştur', + DEP_generated: 'Oluşturulan Bytecode', + DEP_signtx: 'Islmemi Imzala', + DEP_interface: 'Interface oluştur', + + /* My Wallet */ + MYWAL_Nick: 'Cüzdan nickname', + MYWAL_Address: 'Cüzdan adres', + MYWAL_Bal: 'Bakiye', + MYWAL_Edit: 'Düzenle', + MYWAL_View: 'Göster', + MYWAL_Remove: 'Kaldir', + MYWAL_RemoveWal: 'Cüzdani kaldir:', + MYWAL_WatchOnly: 'Sadece izlenen hesaplar', + MYWAL_Viewing: 'Izlenen Cüzdan: ', + MYWAL_Hide: 'Cüzdan bilgilerini gizle', + MYWAL_Edit_2: 'Cüzdani düzenle: ', + MYWAL_Name: 'Cüzdan Ismi', + MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', + MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', + CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli + + /* Error Messages */ + ERROR_1: 'Geçerli tutar yaz.', + ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', + ERROR_6: 'Geçersiz adres. ', + ERROR_7: 'Geçersiz parola. ', + ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ + ERROR_9: 'Geçersiz gas limit. ', + ERROR_10: 'Geçersiz data value. ', + ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ + ERROR_12: 'Geçersiz veri. ', + ERROR_13: 'Geçersiz imzali isleme. ', + ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', + ERROR_15: 'Cüzdan bulunmadi. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Geçersiz sembol', + SUCCESS_1: 'Geçerli adres', + SUCCESS_2: 'Cüzdan basariyla desifre edildi', + SUCCESS_3: 'İşlem teslim edildi TX ID: ', + SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', + SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', + SUCCESS_6: 'Dosya secildi ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'ffidan61', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = tr; + +},{}],61:[function(require,module,exports){ + 'use strict'; + var ar = require('./ar'); + var bg = require('./bg'); + var de = require('./de'); + var de = require('./de'); + var el = require('./el'); + var en = require('./en'); + var es = require('./es'); + var et = require('./et'); + var fi = require('./fi'); + var fr = require('./fr'); + var he = require('./he'); + var hi = require('./hi'); + var hu = require('./hu'); + var id = require('./id'); + var it = require('./it'); + var ja = require('./ja'); + var ko = require('./ko'); + var nl = require('./nl'); + var no = require('./no'); + var pl = require('./pl'); + var pt = require('./pt'); + var ptbr = require('./ptbr'); + var ru = require('./ru'); + var sk = require('./sk'); + var sl = require('./sl'); + var sv = require('./sv'); + var tr = require('./tr'); + var uk = require('./uk'); + var vi = require('./vi'); + var zh = require('./zh'); + + var translate = function($translateProvider) { + $translateProvider.translations(ar.code, translate.marked(ar.data)); + $translateProvider.translations(bg.code, translate.marked(bg.data)); + $translateProvider.translations(de.code, translate.marked(de.data)); + $translateProvider.translations(el.code, translate.marked(el.data)); + $translateProvider.translations(en.code, translate.marked(en.data)); + $translateProvider.translations(es.code, translate.marked(es.data)); + $translateProvider.translations(et.code, translate.marked(et.data)); + $translateProvider.translations(fi.code, translate.marked(fi.data)); + $translateProvider.translations(fr.code, translate.marked(fr.data)); + $translateProvider.translations(he.code, translate.marked(he.data)); + $translateProvider.translations(hi.code, translate.marked(hi.data)); + $translateProvider.translations(hu.code, translate.marked(hu.data)); + $translateProvider.translations(id.code, translate.marked(id.data)); + $translateProvider.translations(it.code, translate.marked(it.data)); + $translateProvider.translations(ja.code, translate.marked(ja.data)); + $translateProvider.translations(ko.code, translate.marked(ko.data)); + $translateProvider.translations(nl.code, translate.marked(nl.data)); + $translateProvider.translations(no.code, translate.marked(no.data)); + $translateProvider.translations(pl.code, translate.marked(pl.data)); + $translateProvider.translations(pt.code, translate.marked(pt.data)); + $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); + $translateProvider.translations(ru.code, translate.marked(ru.data)); + $translateProvider.translations(sk.code, translate.marked(sk.data)); + $translateProvider.translations(sl.code, translate.marked(sl.data)); + $translateProvider.translations(sv.code, translate.marked(sv.data)); + $translateProvider.translations(tr.code, translate.marked(tr.data)); + $translateProvider.translations(uk.code, translate.marked(uk.data)); + $translateProvider.translations(vi.code, translate.marked(vi.data)); + $translateProvider.translations(zh.code, translate.marked(zh.data)); + $translateProvider.preferredLanguage('en'); + $translateProvider.useSanitizeValueStrategy(null); + } + +translate.marked = function(data) { + var tData = data; + for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); + return tData; +} +module.exports = translate; + +},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fi":42,"./fr":43,"./he":44,"./hi":45,"./hu":46,"./id":47,"./it":48,"./ja":49,"./ko":50,"./nl":51,"./no":52,"./pl":53,"./pt":54,"./ptbr":55,"./ru":56,"./sk":57,"./sl":58,"./sv":59,"./tr":60,"./uk":62,"./vi":63,"./zh":64}],62:[function(require,module,exports){ +// Ukranian +'use strict'; +var uk = function() {} +uk.code = 'uk'; +uk.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = uk; },{}],63:[function(require,module,exports){ -// Chinese -'use strict'; -var zh = function() {} -zh.code = 'zh'; -zh.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_2_success: 'File Selected: ', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = zh; +// Vietnamese +'use strict'; +var vi = function() {} +vi.code = 'vi'; +vi.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Sai người nhận', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas quá thấp', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Ví Của Bạn', + NAV_AddWallet: 'Thêm Ví', + NAV_GenerateWallet: 'Tạo Ví', + NAV_BulkGenerate: 'Tạo Nhiều Ví', + NAV_SendEther: 'Gửi Ether', + NAV_SendTokens: 'Gửi Token', + NAV_Offline: 'Giao Dịch Offline', + NAV_WithdrawDAO: 'Thu Hồi DAO Token', + DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', + NAV_ClaimDGD: 'Khiếu Nại Về DGD', + DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', + NAV_DeployContract: 'Phát Triển Hợp Đồng', + NAV_MyWallets: 'Ví Của Tôi', + NAV_ViewWallet: 'Thông Tin Ví', + NAV_Help: 'Trợ Giúp', + NAV_Contact: 'Liên Hệ', + + /* General */ + x_Address: 'Địa Chỉ Của Bạn', + x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', + x_CSV: 'Định Dạng CSV (Không mã hoá)', + x_Cancel: 'Huỷ', + x_Download: 'Tải Về Máy', + x_Json: 'Định Dạng JSON (Không mã hoá)', + x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', + x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', + x_Keystore2: 'Định Dạng Keystore / JSON', + x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', + x_Password: 'Mật Khẩu', + x_Print: 'Tạo Ví Giấy', + x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', + x_PrintShort: 'In Ví', + x_PrivKey: 'Private Key (Không mã hoá)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', + x_Save: 'Lưu', + x_TXT: 'Định Dạng TXT (Không mã Hoá)', + x_Wallet: 'Ví', + + /* Header */ + MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', + CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Nhà Phát Triển:', + FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Những Điều Cần Lưu Ý', + + /* Sidebar */ + sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', + sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', + sidebar_AccountBal: 'Số Dư Tài Khoản: ', + sidebar_TokenBal: 'Số Dư Token: ', + sidebar_Equiv: 'Giá Trị Tương Đương: ', + sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', + sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', + sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', + sidebar_donate: 'Quyên Góp', + sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', + decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', + decrypt_Select: 'Chọn ví:', + + /* Add Wallet */ + ADD_Label_1: 'Bạn đang cần làm gì?', + ADD_Radio_1: 'Tạo Ví Mới', + ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', + ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', + ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', + ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', + ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Label_2: 'Tạo Tên Gọi:', + ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', + ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', + ADD_Label_5: 'Điền Địa Chỉ Ví: ', + ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', + ADD_Label_6_short: 'Mở Khoá', + ADD_Label_7: 'Thêm Tài Khoản', + + /* Generate Wallets */ + GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', + GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', + GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', + GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', + GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', + GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', + GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Số Lượng Ví Cần Tạo', + BULK_Label_2: 'Tạo Ví', + BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Địa Chỉ Đến: ', + SEND_amount: 'Số Lượng Cần Gửi: ', + SEND_amount_short: 'Số Lượng', + SEND_custom: 'Tuỳ Chỉnh', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', + SEND_generate: 'Tạo Giao Dịch', + SEND_raw: 'Định Dạng Giao Dịch', + SEND_signed: 'Chữ Ký Giao Dich', + SEND_trans: 'Gửi Đi', + SENDModal_Title: 'Cảnh Báo! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Bạn muốn gửi đi', + SENDModal_Content_2: 'Địa chỉ đến', + SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', + SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', + SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', + SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', + + /* Tokens */ + TOKEN_Addr: 'Địa Chỉ: ', + TOKEN_Symbol: 'Ký Hiệu Token: ', + TOKEN_Dec: 'Phân Số Thập Phân: ', + + /* Send Transaction */ + TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', + TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', + TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', + TRANS_eth: 'Chỉ ETH', + TRANS_etc: 'Chỉ ETC', + TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', + TRANS_data: 'Dữ Liệu:', + TRANS_gas: 'Gas:', + TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', + TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', + TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', + TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', + TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', + TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', + TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', + + /* Offline Transaction */ + OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', + OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', + OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', + OFFLINE_Step1_Button: 'Tạo Thông Tin', + OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', + OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', + OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', + OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', + OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', + OFFLINE_Step2_Label_3: 'Giá Gas', + OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_4: 'Giới hạn Gas', + OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_6: 'Dữ Liệu', + OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', + OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', + OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', + OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', + + /* DAO */ + DAO_bal1: 'Tại Block 1,919,999', + DAO_bal2: 'Hiện Tại', + DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', + DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', + DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', + DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', + DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', + DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', + DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', + DAOModal_Title: 'Đảm bảo rằng...', + DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', + DAOModal_2: 'Số Dao Token đến', + DAOModal_3: 'Hoàn Lại', // "in return for" + + /* Digix */ + DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', + DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', + DGD_Label_2: 'Cung Cấp Phí Tối Đa:', + DGD_Label_3: 'Giá Gas:', + DGD_Generate: 'Tạo Khiếu Nại', + DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', + + /* Deploy Contracts */ + DEP_generate: 'Tạo Bytecode', + DEP_generated: 'Bytecode Đã Được Tạo', + DEP_signtx: 'Chữ Ký Giao Dịch', + DEP_interface: 'Đã Tạo Giao Diện', + + /* My Wallet */ + MYWAL_Nick: 'Tên Gọi Của Ví', + MYWAL_Address: 'Địa Chỉ Ví', + MYWAL_Bal: 'Số Dư', + MYWAL_Edit: 'Chỉnh Sửa', + MYWAL_View: 'Xem', + MYWAL_Remove: 'Gỡ Bỏ', + MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', + MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', + MYWAL_Viewing: 'Xem Ví: ', + MYWAL_Hide: 'Ẩn Thông Tin Ví', + MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', + MYWAL_Name: 'Tên Ví', + MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', + MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', + MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', + VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', + + /* Chrome Extension */ + CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', + CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vui lòng nhập số dư hợp lệ.', + ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', + ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', + ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', + ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', + ERROR_6: 'Địa chỉ không hợp lệ. ', + ERROR_7: 'Mật khẩu không hợp lệ. ', + ERROR_8: 'Tổng số không hợp lệ. ', + ERROR_9: 'Giới hạn gas không hợp lệ. ', + ERROR_10: 'Dữ liệu không hợp lệ. ', + ERROR_11: 'Tổng số gas không hợp lệ. ', + ERROR_12: 'Nonce không hợp lệ. ', + ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', + ERROR_14: 'Tên gọi này đã được sữ dụng. ', + ERROR_15: 'Không tìm thấy Ví. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', + ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', + ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', + ERROR_20: 'Biểu tượng không hợp lệ', + SUCCESS_1: 'Địa Chỉ Hợp Lệ', + SUCCESS_2: 'Ví đã được giải mã thành công', + SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', + SUCCESS_4: 'Ví của bạn đã được thêm thành công:', + SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', + SUCCESS_6: 'Tập Tin Được Chọn: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Chân Thành Cảm Ơn: ', + TranslatorName_1: 'Phạm Thế Vũ', + TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ + TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', + HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Lưu ý:', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', + HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', + + HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', + HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', + HELP_0_Desc_2: 'Tạo ví mới.', + HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', + HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', + HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', + + HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', + HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', + HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', + HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', + HELP_1_Desc_4: 'Bám "Tạo Ví', + HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', + + HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', + HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', + HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', + HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', + HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', + HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', + HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', + + HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', + HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', + HELP_2b_Desc_3: 'Tải tệp zip về máy.', + HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', + HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', + HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', + HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', + HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', + + HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', + HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', + HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', + HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', + HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', + HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_3_Desc_6: 'Bấm "Mở Khóa".', + HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', + HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + + HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', + HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', + HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', + HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_4_Desc_5: 'Bấm "Mở Khóa"', + HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', + HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', + HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', + HELP_4CX_Desc_11: 'Xác nhận giao dịch', + HELP_4CX_Desc_12: '', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = vi; },{}],64:[function(require,module,exports){ +// Chinese +'use strict'; +var zh = function() {} +zh.code = 'zh'; +zh.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_2_success: 'File Selected: ', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = zh; + +},{}],65:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var uiFuncs = function() {} -uiFuncs.getTxData = function($scope) { - return { - to: $scope.tx.to, - value: $scope.tx.value, - unit: $scope.tx.unit, - gasLimit: $scope.tx.gasLimit, - data: $scope.tx.data, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }; -} -uiFuncs.isTxDataValid = function(txData) { - if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; - if (txData.to == "0xCONTRACT") txData.to = ''; -} -uiFuncs.generateClassicTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getClassicTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendClassicTx = function(signedTx, callback) { - ajaxReq.sendClassicRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.generateTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendTx = function(signedTx, callback) { - ajaxReq.sendRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { - try { - ajaxReq.getTransactionData(fromAdd, function(data) { - if (data.error) throw data.msg; - data = data.data; - var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); - var maxVal = new BigNumber(data.balance).minus(gasPrice); - maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); - if (callback !== undefined) callback({ - isError: false, - unit: "ether", - value: maxVal - }); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} +'use strict'; +var uiFuncs = function() {} +uiFuncs.getTxData = function($scope) { + return { + to: $scope.tx.to, + value: $scope.tx.value, + unit: $scope.tx.unit, + gasLimit: $scope.tx.gasLimit, + data: $scope.tx.data, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }; +} +uiFuncs.isTxDataValid = function(txData) { + if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; + if (txData.to == "0xCONTRACT") txData.to = ''; +} +uiFuncs.generateClassicTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getClassicTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendClassicTx = function(signedTx, callback) { + ajaxReq.sendClassicRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.generateTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendTx = function(signedTx, callback) { + ajaxReq.sendRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { + try { + ajaxReq.getTransactionData(fromAdd, function(data) { + if (data.error) throw data.msg; + data = data.data; + var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); + var maxVal = new BigNumber(data.balance).minus(gasPrice); + maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); + if (callback !== undefined) callback({ + isError: false, + unit: "ether", + value: maxVal + }); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":121}],65:[function(require,module,exports){ -'use strict'; -var validator = function() {} -validator.isValidAddress = function(address){ - return ethFuncs.validateEtherAddress(address); -} -validator.isPositiveNumber = function(value){ - return globalFuncs.isNumeric(value) && parseFloat(value) > 0; -} -validator.isValidHex = function(hex){ - return ethFuncs.validateHexString(hex); -} -validator.isValidPrivKey = function(privkeyLen){ - return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; -} -validator.isPasswordLenValid = function(pass, len){ - if(pass === 'undefined' || pass == null ) return false; - return pass.length > len; -} +},{"buffer":122}],66:[function(require,module,exports){ +'use strict'; +var validator = function() {} +validator.isValidAddress = function(address){ + return ethFuncs.validateEtherAddress(address); +} +validator.isPositiveNumber = function(value){ + return globalFuncs.isNumeric(value) && parseFloat(value) >= 0; +} +validator.isValidHex = function(hex){ + return ethFuncs.validateHexString(hex); +} +validator.isValidPrivKey = function(privkeyLen){ + return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; +} +validator.isPasswordLenValid = function(pass, len){ + if(pass === 'undefined' || pass == null ) return false; + return pass.length > len; +} module.exports = validator; -},{}],66:[function(require,module,exports){ + +},{}],67:[function(require,module,exports){ /** * @license AngularJS v1.5.8 * (c) 2010-2016 Google, Inc. http://angularjs.org @@ -19053,11 +19580,11 @@ angular.module('ngSanitize').filter('linky', ['$sanitize', function($sanitize) { })(window, window.angular); -},{}],67:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":66}],68:[function(require,module,exports){ +},{"./angular-sanitize":67}],69:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -19109,7 +19636,7 @@ return 'pascalprecht.translate'; })); -},{}],69:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -22583,9 +23110,9 @@ return 'pascalprecht.translate'; })); -},{}],70:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ /** - * @license AngularJS v1.5.8 + * @license AngularJS v1.5.6 * (c) 2010-2016 Google, Inc. http://angularjs.org * License: MIT */ @@ -22643,7 +23170,7 @@ function minErr(module, ErrorConstructor) { return match; }); - message += '\nhttp://errors.angularjs.org/1.5.8/' + + message += '\nhttp://errors.angularjs.org/1.5.6/' + (module ? module + '/' : '') + code; for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') { @@ -22712,6 +23239,7 @@ function minErr(module, ErrorConstructor) { includes: true, arrayRemove: true, copy: true, + shallowCopy: true, equals: true, csp: true, jq: true, @@ -23407,13 +23935,7 @@ function arrayRemove(array, value) { * * If a destination is provided, all of its elements (for arrays) or properties (for objects) * are deleted and then all elements/properties from the source are copied to it. * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. - * * If `source` is identical to `destination` an exception will be thrown. - * - *
- *
- * Only enumerable properties are taken into account. Non-enumerable properties (both on `source` - * and on `destination`) will be ignored. - *
+ * * If `source` is identical to 'destination' an exception will be thrown. * * @param {*} source The source that will be used to make a copy. * Can be any type, including primitives, `null`, and `undefined`. @@ -23422,42 +23944,41 @@ function arrayRemove(array, value) { * @returns {*} The copy or updated `destination`, if `destination` was specified. * * @example - - -
-
-
-
- Gender: -
- - -
-
form = {{user | json}}
-
master = {{master | json}}
-
-
- - // Module: copyExample - angular. - module('copyExample', []). - controller('ExampleController', ['$scope', function($scope) { - $scope.master = {}; - - $scope.reset = function() { - // Example with 1 argument - $scope.user = angular.copy($scope.master); - }; + + +
+
+ Name:
+ E-mail:
+ Gender: male + female
+ + +
+
form = {{user | json}}
+
master = {{master | json}}
+
+ + +
+
*/ function copy(source, destination) { var stackSource = []; @@ -23564,7 +24085,7 @@ function copy(source, destination) { case '[object Uint8ClampedArray]': case '[object Uint16Array]': case '[object Uint32Array]': - return new source.constructor(copyElement(source.buffer), source.byteOffset, source.length); + return new source.constructor(copyElement(source.buffer)); case '[object ArrayBuffer]': //Support: IE10 @@ -23596,6 +24117,31 @@ function copy(source, destination) { } } +/** + * Creates a shallow copy of an object, an array or a primitive. + * + * Assumes that there are no proto properties for objects. + */ +function shallowCopy(src, dst) { + if (isArray(src)) { + dst = dst || []; + + for (var i = 0, ii = src.length; i < ii; i++) { + dst[i] = src[i]; + } + } else if (isObject(src)) { + dst = dst || {}; + + for (var key in src) { + if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { + dst[key] = src[key]; + } + } + } + + return dst || src; +} + /** * @ngdoc function @@ -24936,34 +25482,7 @@ function setupModuleLoader(window) { } -/* global shallowCopy: true */ - -/** - * Creates a shallow copy of an object, an array or a primitive. - * - * Assumes that there are no proto properties for objects. - */ -function shallowCopy(src, dst) { - if (isArray(src)) { - dst = dst || []; - - for (var i = 0, ii = src.length; i < ii; i++) { - dst[i] = src[i]; - } - } else if (isObject(src)) { - dst = dst || {}; - - for (var key in src) { - if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { - dst[key] = src[key]; - } - } - } - - return dst || src; -} - -/* global toDebugString: true */ +/* global: toDebugString: true */ function serializeObject(obj) { var seen = []; @@ -25067,7 +25586,6 @@ function toDebugString(obj) { $HttpParamSerializerJQLikeProvider, $HttpBackendProvider, $xhrFactoryProvider, - $jsonpCallbacksProvider, $LocationProvider, $LogProvider, $ParseProvider, @@ -25105,11 +25623,11 @@ function toDebugString(obj) { * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". */ var version = { - full: '1.5.8', // all of these placeholder strings will be replaced by grunt's + full: '1.5.6', // all of these placeholder strings will be replaced by grunt's major: 1, // package task minor: 5, - dot: 8, - codeName: 'arbitrary-fallbacks' + dot: 6, + codeName: 'arrow-stringification' }; @@ -25140,7 +25658,7 @@ function publishExternalAPI(angular) { 'isDate': isDate, 'lowercase': lowercase, 'uppercase': uppercase, - 'callbacks': {$$counter: 0}, + 'callbacks': {counter: 0}, 'getTestability': getTestability, '$$minErr': minErr, '$$csp': csp, @@ -25229,7 +25747,6 @@ function publishExternalAPI(angular) { $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider, $httpBackend: $HttpBackendProvider, $xhrFactory: $xhrFactoryProvider, - $jsonpCallbacks: $jsonpCallbacksProvider, $location: $LocationProvider, $log: $LogProvider, $parse: $ParseProvider, @@ -25306,7 +25823,7 @@ function publishExternalAPI(angular) { * ## Angular's jqLite * jqLite provides only the following jQuery methods: * - * - [`addClass()`](http://api.jquery.com/addClass/) - Does not support a function as first argument + * - [`addClass()`](http://api.jquery.com/addClass/) * - [`after()`](http://api.jquery.com/after/) * - [`append()`](http://api.jquery.com/append/) * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters @@ -25333,7 +25850,7 @@ function publishExternalAPI(angular) { * - [`ready()`](http://api.jquery.com/ready/) * - [`remove()`](http://api.jquery.com/remove/) * - [`removeAttr()`](http://api.jquery.com/removeAttr/) - * - [`removeClass()`](http://api.jquery.com/removeClass/) - Does not support a function as first argument + * - [`removeClass()`](http://api.jquery.com/removeClass/) * - [`removeData()`](http://api.jquery.com/removeData/) * - [`replaceWith()`](http://api.jquery.com/replaceWith/) * - [`text()`](http://api.jquery.com/text/) @@ -25468,7 +25985,7 @@ function jqLiteBuildFragment(html, context) { nodes.push(context.createTextNode(html)); } else { // Convert html into DOM nodes - tmp = fragment.appendChild(context.createElement("div")); + tmp = tmp || fragment.appendChild(context.createElement("div")); tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase(); wrap = wrapMap[tag] || wrapMap._default; tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1>") + wrap[2]; @@ -27281,10 +27798,10 @@ function createInjector(modulesToLoad, strictDi) { if (msie <= 11) { return false; } - // Support: Edge 12-13 only - // See: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/6156135/ + // Workaround for MS Edge. + // Check https://connect.microsoft.com/IE/Feedback/Details/2211653 return typeof func === 'function' - && /^(?:class\b|constructor\()/.test(stringifyFn(func)); + && /^(?:class\s|constructor\()/.test(stringifyFn(func)); } function invoke(fn, self, locals, serviceName) { @@ -28025,13 +28542,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28057,13 +28568,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28084,13 +28589,7 @@ var $AnimateProvider = ['$provide', function($provide) { * digest once the animation has completed. * * @param {DOMElement} element the element which will be removed from the DOM - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28114,13 +28613,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be added (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28144,13 +28637,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28175,13 +28662,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} add the CSS class(es) that will be added (multiple classes are separated via spaces) * @param {string} remove the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28222,13 +28703,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {string=} className an optional CSS class that will be applied to the element for the duration of the animation. If * this value is left as empty then a CSS class of `ng-inline-animate` will be applied to the element. * (Note that if no animation is detected then this value will not be applied to the element.) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -29316,9 +29791,8 @@ function $TemplateCacheProvider() { * There are many different options for a directive. * * The difference resides in the return value of the factory function. - * You can either return a {@link $compile#directive-definition-object Directive Definition Object (see below)} - * that defines the directive properties, or just the `postLink` function (all other properties will have - * the default values). + * You can either return a "Directive Definition Object" (see below) that defines the directive properties, + * or just the `postLink` function (all other properties will have the default values). * *
* **Best Practice:** It's recommended to use the "directive definition object" form. @@ -29382,125 +29856,6 @@ function $TemplateCacheProvider() { * }); * ``` * - * ### Life-cycle hooks - * Directive controllers can provide the following methods that are called by Angular at points in the life-cycle of the - * directive: - * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and - * had their bindings initialized (and before the pre & post linking functions for the directives on - * this element). This is a good place to put initialization code for your controller. - * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The - * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an - * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a - * component such as cloning the bound value to prevent accidental mutation of the outer value. - * * `$doCheck()` - Called on each turn of the digest cycle. Provides an opportunity to detect and act on - * changes. Any actions that you wish to take in response to the changes that you detect must be - * invoked from this hook; implementing this has no effect on when `$onChanges` is called. For example, this hook - * could be useful if you wish to perform a deep equality check, or to check a Date object, changes to which would not - * be detected by Angular's change detector and thus not trigger `$onChanges`. This hook is invoked with no arguments; - * if detecting changes, you must store the previous value(s) for comparison to the current values. - * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing - * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in - * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent - * components will have their `$onDestroy()` hook called before child components. - * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link - * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. - * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since - * they are waiting for their template to load asynchronously and their own compilation and linking has been - * suspended until that occurs. - * - * #### Comparison with Angular 2 life-cycle hooks - * Angular 2 also uses life-cycle hooks for its components. While the Angular 1 life-cycle hooks are similar there are - * some differences that you should be aware of, especially when it comes to moving your code from Angular 1 to Angular 2: - * - * * Angular 1 hooks are prefixed with `$`, such as `$onInit`. Angular 2 hooks are prefixed with `ng`, such as `ngOnInit`. - * * Angular 1 hooks can be defined on the controller prototype or added to the controller inside its constructor. - * In Angular 2 you can only define hooks on the prototype of the Component class. - * * Due to the differences in change-detection, you may get many more calls to `$doCheck` in Angular 1 than you would to - * `ngDoCheck` in Angular 2 - * * Changes to the model inside `$doCheck` will trigger new turns of the digest loop, which will cause the changes to be - * propagated throughout the application. - * Angular 2 does not allow the `ngDoCheck` hook to trigger a change outside of the component. It will either throw an - * error or do nothing depending upon the state of `enableProdMode()`. - * - * #### Life-cycle hook examples - * - * This example shows how you can check for mutations to a Date object even though the identity of the object - * has not changed. - * - * - * - * angular.module('do-check-module', []) - * .component('app', { - * template: - * 'Month: ' + - * 'Date: {{ $ctrl.date }}' + - * '', - * controller: function() { - * this.date = new Date(); - * this.month = this.date.getMonth(); - * this.updateDate = function() { - * this.date.setMonth(this.month); - * }; - * } - * }) - * .component('test', { - * bindings: { date: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * var previousValue; - * this.log = []; - * this.$doCheck = function() { - * var currentValue = this.date && this.date.valueOf(); - * if (previousValue !== currentValue) { - * this.log.push('doCheck: date mutated: ' + this.date); - * previousValue = currentValue; - * } - * }; - * } - * }); - *
- * - * - * - *
- * - * This example show how you might use `$doCheck` to trigger changes in your component's inputs even if the - * actual identity of the component doesn't change. (Be aware that cloning and deep equality checks on large - * arrays or objects can have a negative impact on your application performance) - * - * - * - *
- * - * - *
{{ items }}
- * - *
- *
- * - * angular.module('do-check-module', []) - * .component('test', { - * bindings: { items: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * this.log = []; - * - * this.$doCheck = function() { - * if (this.items_ref !== this.items) { - * this.log.push('doCheck: items changed'); - * this.items_ref = this.items; - * } - * if (!angular.equals(this.items_clone, this.items)) { - * this.log.push('doCheck: items mutated'); - * this.items_clone = angular.copy(this.items); - * } - * }; - * } - * }); - *
- *
* * * ### Directive Definition Object @@ -29676,6 +30031,25 @@ function $TemplateCacheProvider() { * The `$transclude` function also has a method on it, `$transclude.isSlotFilled(slotName)`, which returns * `true` if the specified slot contains content (i.e. one or more DOM nodes). * + * The controller can provide the following methods that act as life-cycle hooks: + * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and + * had their bindings initialized (and before the pre & post linking functions for the directives on + * this element). This is a good place to put initialization code for your controller. + * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The + * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an + * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a + * component such as cloning the bound value to prevent accidental mutation of the outer value. + * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing + * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in + * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent + * components will have their `$onDestroy()` hook called before child components. + * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link + * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. + * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since + * they are waiting for their template to load asynchronously and their own compilation and linking has been + * suspended until that occurs. + * + * * #### `require` * Require another directive and inject its controller as the fourth argument to the linking function. The * `require` property can be a string, an array or an object: @@ -29873,8 +30247,8 @@ function $TemplateCacheProvider() { * any other controller. * * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. - * This is the same as the `$transclude` parameter of directive controllers, - * see {@link ng.$compile#-controller- the controller section for details}. + * This is the same as the `$transclude` + * parameter of directive controllers, see there for details. * `function([scope], cloneLinkingFn, futureParentElement)`. * * #### Pre-linking function @@ -30676,19 +31050,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } // We must run this hook in an apply since the $$postDigest runs outside apply $rootScope.$apply(function() { - var errors = []; for (var i = 0, ii = onChangesQueue.length; i < ii; ++i) { - try { - onChangesQueue[i](); - } catch (e) { - errors.push(e); - } + onChangesQueue[i](); } // Reset the queue to trigger a new schedule next time there is a change onChangesQueue = undefined; - if (errors.length) { - throw errors; - } }); } finally { onChangesTtl++; @@ -31329,7 +31695,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { addTextInterpolateDirective(directives, node.nodeValue); break; case NODE_TYPE_COMMENT: /* Comment */ - collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective); + try { + match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); + if (match) { + nName = directiveNormalize(match[1]); + if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { + attrs[nName] = trim(match[2]); + } + } + } catch (e) { + // turns out that under some circumstances IE9 throws errors when one attempts to read + // comment's node value. + // Just ignore it and continue. (Can't seem to reproduce in test case.) + } break; } @@ -31337,24 +31715,6 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return directives; } - function collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective) { - // function created because of performance, try/catch disables - // the optimization of the whole function #14848 - try { - var match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); - if (match) { - var nName = directiveNormalize(match[1]); - if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[2]); - } - } - } catch (e) { - // turns out that under some circumstances IE9 throws errors when one attempts to read - // comment's node value. - // Just ignore it and continue. (Can't seem to reproduce in test case.) - } - } - /** * Given a node with an directive-start it collects all of the siblings until it finds * directive-end. @@ -31870,22 +32230,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(elementControllers, function(controller) { var controllerInstance = controller.instance; if (isFunction(controllerInstance.$onChanges)) { - try { - controllerInstance.$onChanges(controller.bindingInfo.initialChanges); - } catch (e) { - $exceptionHandler(e); - } + controllerInstance.$onChanges(controller.bindingInfo.initialChanges); } if (isFunction(controllerInstance.$onInit)) { - try { - controllerInstance.$onInit(); - } catch (e) { - $exceptionHandler(e); - } - } - if (isFunction(controllerInstance.$doCheck)) { - controllerScope.$watch(function() { controllerInstance.$doCheck(); }); - controllerInstance.$doCheck(); + controllerInstance.$onInit(); } if (isFunction(controllerInstance.$onDestroy)) { controllerScope.$on('$destroy', function callOnDestroyHook() { @@ -32149,16 +32497,18 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // copy the new attributes on the old attrs object forEach(src, function(value, key) { - // Check if we already set this attribute in the loop above. - // `dst` will never contain hasOwnProperty as DOM parser won't let it. - // You will get an "InvalidCharacterError: DOM Exception 5" error if you - // have an attribute like "has-own-property" or "data-has-own-property", etc. - if (!dst.hasOwnProperty(key) && key.charAt(0) !== '$') { + if (key == 'class') { + safeAddClass($element, value); + dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; + } else if (key == 'style') { + $element.attr('style', $element.attr('style') + ';' + value); + dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; + // `dst` will never contain hasOwnProperty as DOM parser won't let it. + // You will get an "InvalidCharacterError: DOM Exception 5" error if you + // have an attribute like "has-own-property" or "data-has-own-property", etc. + } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { dst[key] = value; - - if (key !== 'class' && key !== 'style') { - dstAttr[key] = srcAttr[key]; - } + dstAttr[key] = srcAttr[key]; } }); } @@ -32533,7 +32883,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(bindings, function initializeBinding(definition, scopeName) { var attrName = definition.attrName, optional = definition.optional, - mode = definition.mode, // @, =, <, or & + mode = definition.mode, // @, =, or & lastValue, parentGet, parentSet, compare, removeWatch; @@ -33019,21 +33369,18 @@ function $DocumentProvider() { * * ## Example: * - * The example below will overwrite the default `$exceptionHandler` in order to (a) log uncaught - * errors to the backend for later inspection by the developers and (b) to use `$log.warn()` instead - * of `$log.error()`. - * * ```js - * angular. - * module('exceptionOverwrite', []). - * factory('$exceptionHandler', ['$log', 'logErrorsToBackend', function($log, logErrorsToBackend) { - * return function myExceptionHandler(exception, cause) { - * logErrorsToBackend(exception, cause); - * $log.warn(exception, cause); - * }; - * }]); + * angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { + * return function(exception, cause) { + * exception.message += ' (caused by "' + cause + '")'; + * throw exception; + * }; + * }); * ``` * + * This example will override the normal action of `$exceptionHandler`, to make angular + * exceptions fail hard when they happen, instead of just logging to the console. + * *
* Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind` * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler} @@ -33043,7 +33390,7 @@ function $DocumentProvider() { * `try { ... } catch(e) { $exceptionHandler(e); }` * * @param {Error} exception Exception associated with the error. - * @param {string=} cause Optional information about the context in which + * @param {string=} cause optional information about the context in which * the error was thrown. * */ @@ -33113,7 +33460,7 @@ function $HttpParamSerializerProvider() { * * `{'foo': 'bar'}` results in `foo=bar` * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object) * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element) - * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object) + * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object) * * Note that serializer will sort the request parameters alphabetically. * */ @@ -33664,7 +34011,7 @@ function $HttpProvider() { * * ### Overriding the Default Transformations Per Request * - * If you wish to override the request/response transformations only for a single request then provide + * If you wish override the request/response transformations only for a single request then provide * `transformRequest` and/or `transformResponse` properties on the configuration object passed * into `$http`. * @@ -33707,7 +34054,7 @@ function $HttpProvider() { * * cache a specific response - set config.cache value to TRUE or to a cache object * * If caching is enabled, but neither the default cache nor config.cache are set to a cache object, - * then the default `$cacheFactory("$http")` object is used. + * then the default `$cacheFactory($http)` object is used. * * The default cache value can be set by updating the * {@link ng.$http#defaults `$http.defaults.cache`} property or the @@ -34035,25 +34382,48 @@ function $HttpProvider() { config.headers = mergeHeaders(requestConfig); config.method = uppercase(config.method); config.paramSerializer = isString(config.paramSerializer) ? - $injector.get(config.paramSerializer) : config.paramSerializer; + $injector.get(config.paramSerializer) : config.paramSerializer; - var requestInterceptors = []; - var responseInterceptors = []; + var serverRequest = function(config) { + var headers = config.headers; + var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); + + // strip content-type if data is undefined + if (isUndefined(reqData)) { + forEach(headers, function(value, header) { + if (lowercase(header) === 'content-type') { + delete headers[header]; + } + }); + } + + if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { + config.withCredentials = defaults.withCredentials; + } + + // send request + return sendReq(config, reqData).then(transformResponse, transformResponse); + }; + + var chain = [serverRequest, undefined]; var promise = $q.when(config); // apply interceptors forEach(reversedInterceptors, function(interceptor) { if (interceptor.request || interceptor.requestError) { - requestInterceptors.unshift(interceptor.request, interceptor.requestError); + chain.unshift(interceptor.request, interceptor.requestError); } if (interceptor.response || interceptor.responseError) { - responseInterceptors.push(interceptor.response, interceptor.responseError); + chain.push(interceptor.response, interceptor.responseError); } }); - promise = chainInterceptors(promise, requestInterceptors); - promise = promise.then(serverRequest); - promise = chainInterceptors(promise, responseInterceptors); + while (chain.length) { + var thenFn = chain.shift(); + var rejectFn = chain.shift(); + + promise = promise.then(thenFn, rejectFn); + } if (useLegacyPromise) { promise.success = function(fn) { @@ -34080,18 +34450,14 @@ function $HttpProvider() { return promise; - - function chainInterceptors(promise, interceptors) { - for (var i = 0, ii = interceptors.length; i < ii;) { - var thenFn = interceptors[i++]; - var rejectFn = interceptors[i++]; - - promise = promise.then(thenFn, rejectFn); - } - - interceptors.length = 0; - - return promise; + function transformResponse(response) { + // make a copy since the response must be cacheable + var resp = extend({}, response); + resp.data = transformData(response.data, response.headers, response.status, + config.transformResponse); + return (isSuccess(response.status)) + ? resp + : $q.reject(resp); } function executeHeaderFns(headers, config) { @@ -34135,37 +34501,6 @@ function $HttpProvider() { // execute if header value is a function for merged headers return executeHeaderFns(reqHeaders, shallowCopy(config)); } - - function serverRequest(config) { - var headers = config.headers; - var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); - - // strip content-type if data is undefined - if (isUndefined(reqData)) { - forEach(headers, function(value, header) { - if (lowercase(header) === 'content-type') { - delete headers[header]; - } - }); - } - - if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { - config.withCredentials = defaults.withCredentials; - } - - // send request - return sendReq(config, reqData).then(transformResponse, transformResponse); - } - - function transformResponse(response) { - // make a copy since the response must be cacheable - var resp = extend({}, response); - resp.data = transformData(response.data, response.headers, response.status, - config.transformResponse); - return (isSuccess(response.status)) - ? resp - : $q.reject(resp); - } } $http.pendingRequests = []; @@ -34212,8 +34547,6 @@ function $HttpProvider() { * * @description * Shortcut method to perform `JSONP` request. - * If you would like to customise where and how the callbacks are stored then try overriding - * or decorating the {@link $jsonpCallbacks} service. * * @param {string} url Relative or absolute URL specifying the destination of the request. * The name of the callback should be the string `JSON_CALLBACK`. @@ -34487,7 +34820,7 @@ function $xhrFactoryProvider() { /** * @ngdoc service * @name $httpBackend - * @requires $jsonpCallbacks + * @requires $window * @requires $document * @requires $xhrFactory * @@ -34502,8 +34835,8 @@ function $xhrFactoryProvider() { * $httpBackend} which can be trained with responses. */ function $HttpBackendProvider() { - this.$get = ['$browser', '$jsonpCallbacks', '$document', '$xhrFactory', function($browser, $jsonpCallbacks, $document, $xhrFactory) { - return createHttpBackend($browser, $xhrFactory, $browser.defer, $jsonpCallbacks, $document[0]); + this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) { + return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]); }]; } @@ -34513,13 +34846,17 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc $browser.$$incOutstandingRequestCount(); url = url || $browser.url(); - if (lowercase(method) === 'jsonp') { - var callbackPath = callbacks.createCallback(url); - var jsonpDone = jsonpReq(url, callbackPath, function(status, text) { - // jsonpReq only ever sets status to 200 (OK), 404 (ERROR) or -1 (WAITING) - var response = (status === 200) && callbacks.getResponse(callbackPath); - completeRequest(callback, status, response, "", text); - callbacks.removeCallback(callbackPath); + if (lowercase(method) == 'jsonp') { + var callbackId = '_' + (callbacks.counter++).toString(36); + callbacks[callbackId] = function(data) { + callbacks[callbackId].data = data; + callbacks[callbackId].called = true; + }; + + var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), + callbackId, function(status, text) { + completeRequest(callback, status, callbacks[callbackId].data, "", text); + callbacks[callbackId] = noop; }); } else { @@ -34621,8 +34958,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc } }; - function jsonpReq(url, callbackPath, done) { - url = url.replace('JSON_CALLBACK', callbackPath); + function jsonpReq(url, callbackId, done) { // we can't use jQuery/jqLite here because jQuery does crazy stuff with script elements, e.g.: // - fetches local scripts via XHR and evals them // - adds and immediately removes script elements from the document @@ -34640,7 +34976,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc var text = "unknown"; if (event) { - if (event.type === "load" && !callbacks.wasCalled(callbackPath)) { + if (event.type === "load" && !callbacks[callbackId].called) { event = { type: "error" }; } text = event.type; @@ -34839,7 +35175,7 @@ function $InterpolateProvider() { * * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior. * - * #### Escaped Interpolation + * ####Escaped Interpolation * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash). * It will be rendered as a regular start/end marker, and will not be interpreted as an expression @@ -35262,87 +35598,6 @@ function $IntervalProvider() { }]; } -/** - * @ngdoc service - * @name $jsonpCallbacks - * @requires $window - * @description - * This service handles the lifecycle of callbacks to handle JSONP requests. - * Override this service if you wish to customise where the callbacks are stored and - * how they vary compared to the requested url. - */ -var $jsonpCallbacksProvider = function() { - this.$get = ['$window', function($window) { - var callbacks = $window.angular.callbacks; - var callbackMap = {}; - - function createCallback(callbackId) { - var callback = function(data) { - callback.data = data; - callback.called = true; - }; - callback.id = callbackId; - return callback; - } - - return { - /** - * @ngdoc method - * @name $jsonpCallbacks#createCallback - * @param {string} url the url of the JSONP request - * @returns {string} the callback path to send to the server as part of the JSONP request - * @description - * {@link $httpBackend} calls this method to create a callback and get hold of the path to the callback - * to pass to the server, which will be used to call the callback with its payload in the JSONP response. - */ - createCallback: function(url) { - var callbackId = '_' + (callbacks.$$counter++).toString(36); - var callbackPath = 'angular.callbacks.' + callbackId; - var callback = createCallback(callbackId); - callbackMap[callbackPath] = callbacks[callbackId] = callback; - return callbackPath; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#wasCalled - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {boolean} whether the callback has been called, as a result of the JSONP response - * @description - * {@link $httpBackend} calls this method to find out whether the JSONP response actually called the - * callback that was passed in the request. - */ - wasCalled: function(callbackPath) { - return callbackMap[callbackPath].called; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#getResponse - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {*} the data received from the response via the registered callback - * @description - * {@link $httpBackend} calls this method to get hold of the data that was provided to the callback - * in the JSONP response. - */ - getResponse: function(callbackPath) { - return callbackMap[callbackPath].data; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#removeCallback - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @description - * {@link $httpBackend} calls this method to remove the callback after the JSONP request has - * completed or timed-out. - */ - removeCallback: function(callbackPath) { - var callback = callbackMap[callbackPath]; - delete callbacks[callback.id]; - delete callbackMap[callbackPath]; - } - }; - }]; -}; - /** * @ngdoc service * @name $locale @@ -35682,12 +35937,6 @@ function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) { var locationPrototype = { - /** - * Ensure absolute url is initialized. - * @private - */ - $$absUrl:'', - /** * Are we in html5 mode? * @private @@ -37061,7 +37310,7 @@ AST.prototype = { var args = []; if (this.peekToken().text !== ')') { do { - args.push(this.filterChain()); + args.push(this.expression()); } while (this.expect(',')); } return args; @@ -38788,7 +39037,7 @@ function $ParseProvider() { * * **Methods** * - * - `then(successCallback, [errorCallback], [notifyCallback])` – regardless of when the promise was or + * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously * as soon as the result is available. The callbacks are called with a single argument: the result * or rejection reason. Additionally, the notify callback may be called zero or more times to @@ -38799,8 +39048,7 @@ function $ParseProvider() { * with the value which is resolved in that promise using * [promise chaining](http://www.html5rocks.com/en/tutorials/es6/promises/#toc-promises-queues)). * It also notifies via the return value of the `notifyCallback` method. The promise cannot be - * resolved or rejected from the notifyCallback method. The errorCallback and notifyCallback - * arguments are optional. + * resolved or rejected from the notifyCallback method. * * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` * @@ -39215,30 +39463,6 @@ function qFactory(nextTick, exceptionHandler) { return deferred.promise; } - /** - * @ngdoc method - * @name $q#race - * @kind function - * - * @description - * Returns a promise that resolves or rejects as soon as one of those promises - * resolves or rejects, with the value or reason from that promise. - * - * @param {Array.|Object.} promises An array or hash of promises. - * @returns {Promise} a promise that resolves or rejects as soon as one of the `promises` - * resolves or rejects, with the value or reason from that promise. - */ - - function race(promises) { - var deferred = defer(); - - forEach(promises, function(promise) { - when(promise).then(deferred.resolve, deferred.reject); - }); - - return deferred.promise; - } - var $Q = function Q(resolver) { if (!isFunction(resolver)) { throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver); @@ -39268,7 +39492,6 @@ function qFactory(nextTick, exceptionHandler) { $Q.when = when; $Q.resolve = resolve; $Q.all = all; - $Q.race = race; return $Q; } @@ -42620,11 +42843,10 @@ function $FilterProvider($provide) { * - `Object`: A pattern object can be used to filter specific properties on objects contained * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items * which have property `name` containing "M" and property `phone` containing "1". A special - * property name (`$` by default) can be used (e.g. as in `{$: "text"}`) to accept a match - * against any property of the object or its nested object properties. That's equivalent to the - * simple substring match with a `string` as described above. The special property name can be - * overwritten, using the `anyPropertyKey` parameter. - * The predicate can be negated by prefixing the string with `!`. + * property name `$` can be used (as in `{$:"text"}`) to accept a match against any + * property of the object or its nested object properties. That's equivalent to the simple + * substring match with a `string` as described above. The predicate can be negated by prefixing + * the string with `!`. * For example `{name: "!M"}` predicate will return an array of items which have property `name` * not containing "M". * @@ -42658,9 +42880,6 @@ function $FilterProvider($provide) { * Primitive values are converted to strings. Objects are not compared against primitives, * unless they have a custom `toString` method (e.g. `Date` objects). * - * @param {string=} anyPropertyKey The special property name that matches against any property. - * By default `$`. - * * @example @@ -42729,9 +42948,8 @@ function $FilterProvider($provide) { */ - function filterFilter() { - return function(array, expression, comparator, anyPropertyKey) { + return function(array, expression, comparator) { if (!isArrayLike(array)) { if (array == null) { return array; @@ -42740,7 +42958,6 @@ function filterFilter() { } } - anyPropertyKey = anyPropertyKey || '$'; var expressionType = getTypeForFilter(expression); var predicateFn; var matchAgainstAnyProp; @@ -42757,7 +42974,7 @@ function filterFilter() { //jshint -W086 case 'object': //jshint +W086 - predicateFn = createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp); + predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp); break; default: return array; @@ -42768,8 +42985,8 @@ function filterFilter() { } // Helper functions for `filterFilter` -function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp) { - var shouldMatchPrimitives = isObject(expression) && (anyPropertyKey in expression); +function createPredicateFn(expression, comparator, matchAgainstAnyProp) { + var shouldMatchPrimitives = isObject(expression) && ('$' in expression); var predicateFn; if (comparator === true) { @@ -42797,25 +43014,25 @@ function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstA predicateFn = function(item) { if (shouldMatchPrimitives && !isObject(item)) { - return deepCompare(item, expression[anyPropertyKey], comparator, anyPropertyKey, false); + return deepCompare(item, expression.$, comparator, false); } - return deepCompare(item, expression, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expression, comparator, matchAgainstAnyProp); }; return predicateFn; } -function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstAnyProp, dontMatchWholeObject) { +function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) { var actualType = getTypeForFilter(actual); var expectedType = getTypeForFilter(expected); if ((expectedType === 'string') && (expected.charAt(0) === '!')) { - return !deepCompare(actual, expected.substring(1), comparator, anyPropertyKey, matchAgainstAnyProp); + return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp); } else if (isArray(actual)) { // In case `actual` is an array, consider it a match // if ANY of it's items matches `expected` return actual.some(function(item) { - return deepCompare(item, expected, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expected, comparator, matchAgainstAnyProp); }); } @@ -42824,11 +43041,11 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA var key; if (matchAgainstAnyProp) { for (key in actual) { - if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, anyPropertyKey, true)) { + if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) { return true; } } - return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, anyPropertyKey, false); + return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false); } else if (expectedType === 'object') { for (key in expected) { var expectedVal = expected[key]; @@ -42836,9 +43053,9 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA continue; } - var matchAnyProperty = key === anyPropertyKey; + var matchAnyProperty = key === '$'; var actualVal = matchAnyProperty ? actual : actual[key]; - if (!deepCompare(actualVal, expectedVal, comparator, anyPropertyKey, matchAnyProperty, matchAnyProperty)) { + if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) { return false; } } @@ -43576,22 +43793,21 @@ var uppercaseFilter = valueFn(uppercase); * @kind function * * @description - * Creates a new array or string containing only a specified number of elements. The elements are - * taken from either the beginning or the end of the source array, string or number, as specified by - * the value and sign (positive or negative) of `limit`. Other array-like objects are also supported - * (e.g. array subclasses, NodeLists, jqLite/jQuery collections etc). If a number is used as input, - * it is converted to a string. - * - * @param {Array|ArrayLike|string|number} input - Array/array-like, string or number to be limited. - * @param {string|number} limit - The length of the returned array or string. If the `limit` number + * Creates a new array or string containing only a specified number of elements. The elements + * are taken from either the beginning or the end of the source array, string or number, as specified by + * the value and sign (positive or negative) of `limit`. If a number is used as input, it is + * converted to a string. + * + * @param {Array|string|number} input Source array, string or number to be limited. + * @param {string|number} limit The length of the returned array or string. If the `limit` number * is positive, `limit` number of items from the beginning of the source array/string are copied. * If the number is negative, `limit` number of items from the end of the source array/string * are copied. The `limit` will be trimmed if it exceeds `array.length`. If `limit` is undefined, * the input will be returned unchanged. - * @param {(string|number)=} begin - Index at which to begin limitation. As a negative index, - * `begin` indicates an offset from the end of `input`. Defaults to `0`. - * @returns {Array|string} A new sub-array or substring of length `limit` or less if the input had - * less than `limit` elements. + * @param {(string|number)=} begin Index at which to begin limitation. As a negative index, `begin` + * indicates an offset from the end of `input`. Defaults to `0`. + * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array + * had less than `limit` elements. * * @example @@ -43679,157 +43895,67 @@ function limitToFilter() { if (isNaN(limit)) return input; if (isNumber(input)) input = input.toString(); - if (!isArrayLike(input)) return input; + if (!isArray(input) && !isString(input)) return input; begin = (!begin || isNaN(begin)) ? 0 : toInt(begin); begin = (begin < 0) ? Math.max(0, input.length + begin) : begin; if (limit >= 0) { - return sliceFn(input, begin, begin + limit); + return input.slice(begin, begin + limit); } else { if (begin === 0) { - return sliceFn(input, limit, input.length); + return input.slice(limit, input.length); } else { - return sliceFn(input, Math.max(0, begin + limit), begin); + return input.slice(Math.max(0, begin + limit), begin); } } }; } -function sliceFn(input, begin, end) { - if (isString(input)) return input.slice(begin, end); - - return slice.call(input, begin, end); -} - /** * @ngdoc filter * @name orderBy * @kind function * * @description - * Returns an array containing the items from the specified `collection`, ordered by a `comparator` - * function based on the values computed using the `expression` predicate. - * - * For example, `[{id: 'foo'}, {id: 'bar'}] | orderBy:'id'` would result in - * `[{id: 'bar'}, {id: 'foo'}]`. - * - * The `collection` can be an Array or array-like object (e.g. NodeList, jQuery object, TypedArray, - * String, etc). + * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically + * for strings and numerically for numbers. Note: if you notice numbers are not being sorted + * as expected, make sure they are actually being saved as numbers and not strings. + * Array-like values (e.g. NodeLists, jQuery objects, TypedArrays, Strings, etc) are also supported. * - * The `expression` can be a single predicate, or a list of predicates each serving as a tie-breaker - * for the preceeding one. The `expression` is evaluated against each item and the output is used - * for comparing with other items. - * - * You can change the sorting order by setting `reverse` to `true`. By default, items are sorted in - * ascending order. - * - * The comparison is done using the `comparator` function. If none is specified, a default, built-in - * comparator is used (see below for details - in a nutshell, it compares numbers numerically and - * strings alphabetically). - * - * ### Under the hood - * - * Ordering the specified `collection` happens in two phases: - * - * 1. All items are passed through the predicate (or predicates), and the returned values are saved - * along with their type (`string`, `number` etc). For example, an item `{label: 'foo'}`, passed - * through a predicate that extracts the value of the `label` property, would be transformed to: - * ``` - * { - * value: 'foo', - * type: 'string', - * index: ... - * } - * ``` - * 2. The comparator function is used to sort the items, based on the derived values, types and - * indices. - * - * If you use a custom comparator, it will be called with pairs of objects of the form - * `{value: ..., type: '...', index: ...}` and is expected to return `0` if the objects are equal - * (as far as the comparator is concerned), `-1` if the 1st one should be ranked higher than the - * second, or `1` otherwise. - * - * In order to ensure that the sorting will be deterministic across platforms, if none of the - * specified predicates can distinguish between two items, `orderBy` will automatically introduce a - * dummy predicate that returns the item's index as `value`. - * (If you are using a custom comparator, make sure it can handle this predicate as well.) - * - * Finally, in an attempt to simplify things, if a predicate returns an object as the extracted - * value for an item, `orderBy` will try to convert that object to a primitive value, before passing - * it to the comparator. The following rules govern the conversion: - * - * 1. If the object has a `valueOf()` method that returns a primitive, its return value will be - * used instead.
- * (If the object has a `valueOf()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 2. If the object has a custom `toString()` method (i.e. not the one inherited from `Object`) that - * returns a primitive, its return value will be used instead.
- * (If the object has a `toString()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 3. No conversion; the object itself is used. - * - * ### The default comparator - * - * The default, built-in comparator should be sufficient for most usecases. In short, it compares - * numbers numerically, strings alphabetically (and case-insensitively), for objects falls back to - * using their index in the original collection, and sorts values of different types by type. - * - * More specifically, it follows these steps to determine the relative order of items: - * - * 1. If the compared values are of different types, compare the types themselves alphabetically. - * 2. If both values are of type `string`, compare them alphabetically in a case- and - * locale-insensitive way. - * 3. If both values are objects, compare their indices instead. - * 4. Otherwise, return: - * - `0`, if the values are equal (by strict equality comparison, i.e. using `===`). - * - `-1`, if the 1st value is "less than" the 2nd value (compared using the `<` operator). - * - `1`, otherwise. - * - * **Note:** If you notice numbers not being sorted as expected, make sure they are actually being - * saved as numbers and not strings. - * - * @param {Array|ArrayLike} collection - The collection (array or array-like object) to sort. - * @param {(Function|string|Array.)=} expression - A predicate (or list of - * predicates) to be used by the comparator to determine the order of elements. + * @param {Array} array The array (or array-like object) to sort. + * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be + * used by the comparator to determine the order of elements. * * Can be one of: * - * - `Function`: A getter function. This function will be called with each item as argument and - * the return value will be used for sorting. - * - `string`: An Angular expression. This expression will be evaluated against each item and the - * result will be used for sorting. For example, use `'label'` to sort by a property called - * `label` or `'label.substring(0, 3)'` to sort by the first 3 characters of the `label` - * property.
- * (The result of a constant expression is interpreted as a property name to be used for - * comparison. For example, use `'"special name"'` (note the extra pair of quotes) to sort by a - * property called `special name`.)
- * An expression can be optionally prefixed with `+` or `-` to control the sorting direction, - * ascending or descending. For example, `'+label'` or `'-label'`. If no property is provided, - * (e.g. `'+'` or `'-'`), the collection element itself is used in comparisons. - * - `Array`: An array of function and/or string predicates. If a predicate cannot determine the - * relative order of two items, the next predicate is used as a tie-breaker. + * - `function`: Getter function. The result of this function will be sorted using the + * `<`, `===`, `>` operator. + * - `string`: An Angular expression. The result of this expression is used to compare elements + * (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by + * 3 first characters of a property called `name`). The result of a constant expression + * is interpreted as a property name to be used in comparisons (for example `"special name"` + * to sort object by the value of their `special name` property). An expression can be + * optionally prefixed with `+` or `-` to control ascending or descending sort order + * (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array + * element itself is used to compare where sorting. + * - `Array`: An array of function or string predicates. The first predicate in the array + * is used for sorting, but when two items are equivalent, the next predicate is used. * - * **Note:** If the predicate is missing or empty then it defaults to `'+'`. + * If the predicate is missing or empty then it defaults to `'+'`. * - * @param {boolean=} reverse - If `true`, reverse the sorting order. - * @param {(Function)=} comparator - The comparator function used to determine the relative order of - * value pairs. If omitted, the built-in comparator will be used. - * - * @returns {Array} - The sorted array. + * @param {boolean=} reverse Reverse the order of the array. + * @returns {Array} Sorted copy of the source array. * * * @example - * ### Ordering a table with `ngRepeat` - * - * The example below demonstrates a simple {@link ngRepeat ngRepeat}, where the data is sorted by - * age in descending order (expression is set to `'-age'`). The `comparator` is not set, which means - * it defaults to the built-in comparator. - * - + * The example below demonstrates a simple ngRepeat, where the data is sorted + * by age in descending order (predicate is set to `'-age'`). + * `reverse` is not set, which means it defaults to `false`. +
- +
@@ -43844,77 +43970,43 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample1', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; }]); - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - - - // Element locators - var names = element.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by age in reverse order', function() { - expect(names.get(0).getText()).toBe('Adam'); - expect(names.get(1).getText()).toBe('Julie'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('John'); - }); - - *
* + * The predicate and reverse parameters can be controlled dynamically through scope properties, + * as shown in the next example. * @example - * ### Changing parameters dynamically - * - * All parameters can be changed dynamically. The next example shows how you can make the columns of - * a table sortable, by binding the `expression` and `reverse` parameters to scope properties. - * - +
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- +
Sorting predicate = {{predicate}}; reverse = {{reverse}}

-
Name Phone Number
+ +
- - - + + + - + @@ -43923,335 +44015,100 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample2', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + $scope.predicate = 'age'; $scope.reverse = true; - $scope.friends = friends; - - $scope.sortBy = function(propertyName) { - $scope.reverse = ($scope.propertyName === propertyName) ? !$scope.reverse : false; - $scope.propertyName = propertyName; + $scope.order = function(predicate) { + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.predicate = predicate; }; }]); - + - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE + content: '\25bc'; } - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - - *
* - * @example - * ### Using `orderBy` inside a controller + * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the + * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the + * desired parameters. * - * It is also possible to call the `orderBy` filter manually, by injecting `orderByFilter`, and - * calling it with the desired parameters. (Alternatively, you could inject the `$filter` factory - * and retrieve the `orderBy` filter with `$filter('orderBy')`.) + * Example: * - - -
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- -
-
- - - - - - - - - + + + + + + + + +
{{friend.name}} {{friend.phone}} {{friend.age}}
- - - - - - - - - - -
- - - - - - - - -
{{friend.name}}{{friend.phone}}{{friend.age}}
-
-
- - angular.module('orderByExample3', []) - .controller('ExampleController', ['$scope', 'orderByFilter', function($scope, orderBy) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; - $scope.reverse = true; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - - $scope.sortBy = function(propertyName) { - $scope.reverse = (propertyName !== null && $scope.propertyName === propertyName) - ? !$scope.reverse : false; - $scope.propertyName = propertyName; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - }; - }]); - - - .friends { - border-collapse: collapse; - } + * @example + + +
+
Sorting predicate = {{predicate}}; reverse = {{reverse}}
+ + + + + + + + + + + +
+ + + + + + + + +
{{friend.name}}{{friend.phone}}{{friend.age}}
+
+
- .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) { + var orderBy = $filter('orderBy'); + $scope.friends = [ + { name: 'John', phone: '555-1212', age: 10 }, + { name: 'Mary', phone: '555-9876', age: 19 }, + { name: 'Mike', phone: '555-4321', age: 21 }, + { name: 'Adam', phone: '555-5678', age: 35 }, + { name: 'Julie', phone: '555-8765', age: 29 } + ]; + $scope.order = function(predicate) { + $scope.predicate = predicate; + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.friends = orderBy($scope.friends, predicate, $scope.reverse); + }; + $scope.order('age', true); + }]); + + .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE - } - - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - -
- *
- * - * @example - * ### Using a custom comparator - * - * If you have very specific requirements about the way items are sorted, you can pass your own - * comparator function. For example, you might need to compare some strings in a locale-sensitive - * way. (When specifying a custom comparator, you also need to pass a value for the `reverse` - * argument - passing `false` retains the default sorting order, i.e. ascending.) - * - - -
-
-

Locale-sensitive Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-

Default Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-
- - angular.module('orderByExample4', []) - .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', favoriteLetter: 'Ä'}, - {name: 'Mary', favoriteLetter: 'Ü'}, - {name: 'Mike', favoriteLetter: 'Ö'}, - {name: 'Adam', favoriteLetter: 'H'}, - {name: 'Julie', favoriteLetter: 'Z'} - ]; - - $scope.localeSensitiveComparator = function(v1, v2) { - // If we don't get strings, just compare by index - if (v1.type !== 'string' || v2.type !== 'string') { - return (v1.index < v2.index) ? -1 : 1; - } - - // Compare strings alphabetically, taking locale into account - return v1.value.localeCompare(v2.value); - }; - }]); - - - .friends-container { - display: inline-block; - margin: 0 30px; - } - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; + content: '\25bc'; } - - - // Element locators - var container = element(by.css('.custom-comparator')); - var names = container.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by favorite letter (in correct alphabetical order)', function() { - expect(names.get(0).getText()).toBe('John'); - expect(names.get(1).getText()).toBe('Adam'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('Julie'); - }); - -
- * +
+
*/ orderByFilter.$inject = ['$parse']; function orderByFilter($parse) { - return function(array, sortPredicate, reverseOrder, compareFn) { + return function(array, sortPredicate, reverseOrder) { if (array == null) return array; if (!isArrayLike(array)) { @@ -44261,12 +44118,11 @@ function orderByFilter($parse) { if (!isArray(sortPredicate)) { sortPredicate = [sortPredicate]; } if (sortPredicate.length === 0) { sortPredicate = ['+']; } - var predicates = processPredicates(sortPredicate); - - var descending = reverseOrder ? -1 : 1; - - // Define the `compare()` function. Use a default comparator if none is specified. - var compare = isFunction(compareFn) ? compareFn : defaultCompare; + var predicates = processPredicates(sortPredicate, reverseOrder); + // Add a predicate at the end that evaluates to the element index. This makes the + // sort stable as it works as a tie-breaker when all the input predicates cannot + // distinguish between two elements. + predicates.push({ get: function() { return {}; }, descending: reverseOrder ? -1 : 1}); // The next three lines are a version of a Swartzian Transform idiom from Perl // (sometimes called the Decorate-Sort-Undecorate idiom) @@ -44278,12 +44134,8 @@ function orderByFilter($parse) { return array; function getComparisonObject(value, index) { - // NOTE: We are adding an extra `tieBreaker` value based on the element's index. - // This will be used to keep the sort stable when none of the input predicates can - // distinguish between two elements. return { value: value, - tieBreaker: {value: index, type: 'number', index: index}, predicateValues: predicates.map(function(predicate) { return getPredicateValue(predicate.get(value), index); }) @@ -44291,19 +44143,18 @@ function orderByFilter($parse) { } function doComparison(v1, v2) { - for (var i = 0, ii = predicates.length; i < ii; i++) { - var result = compare(v1.predicateValues[i], v2.predicateValues[i]); - if (result) { - return result * predicates[i].descending * descending; - } + var result = 0; + for (var index=0, length = predicates.length; index < length; ++index) { + result = compare(v1.predicateValues[index], v2.predicateValues[index]) * predicates[index].descending; + if (result) break; } - - return compare(v1.tieBreaker, v2.tieBreaker) * descending; + return result; } }; - function processPredicates(sortPredicates) { - return sortPredicates.map(function(predicate) { + function processPredicates(sortPredicate, reverseOrder) { + reverseOrder = reverseOrder ? -1 : 1; + return sortPredicate.map(function(predicate) { var descending = 1, get = identity; if (isFunction(predicate)) { @@ -44321,7 +44172,7 @@ function orderByFilter($parse) { } } } - return {get: get, descending: descending}; + return { get: get, descending: descending * reverseOrder }; }); } @@ -44336,9 +44187,9 @@ function orderByFilter($parse) { } } - function objectValue(value) { + function objectValue(value, index) { // If `valueOf` is a valid function use that - if (isFunction(value.valueOf)) { + if (typeof value.valueOf === 'function') { value = value.valueOf(); if (isPrimitive(value)) return value; } @@ -44347,8 +44198,8 @@ function orderByFilter($parse) { value = value.toString(); if (isPrimitive(value)) return value; } - - return value; + // We have a basic object so we use the position of the object in the collection + return index; } function getPredicateValue(value, index) { @@ -44356,39 +44207,23 @@ function orderByFilter($parse) { if (value === null) { type = 'string'; value = 'null'; + } else if (type === 'string') { + value = value.toLowerCase(); } else if (type === 'object') { - value = objectValue(value); + value = objectValue(value, index); } - return {value: value, type: type, index: index}; + return { value: value, type: type }; } - function defaultCompare(v1, v2) { + function compare(v1, v2) { var result = 0; - var type1 = v1.type; - var type2 = v2.type; - - if (type1 === type2) { - var value1 = v1.value; - var value2 = v2.value; - - if (type1 === 'string') { - // Compare strings case-insensitively - value1 = value1.toLowerCase(); - value2 = value2.toLowerCase(); - } else if (type1 === 'object') { - // For basic objects, use the position of the object - // in the collection instead of the value - if (isObject(value1)) value1 = v1.index; - if (isObject(value2)) value2 = v2.index; - } - - if (value1 !== value2) { - result = value1 < value2 ? -1 : 1; + if (v1.type === v2.type) { + if (v1.value !== v2.value) { + result = v1.value < v2.value ? -1 : 1; } } else { - result = type1 < type2 ? -1 : 1; + result = v1.type < v2.type ? -1 : 1; } - return result; } } @@ -44668,11 +44503,9 @@ var htmlAnchorDirective = valueFn({ * * @description * - * Sets the `readonly` attribute on the element, if the expression inside `ngReadonly` is truthy. - * Note that `readonly` applies only to `input` elements with specific types. [See the input docs on - * MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly) for more information. + * Sets the `readOnly` attribute on the element, if the expression inside `ngReadonly` is truthy. * - * A special directive is necessary because we cannot use interpolation inside the `readonly` + * A special directive is necessary because we cannot use interpolation inside the `readOnly` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * * @example @@ -44709,13 +44542,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `selected` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - *
- * **Note:** `ngSelected` does not interact with the `select` and `ngModel` directives, it only - * sets the `selected` attribute on the element. If you are using `ngModel` on the select, you - * should not use `ngSelected` on the options, as `ngModel` will set the select value and - * selected options. - *
- * * @example @@ -44752,11 +44578,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `open` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - * ## A note about browser compatibility - * - * Edge, Firefox, and Internet Explorer do not support the `details` element, it is - * recommended to use {@link ng.ngShow} and {@link ng.ngHide} instead. - * * @example @@ -45447,9 +45268,7 @@ var ISO_DATE_REGEXP = /^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+- // 9. Fragment // 1111111111111111 222 333333 44444 555555555555555555555555 666 77777777 8888888 999 var URL_REGEXP = /^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i; -/* jshint maxlen:220 */ -var EMAIL_REGEXP = /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/; -/* jshint maxlen:200 */ +var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4,})-(\d{2})-(\d{2})$/; var DATETIMELOCAL_REGEXP = /^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; @@ -46834,7 +46653,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('min', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } minVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -46850,7 +46669,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('max', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } maxVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -47657,11 +47476,6 @@ function classDirective(name, selector) { * When the expression changes, the previously added classes are removed and only then are the * new classes added. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `class` - * attribute, when using the `ngClass` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @animations * | Animation | Occurs | * |----------------------------------|-------------------------------------| @@ -51607,7 +51421,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, for (var i = options.items.length - 1; i >= 0; i--) { var option = options.items[i]; - if (isDefined(option.group)) { + if (option.group) { jqLiteRemove(option.element.parentNode); } else { jqLiteRemove(option.element); @@ -51639,8 +51453,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, listFragment.appendChild(groupElement); // Update the label on the group element - // "null" is special cased because of Safari - groupElement.label = option.group === null ? 'null' : option.group; + groupElement.label = option.group; // Store it for use later groupElementMap[option.group] = groupElement; @@ -51976,7 +51789,7 @@ var ngPluralizeDirective = ['$locale', '$interpolate', '$log', function($locale, * it's a prefix used by Angular for public (`$`) and private (`$$`) properties. * * - The built-in filters {@link ng.orderBy orderBy} and {@link ng.filter filter} do not work with - * objects, and will throw an error if used with one. + * objects, and will throw if used with one. * * If you are hitting any of these limitations, the recommended workaround is to convert your object into an array * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could @@ -52825,11 +52638,6 @@ var ngHideDirective = ['$animate', function($animate) { * @description * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `style` - * attribute, when using the `ngStyle` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @element ANY * @param {expression} ngStyle * @@ -53241,63 +53049,37 @@ var ngSwitchDefaultDirective = ngDirective({ * */ var ngTranscludeMinErr = minErr('ngTransclude'); -var ngTranscludeDirective = ['$compile', function($compile) { - return { - restrict: 'EAC', - terminal: true, - compile: function ngTranscludeCompile(tElement) { - - // Remove and cache any original content to act as a fallback - var fallbackLinkFn = $compile(tElement.contents()); - tElement.empty(); - - return function ngTranscludePostLink($scope, $element, $attrs, controller, $transclude) { - - if (!$transclude) { - throw ngTranscludeMinErr('orphan', - 'Illegal use of ngTransclude directive in the template! ' + - 'No parent directive that requires a transclusion found. ' + - 'Element: {0}', - startingTag($element)); - } - - - // If the attribute is of the form: `ng-transclude="ng-transclude"` then treat it like the default - if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { - $attrs.ngTransclude = ''; - } - var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; +var ngTranscludeDirective = ngDirective({ + restrict: 'EAC', + link: function($scope, $element, $attrs, controller, $transclude) { - // If the slot is required and no transclusion content is provided then this call will throw an error - $transclude(ngTranscludeCloneAttachFn, null, slotName); - - // If the slot is optional and no transclusion content is provided then use the fallback content - if (slotName && !$transclude.isSlotFilled(slotName)) { - useFallbackContent(); - } + if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { + // If the attribute is of the form: `ng-transclude="ng-transclude"` + // then treat it like the default + $attrs.ngTransclude = ''; + } - function ngTranscludeCloneAttachFn(clone, transcludedScope) { - if (clone.length) { - $element.append(clone); - } else { - useFallbackContent(); - // There is nothing linked against the transcluded scope since no content was available, - // so it should be safe to clean up the generated scope. - transcludedScope.$destroy(); - } - } + function ngTranscludeCloneAttachFn(clone) { + if (clone.length) { + $element.empty(); + $element.append(clone); + } + } - function useFallbackContent() { - // Since this is the fallback content rather than the transcluded content, - // we link against the scope of this directive rather than the transcluded scope - fallbackLinkFn($scope, function(clone) { - $element.append(clone); - }); - } - }; + if (!$transclude) { + throw ngTranscludeMinErr('orphan', + 'Illegal use of ngTransclude directive in the template! ' + + 'No parent directive that requires a transclusion found. ' + + 'Element: {0}', + startingTag($element)); } - }; -}]; + + // If there is no slot name defined or the slot name is not optional + // then transclude the slot + var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; + $transclude(ngTranscludeCloneAttachFn, null, slotName); + } +}); /** * @ngdoc directive @@ -54352,11 +54134,11 @@ $provide.value("$locale", { })(window); !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],71:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ require('./angular'); module.exports = angular; -},{"./angular":70}],72:[function(require,module,exports){ +},{"./angular":71}],73:[function(require,module,exports){ var asn1 = exports; asn1.bignum = require('bn.js'); @@ -54367,7 +54149,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":73,"./asn1/base":75,"./asn1/constants":79,"./asn1/decoders":81,"./asn1/encoders":84,"bn.js":91}],73:[function(require,module,exports){ +},{"./asn1/api":74,"./asn1/base":76,"./asn1/constants":80,"./asn1/decoders":82,"./asn1/encoders":85,"bn.js":92}],74:[function(require,module,exports){ var asn1 = require('../asn1'); var inherits = require('inherits'); @@ -54430,7 +54212,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":72,"inherits":465,"vm":521}],74:[function(require,module,exports){ +},{"../asn1":73,"inherits":467,"vm":523}],75:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -54548,7 +54330,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":75,"buffer":121,"inherits":465}],75:[function(require,module,exports){ +},{"../base":76,"buffer":122,"inherits":467}],76:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -54556,7 +54338,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":74,"./node":76,"./reporter":77}],76:[function(require,module,exports){ +},{"./buffer":75,"./node":77,"./reporter":78}],77:[function(require,module,exports){ var Reporter = require('../base').Reporter; var EncoderBuffer = require('../base').EncoderBuffer; var DecoderBuffer = require('../base').DecoderBuffer; @@ -54622,7 +54404,7 @@ module.exports = Node; var stateProps = [ 'enc', 'parent', 'children', 'tag', 'args', 'reverseArgs', 'choice', 'optional', 'any', 'obj', 'use', 'alteredUse', 'key', 'default', 'explicit', - 'implicit', 'contains' + 'implicit' ]; Node.prototype.clone = function clone() { @@ -54827,17 +54609,17 @@ Node.prototype.contains = function contains(item) { // Decoding // -Node.prototype._decode = function decode(input, options) { +Node.prototype._decode = function decode(input) { var state = this._baseState; // Decode root node if (state.parent === null) - return input.wrapResult(state.children[0]._decode(input, options)); + return input.wrapResult(state.children[0]._decode(input)); var result = state['default']; var present = true; - var prevKey = null; + var prevKey; if (state.key !== null) prevKey = input.enterKey(state.key); @@ -54856,9 +54638,9 @@ Node.prototype._decode = function decode(input, options) { var save = input.save(); try { if (state.choice === null) - this._decodeGeneric(state.tag, input, options); + this._decodeGeneric(state.tag, input); else - this._decodeChoice(input, options); + this._decodeChoice(input); present = true; } catch (e) { present = false; @@ -54886,8 +54668,6 @@ Node.prototype._decode = function decode(input, options) { input = explicit; } - var start = input.offset; - // Unwrap implicit and normal values if (state.use === null && state.choice === null) { if (state.any) @@ -54906,19 +54686,13 @@ Node.prototype._decode = function decode(input, options) { input = body; } - if (options && options.track && state.tag !== null) - options.track(input.path(), start, input.length, 'tagged'); - - if (options && options.track && state.tag !== null) - options.track(input.path(), input.offset, input.length, 'content'); - // Select proper method for tag if (state.any) result = result; else if (state.choice === null) - result = this._decodeGeneric(state.tag, input, options); + result = this._decodeGeneric(state.tag, input); else - result = this._decodeChoice(input, options); + result = this._decodeChoice(input); if (input.isError(result)) return result; @@ -54928,15 +54702,14 @@ Node.prototype._decode = function decode(input, options) { state.children.forEach(function decodeChildren(child) { // NOTE: We are ignoring errors here, to let parser continue with other // parts of encoded data - child._decode(input, options); + child._decode(input); }); } // Decode contained/encoded by schema, only in bit or octet strings if (state.contains && (state.tag === 'octstr' || state.tag === 'bitstr')) { var data = new DecoderBuffer(result); - result = this._getUse(state.contains, input._reporterState.obj) - ._decode(data, options); + result = this._getUse(state.contains, input._reporterState.obj)._decode(data); } } @@ -54947,40 +54720,35 @@ Node.prototype._decode = function decode(input, options) { // Set key if (state.key !== null && (result !== null || present === true)) input.leaveKey(prevKey, state.key, result); - else if (prevKey !== null) - input.exitKey(prevKey); return result; }; -Node.prototype._decodeGeneric = function decodeGeneric(tag, input, options) { +Node.prototype._decodeGeneric = function decodeGeneric(tag, input) { var state = this._baseState; if (tag === 'seq' || tag === 'set') return null; if (tag === 'seqof' || tag === 'setof') - return this._decodeList(input, tag, state.args[0], options); + return this._decodeList(input, tag, state.args[0]); else if (/str$/.test(tag)) - return this._decodeStr(input, tag, options); + return this._decodeStr(input, tag); else if (tag === 'objid' && state.args) - return this._decodeObjid(input, state.args[0], state.args[1], options); + return this._decodeObjid(input, state.args[0], state.args[1]); else if (tag === 'objid') - return this._decodeObjid(input, null, null, options); + return this._decodeObjid(input, null, null); else if (tag === 'gentime' || tag === 'utctime') - return this._decodeTime(input, tag, options); + return this._decodeTime(input, tag); else if (tag === 'null_') - return this._decodeNull(input, options); + return this._decodeNull(input); else if (tag === 'bool') - return this._decodeBool(input, options); + return this._decodeBool(input); else if (tag === 'int' || tag === 'enum') - return this._decodeInt(input, state.args && state.args[0], options); - - if (state.use !== null) { - return this._getUse(state.use, input._reporterState.obj) - ._decode(input, options); - } else { + return this._decodeInt(input, state.args && state.args[0]); + else if (state.use !== null) + return this._getUse(state.use, input._reporterState.obj)._decode(input); + else return input.error('unknown tag: ' + tag); - } }; Node.prototype._getUse = function _getUse(entity, obj) { @@ -54997,7 +54765,7 @@ Node.prototype._getUse = function _getUse(entity, obj) { return state.useDecoder; }; -Node.prototype._decodeChoice = function decodeChoice(input, options) { +Node.prototype._decodeChoice = function decodeChoice(input) { var state = this._baseState; var result = null; var match = false; @@ -55006,7 +54774,7 @@ Node.prototype._decodeChoice = function decodeChoice(input, options) { var save = input.save(); var node = state.choice[key]; try { - var value = node._decode(input, options); + var value = node._decode(input); if (input.isError(value)) return false; @@ -55187,7 +54955,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":75,"minimalistic-assert":472}],77:[function(require,module,exports){ +},{"../base":76,"minimalistic-assert":474}],78:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -55221,24 +54989,14 @@ Reporter.prototype.enterKey = function enterKey(key) { return this._reporterState.path.push(key); }; -Reporter.prototype.exitKey = function exitKey(index) { - var state = this._reporterState; - - state.path = state.path.slice(0, index - 1); -}; - Reporter.prototype.leaveKey = function leaveKey(index, key, value) { var state = this._reporterState; - this.exitKey(index); + state.path = state.path.slice(0, index - 1); if (state.obj !== null) state.obj[key] = value; }; -Reporter.prototype.path = function path() { - return this._reporterState.path.join('/'); -}; - Reporter.prototype.enterObject = function enterObject() { var state = this._reporterState; @@ -55310,7 +55068,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":465}],78:[function(require,module,exports){ +},{"inherits":467}],79:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -55354,7 +55112,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":79}],79:[function(require,module,exports){ +},{"../constants":80}],80:[function(require,module,exports){ var constants = exports; // Helper @@ -55375,7 +55133,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":78}],80:[function(require,module,exports){ +},{"./der":79}],81:[function(require,module,exports){ var inherits = require('inherits'); var asn1 = require('../../asn1'); @@ -55486,15 +55244,14 @@ DERNode.prototype._skipUntilEnd = function skipUntilEnd(buffer, fail) { } }; -DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder, - options) { +DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder) { var result = []; while (!buffer.isEmpty()) { var possibleEnd = this._peekTag(buffer, 'end'); if (buffer.isError(possibleEnd)) return possibleEnd; - var res = decoder.decode(buffer, 'der', options); + var res = decoder.decode(buffer, 'der'); if (buffer.isError(res) && possibleEnd) break; result.push(res); @@ -55699,13 +55456,13 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":72,"inherits":465}],81:[function(require,module,exports){ +},{"../../asn1":73,"inherits":467}],82:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":80,"./pem":82}],82:[function(require,module,exports){ +},{"./der":81,"./pem":83}],83:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -55756,7 +55513,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":80,"buffer":121,"inherits":465}],83:[function(require,module,exports){ +},{"./der":81,"buffer":122,"inherits":467}],84:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -56051,13 +55808,13 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":72,"buffer":121,"inherits":465}],84:[function(require,module,exports){ +},{"../../asn1":73,"buffer":122,"inherits":467}],85:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":83,"./pem":85}],85:[function(require,module,exports){ +},{"./der":84,"./pem":86}],86:[function(require,module,exports){ var inherits = require('inherits'); var DEREncoder = require('./der'); @@ -56080,7 +55837,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":83,"inherits":465}],86:[function(require,module,exports){ +},{"./der":84,"inherits":467}],87:[function(require,module,exports){ // http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8! @@ -56441,7 +56198,7 @@ var objectKeys = Object.keys || function (obj) { return keys; }; -},{"util/":518}],87:[function(require,module,exports){ +},{"util/":520}],88:[function(require,module,exports){ (function (global){ "use strict"; @@ -56476,7 +56233,7 @@ define(String.prototype, "padRight", "".padEnd); [][key] && define(Array, key, Function.call.bind([][key])); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":123,"core-js/shim":416,"regenerator-runtime/runtime":497}],88:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":124,"core-js/shim":418,"regenerator-runtime/runtime":499}],89:[function(require,module,exports){ 'use strict' exports.toByteArray = toByteArray @@ -56587,14 +56344,14 @@ function fromByteArray (uint8) { return parts.join('') } -},{}],89:[function(require,module,exports){ -/*! bignumber.js v2.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ +},{}],90:[function(require,module,exports){ +/*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ ;(function (globalObj) { 'use strict'; /* - bignumber.js v2.4.0 + bignumber.js v2.3.0 A JavaScript library for arbitrary-precision arithmetic. https://github.com/MikeMcl/bignumber.js Copyright (c) 2016 Michael Mclaughlin @@ -56602,7 +56359,7 @@ function fromByteArray (uint8) { */ - var BigNumber, cryptoObj, parseNumeric, + var cryptoObj, parseNumeric, isNumeric = /^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, mathceil = Math.ceil, mathfloor = Math.floor, @@ -59304,17 +59061,13 @@ function fromByteArray (uint8) { // EXPORT - BigNumber = constructorFactory(); - BigNumber.default = BigNumber.BigNumber = BigNumber; - - - // AMD. + // AMD. if ( typeof define == 'function' && define.amd ) { - define( function () { return BigNumber; } ); + define( function () { return constructorFactory(); } ); // Node.js and other environments that support module.exports. } else if ( typeof module != 'undefined' && module.exports ) { - module.exports = BigNumber; + module.exports = constructorFactory(); // Split string stops browserify adding crypto shim. if ( !cryptoObj ) try { cryptoObj = require('cry' + 'pto'); } catch (e) {} @@ -59322,11 +59075,11 @@ function fromByteArray (uint8) { // Browser. } else { if ( !globalObj ) globalObj = typeof self != 'undefined' ? self : Function('return this')(); - globalObj.BigNumber = BigNumber; + globalObj.BigNumber = constructorFactory(); } })(this); -},{}],90:[function(require,module,exports){ +},{}],91:[function(require,module,exports){ (function (Buffer){ // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] @@ -59441,7 +59194,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],91:[function(require,module,exports){ +},{"buffer":122}],92:[function(require,module,exports){ (function (module, exports) { 'use strict'; @@ -59499,12 +59252,8 @@ module.exports = { } BN.isBN = function isBN (num) { - if (num instanceof BN) { - return true; - } - return num !== null && typeof num === 'object' && - num.constructor.wordSize === BN.wordSize && Array.isArray(num.words); + num.constructor.name === 'BN' && Array.isArray(num.words); }; BN.max = function max (left, right) { @@ -61545,10 +61294,6 @@ module.exports = { assert(this.negative === 0, 'imaskn works only with positive numbers'); - if (this.length <= s) { - return this; - } - if (r !== 0) { s++; } @@ -62870,7 +62615,7 @@ module.exports = { }; })(typeof module === 'undefined' || module, this); -},{}],92:[function(require,module,exports){ +},{}],93:[function(require,module,exports){ var r; module.exports = function rand(len) { @@ -62929,9 +62674,9 @@ if (typeof window === 'object') { } } -},{}],93:[function(require,module,exports){ - },{}],94:[function(require,module,exports){ + +},{}],95:[function(require,module,exports){ (function (Buffer){ // based on the aes implimentation in triple sec // https://github.com/keybase/triplesec @@ -63112,7 +62857,7 @@ AES.prototype._doCryptBlock = function (M, keySchedule, SUB_MIX, SBOX) { exports.AES = AES }).call(this,require("buffer").Buffer) -},{"buffer":121}],95:[function(require,module,exports){ +},{"buffer":122}],96:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63213,7 +62958,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"./ghash":99,"buffer":121,"buffer-xor":120,"cipher-base":122,"inherits":465}],96:[function(require,module,exports){ +},{"./aes":95,"./ghash":100,"buffer":122,"buffer-xor":121,"cipher-base":123,"inherits":467}],97:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -63226,7 +62971,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"./decrypter":97,"./encrypter":98,"./modes":100}],97:[function(require,module,exports){ +},{"./decrypter":98,"./encrypter":99,"./modes":101}],98:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63367,7 +63112,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],98:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],99:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63493,7 +63238,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],99:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],100:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -63595,7 +63340,7 @@ function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],100:[function(require,module,exports){ +},{"buffer":122}],101:[function(require,module,exports){ exports['aes-128-ecb'] = { cipher: 'AES', key: 128, @@ -63768,7 +63513,7 @@ exports['aes-256-gcm'] = { type: 'auth' } -},{}],101:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ var xor = require('buffer-xor') exports.encrypt = function (self, block) { @@ -63787,7 +63532,7 @@ exports.decrypt = function (self, block) { return xor(out, pad) } -},{"buffer-xor":120}],102:[function(require,module,exports){ +},{"buffer-xor":121}],103:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63822,7 +63567,7 @@ function encryptStart (self, data, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],103:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],104:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad @@ -63860,7 +63605,7 @@ function shiftIn (buffer, value) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],104:[function(require,module,exports){ +},{"buffer":122}],105:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad = self._cipher.encryptBlock(self._prev) @@ -63879,7 +63624,7 @@ exports.encrypt = function (self, chunk, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],105:[function(require,module,exports){ +},{"buffer":122}],106:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63914,7 +63659,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],106:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],107:[function(require,module,exports){ exports.encrypt = function (self, block) { return self._cipher.encryptBlock(block) } @@ -63922,7 +63667,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block) } -},{}],107:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63942,7 +63687,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],108:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],109:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63971,7 +63716,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"buffer":121,"cipher-base":122,"inherits":465}],109:[function(require,module,exports){ +},{"./aes":95,"buffer":122,"cipher-base":123,"inherits":467}],110:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -64046,7 +63791,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"browserify-aes/browser":96,"browserify-aes/modes":100,"browserify-des":110,"browserify-des/modes":111,"evp_bytestokey":456}],110:[function(require,module,exports){ +},{"browserify-aes/browser":97,"browserify-aes/modes":101,"browserify-des":111,"browserify-des/modes":112,"evp_bytestokey":458}],111:[function(require,module,exports){ (function (Buffer){ var CipherBase = require('cipher-base') var des = require('des.js') @@ -64093,7 +63838,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"cipher-base":122,"des.js":424,"inherits":465}],111:[function(require,module,exports){ +},{"buffer":122,"cipher-base":123,"des.js":426,"inherits":467}],112:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -64119,7 +63864,7 @@ exports['des-ede'] = { iv: 0 } -},{}],112:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); var randomBytes = require('randombytes'); @@ -64163,7 +63908,7 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":91,"buffer":121,"randombytes":486}],113:[function(require,module,exports){ +},{"bn.js":92,"buffer":122,"randombytes":488}],114:[function(require,module,exports){ (function (Buffer){ const Sha3 = require('js-sha3') @@ -64201,7 +63946,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"js-sha3":468}],114:[function(require,module,exports){ +},{"buffer":122,"js-sha3":470}],115:[function(require,module,exports){ (function (Buffer){ 'use strict' exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { @@ -64277,7 +64022,7 @@ exports['RSA-MD5'] = exports.md5WithRSAEncryption = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],115:[function(require,module,exports){ +},{"buffer":122}],116:[function(require,module,exports){ (function (Buffer){ var _algos = require('./algos') var createHash = require('create-hash') @@ -64384,7 +64129,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":114,"./sign":117,"./verify":118,"buffer":121,"create-hash":419,"inherits":465,"stream":514}],116:[function(require,module,exports){ +},{"./algos":115,"./sign":118,"./verify":119,"buffer":122,"create-hash":421,"inherits":467,"stream":516}],117:[function(require,module,exports){ 'use strict' exports['1.3.132.0.10'] = 'secp256k1' @@ -64398,7 +64143,7 @@ exports['1.3.132.0.34'] = 'p384' exports['1.3.132.0.35'] = 'p521' -},{}],117:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') @@ -64587,7 +64332,7 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"browserify-rsa":112,"buffer":121,"create-hmac":422,"elliptic":434,"parse-asn1":476}],118:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"browserify-rsa":113,"buffer":122,"create-hmac":424,"elliptic":436,"parse-asn1":478}],119:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var curves = require('./curves') @@ -64694,7 +64439,7 @@ function checkValue (b, q) { module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"buffer":121,"elliptic":434,"parse-asn1":476}],119:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"buffer":122,"elliptic":436,"parse-asn1":478}],120:[function(require,module,exports){ (function (global){ 'use strict'; @@ -64806,7 +64551,7 @@ exports.allocUnsafeSlow = function allocUnsafeSlow(size) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":121}],120:[function(require,module,exports){ +},{"buffer":122}],121:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -64820,7 +64565,7 @@ module.exports = function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],121:[function(require,module,exports){ +},{"buffer":122}],122:[function(require,module,exports){ (function (global){ /*! * The buffer module from node.js, for the browser. @@ -64876,7 +64621,7 @@ exports.kMaxLength = kMaxLength() function typedArraySupport () { try { var arr = new Uint8Array(1) - arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }} + arr.foo = function () { return 42 } return arr.foo() === 42 && // typed array instances can be augmented typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` @@ -65020,7 +64765,7 @@ function allocUnsafe (that, size) { assertSize(size) that = createBuffer(that, size < 0 ? 0 : checked(size) | 0) if (!Buffer.TYPED_ARRAY_SUPPORT) { - for (var i = 0; i < size; ++i) { + for (var i = 0; i < size; i++) { that[i] = 0 } } @@ -65076,9 +64821,7 @@ function fromArrayBuffer (that, array, byteOffset, length) { throw new RangeError('\'length\' is out of bounds') } - if (byteOffset === undefined && length === undefined) { - array = new Uint8Array(array) - } else if (length === undefined) { + if (length === undefined) { array = new Uint8Array(array, byteOffset) } else { array = new Uint8Array(array, byteOffset, length) @@ -65200,14 +64943,14 @@ Buffer.concat = function concat (list, length) { var i if (length === undefined) { length = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { length += list[i].length } } var buffer = Buffer.allocUnsafe(length) var pos = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { var buf = list[i] if (!Buffer.isBuffer(buf)) { throw new TypeError('"list" argument must be an Array of Buffers') @@ -65239,6 +64982,7 @@ function byteLength (string, encoding) { switch (encoding) { case 'ascii': case 'binary': + // Deprecated case 'raw': case 'raws': return len @@ -65476,16 +65220,15 @@ function arrayIndexOf (arr, val, byteOffset, encoding) { } var foundIndex = -1 - for (var i = byteOffset; i < arrLength; ++i) { - if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + for (var i = 0; byteOffset + i < arrLength; i++) { + if (read(arr, byteOffset + i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { if (foundIndex === -1) foundIndex = i - if (i - foundIndex + 1 === valLength) return foundIndex * indexSize + if (i - foundIndex + 1 === valLength) return (byteOffset + foundIndex) * indexSize } else { if (foundIndex !== -1) i -= i - foundIndex foundIndex = -1 } } - return -1 } @@ -65550,7 +65293,7 @@ function hexWrite (buf, string, offset, length) { if (length > strLen / 2) { length = strLen / 2 } - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { var parsed = parseInt(string.substr(i * 2, 2), 16) if (isNaN(parsed)) return i buf[offset + i] = parsed @@ -65764,7 +65507,7 @@ function asciiSlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i] & 0x7F) } return ret @@ -65774,7 +65517,7 @@ function binarySlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i]) } return ret @@ -65787,7 +65530,7 @@ function hexSlice (buf, start, end) { if (!end || end < 0 || end > len) end = len var out = '' - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { out += toHex(buf[i]) } return out @@ -65830,7 +65573,7 @@ Buffer.prototype.slice = function slice (start, end) { } else { var sliceLen = end - start newBuf = new Buffer(sliceLen, undefined) - for (var i = 0; i < sliceLen; ++i) { + for (var i = 0; i < sliceLen; i++) { newBuf[i] = this[i + start] } } @@ -66057,7 +65800,7 @@ Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { function objectWriteUInt16 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> (littleEndian ? i : 1 - i) * 8 } @@ -66091,7 +65834,7 @@ Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert function objectWriteUInt32 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffffffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff } } @@ -66306,12 +66049,12 @@ Buffer.prototype.copy = function copy (target, targetStart, start, end) { if (this === target && start < targetStart && targetStart < end) { // descending copy from end - for (i = len - 1; i >= 0; --i) { + for (i = len - 1; i >= 0; i--) { target[i + targetStart] = this[i + start] } } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { // ascending copy from start - for (i = 0; i < len; ++i) { + for (i = 0; i < len; i++) { target[i + targetStart] = this[i + start] } } else { @@ -66372,7 +66115,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { var i if (typeof val === 'number') { - for (i = start; i < end; ++i) { + for (i = start; i < end; i++) { this[i] = val } } else { @@ -66380,7 +66123,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { ? val : utf8ToBytes(new Buffer(val, encoding).toString()) var len = bytes.length - for (i = 0; i < end - start; ++i) { + for (i = 0; i < end - start; i++) { this[i + start] = bytes[i % len] } } @@ -66422,7 +66165,7 @@ function utf8ToBytes (string, units) { var leadSurrogate = null var bytes = [] - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { codePoint = string.charCodeAt(i) // is surrogate component @@ -66497,7 +66240,7 @@ function utf8ToBytes (string, units) { function asciiToBytes (str) { var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { // Node's code seems to be doing this and not & 0x7F.. byteArray.push(str.charCodeAt(i) & 0xFF) } @@ -66507,7 +66250,7 @@ function asciiToBytes (str) { function utf16leToBytes (str, units) { var c, hi, lo var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { if ((units -= 2) < 0) break c = str.charCodeAt(i) @@ -66525,7 +66268,7 @@ function base64ToBytes (str) { } function blitBuffer (src, dst, offset, length) { - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { if ((i + offset >= dst.length) || (i >= src.length)) break dst[i + offset] = src[i] } @@ -66537,7 +66280,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":88,"ieee754":463,"isarray":467}],122:[function(require,module,exports){ +},{"base64-js":89,"ieee754":465,"isarray":469}],123:[function(require,module,exports){ (function (Buffer){ var Transform = require('stream').Transform var inherits = require('inherits') @@ -66631,21 +66374,21 @@ CipherBase.prototype._toString = function (value, enc, final) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"inherits":465,"stream":514,"string_decoder":515}],123:[function(require,module,exports){ +},{"buffer":122,"inherits":467,"stream":516,"string_decoder":517}],124:[function(require,module,exports){ require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":144,"../../modules/core.regexp.escape":240}],124:[function(require,module,exports){ +},{"../../modules/_core":145,"../../modules/core.regexp.escape":242}],125:[function(require,module,exports){ module.exports = function(it){ if(typeof it != 'function')throw TypeError(it + ' is not a function!'); return it; }; -},{}],125:[function(require,module,exports){ -var cof = require('./_cof'); -module.exports = function(it, msg){ - if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); - return +it; +},{}],126:[function(require,module,exports){ +var cof = require('./_cof'); +module.exports = function(it, msg){ + if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); + return +it; }; -},{"./_cof":139}],126:[function(require,module,exports){ +},{"./_cof":140}],127:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables') , ArrayProto = Array.prototype; @@ -66653,19 +66396,19 @@ if(ArrayProto[UNSCOPABLES] == undefined)require('./_hide')(ArrayProto, UNSCOPABL module.exports = function(key){ ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":161,"./_wks":238}],127:[function(require,module,exports){ +},{"./_hide":162,"./_wks":239}],128:[function(require,module,exports){ module.exports = function(it, Constructor, name, forbiddenField){ if(!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)){ throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],128:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function(it){ if(!isObject(it))throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":170}],129:[function(require,module,exports){ +},{"./_is-object":171}],130:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66692,7 +66435,7 @@ module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, from += inc; } return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],130:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],131:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66708,7 +66451,7 @@ module.exports = function fill(value /*, start = 0, end = @length */){ while(endPos > index)O[index++] = value; return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],131:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],132:[function(require,module,exports){ var forOf = require('./_for-of'); module.exports = function(iter, ITERATOR){ @@ -66717,7 +66460,7 @@ module.exports = function(iter, ITERATOR){ return result; }; -},{"./_for-of":158}],132:[function(require,module,exports){ +},{"./_for-of":159}],133:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject') @@ -66739,7 +66482,7 @@ module.exports = function(IS_INCLUDES){ } return !IS_INCLUDES && -1; }; }; -},{"./_to-index":226,"./_to-iobject":228,"./_to-length":229}],133:[function(require,module,exports){ +},{"./_to-index":227,"./_to-iobject":229,"./_to-length":230}],134:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -66784,60 +66527,60 @@ module.exports = function(TYPE, $create){ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result; }; }; -},{"./_array-species-create":136,"./_ctx":146,"./_iobject":166,"./_to-length":229,"./_to-object":230}],134:[function(require,module,exports){ -var aFunction = require('./_a-function') - , toObject = require('./_to-object') - , IObject = require('./_iobject') - , toLength = require('./_to-length'); - -module.exports = function(that, callbackfn, aLen, memo, isRight){ - aFunction(callbackfn); - var O = toObject(that) - , self = IObject(O) - , length = toLength(O.length) - , index = isRight ? length - 1 : 0 - , i = isRight ? -1 : 1; - if(aLen < 2)for(;;){ - if(index in self){ - memo = self[index]; - index += i; - break; - } - index += i; - if(isRight ? index < 0 : length <= index){ - throw TypeError('Reduce of empty array with no initial value'); - } - } - for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ - memo = callbackfn(memo, self[index], index, O); - } - return memo; +},{"./_array-species-create":137,"./_ctx":147,"./_iobject":167,"./_to-length":230,"./_to-object":231}],135:[function(require,module,exports){ +var aFunction = require('./_a-function') + , toObject = require('./_to-object') + , IObject = require('./_iobject') + , toLength = require('./_to-length'); + +module.exports = function(that, callbackfn, aLen, memo, isRight){ + aFunction(callbackfn); + var O = toObject(that) + , self = IObject(O) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(aLen < 2)for(;;){ + if(index in self){ + memo = self[index]; + index += i; + break; + } + index += i; + if(isRight ? index < 0 : length <= index){ + throw TypeError('Reduce of empty array with no initial value'); + } + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ + memo = callbackfn(memo, self[index], index, O); + } + return memo; +}; +},{"./_a-function":125,"./_iobject":167,"./_to-length":230,"./_to-object":231}],136:[function(require,module,exports){ +var isObject = require('./_is-object') + , isArray = require('./_is-array') + , SPECIES = require('./_wks')('species'); + +module.exports = function(original){ + var C; + if(isArray(original)){ + C = original.constructor; + // cross-realm fallback + if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; + if(isObject(C)){ + C = C[SPECIES]; + if(C === null)C = undefined; + } + } return C === undefined ? Array : C; }; -},{"./_a-function":124,"./_iobject":166,"./_to-length":229,"./_to-object":230}],135:[function(require,module,exports){ -var isObject = require('./_is-object') - , isArray = require('./_is-array') - , SPECIES = require('./_wks')('species'); - -module.exports = function(original){ - var C; - if(isArray(original)){ - C = original.constructor; - // cross-realm fallback - if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; - if(isObject(C)){ - C = C[SPECIES]; - if(C === null)C = undefined; - } - } return C === undefined ? Array : C; -}; -},{"./_is-array":168,"./_is-object":170,"./_wks":238}],136:[function(require,module,exports){ +},{"./_is-array":169,"./_is-object":171,"./_wks":239}],137:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); module.exports = function(original, length){ return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":135}],137:[function(require,module,exports){ +},{"./_array-species-constructor":136}],138:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function') , isObject = require('./_is-object') @@ -66862,7 +66605,7 @@ module.exports = Function.bind || function bind(that /*, args... */){ if(isObject(fn.prototype))bound.prototype = fn.prototype; return bound; }; -},{"./_a-function":124,"./_invoke":165,"./_is-object":170}],138:[function(require,module,exports){ +},{"./_a-function":125,"./_invoke":166,"./_is-object":171}],139:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof') , TAG = require('./_wks')('toStringTag') @@ -66886,16 +66629,17 @@ module.exports = function(it){ // ES3 arguments fallback : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":139,"./_wks":238}],139:[function(require,module,exports){ +},{"./_cof":140,"./_wks":239}],140:[function(require,module,exports){ var toString = {}.toString; module.exports = function(it){ return toString.call(it).slice(8, -1); }; -},{}],140:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f , create = require('./_object-create') + , hide = require('./_hide') , redefineAll = require('./_redefine-all') , ctx = require('./_ctx') , anInstance = require('./_an-instance') @@ -67035,7 +66779,7 @@ module.exports = { setSpecies(NAME); } }; -},{"./_an-instance":127,"./_ctx":146,"./_defined":148,"./_descriptors":149,"./_for-of":158,"./_iter-define":174,"./_iter-step":176,"./_meta":183,"./_object-create":187,"./_object-dp":188,"./_redefine-all":207,"./_set-species":212}],141:[function(require,module,exports){ +},{"./_an-instance":128,"./_ctx":147,"./_defined":149,"./_descriptors":150,"./_for-of":159,"./_hide":162,"./_iter-define":175,"./_iter-step":177,"./_meta":184,"./_object-create":188,"./_object-dp":189,"./_redefine-all":208,"./_set-species":213}],142:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var classof = require('./_classof') , from = require('./_array-from-iterable'); @@ -67045,7 +66789,7 @@ module.exports = function(NAME){ return from(this); }; }; -},{"./_array-from-iterable":131,"./_classof":138}],142:[function(require,module,exports){ +},{"./_array-from-iterable":132,"./_classof":139}],143:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all') , getWeak = require('./_meta').getWeak @@ -67129,7 +66873,7 @@ module.exports = { }, ufstore: uncaughtFrozenStore }; -},{"./_an-instance":127,"./_an-object":128,"./_array-methods":133,"./_for-of":158,"./_has":160,"./_is-object":170,"./_meta":183,"./_redefine-all":207}],143:[function(require,module,exports){ +},{"./_an-instance":128,"./_an-object":129,"./_array-methods":134,"./_for-of":159,"./_has":161,"./_is-object":171,"./_meta":184,"./_redefine-all":208}],144:[function(require,module,exports){ 'use strict'; var global = require('./_global') , $export = require('./_export') @@ -67215,19 +66959,19 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){ return C; }; -},{"./_an-instance":127,"./_export":153,"./_fails":155,"./_for-of":158,"./_global":159,"./_inherit-if-required":164,"./_is-object":170,"./_iter-detect":175,"./_meta":183,"./_redefine":208,"./_redefine-all":207,"./_set-to-string-tag":213}],144:[function(require,module,exports){ +},{"./_an-instance":128,"./_export":154,"./_fails":156,"./_for-of":159,"./_global":160,"./_inherit-if-required":165,"./_is-object":171,"./_iter-detect":176,"./_meta":184,"./_redefine":209,"./_redefine-all":208,"./_set-to-string-tag":214}],145:[function(require,module,exports){ var core = module.exports = {version: '2.4.0'}; if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef -},{}],145:[function(require,module,exports){ -'use strict'; -var $defineProperty = require('./_object-dp') - , createDesc = require('./_property-desc'); - -module.exports = function(object, index, value){ - if(index in object)$defineProperty.f(object, index, createDesc(0, value)); - else object[index] = value; +},{}],146:[function(require,module,exports){ +'use strict'; +var $defineProperty = require('./_object-dp') + , createDesc = require('./_property-desc'); + +module.exports = function(object, index, value){ + if(index in object)$defineProperty.f(object, index, createDesc(0, value)); + else object[index] = value; }; -},{"./_object-dp":188,"./_property-desc":206}],146:[function(require,module,exports){ +},{"./_object-dp":189,"./_property-desc":207}],147:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function(fn, that, length){ @@ -67248,28 +66992,28 @@ module.exports = function(fn, that, length){ return fn.apply(that, arguments); }; }; -},{"./_a-function":124}],147:[function(require,module,exports){ -'use strict'; -var anObject = require('./_an-object') - , toPrimitive = require('./_to-primitive') - , NUMBER = 'number'; - -module.exports = function(hint){ - if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); - return toPrimitive(anObject(this), hint != NUMBER); +},{"./_a-function":125}],148:[function(require,module,exports){ +'use strict'; +var anObject = require('./_an-object') + , toPrimitive = require('./_to-primitive') + , NUMBER = 'number'; + +module.exports = function(hint){ + if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); + return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":128,"./_to-primitive":231}],148:[function(require,module,exports){ +},{"./_an-object":129,"./_to-primitive":232}],149:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function(it){ if(it == undefined)throw TypeError("Can't call method on " + it); return it; }; -},{}],149:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function(){ return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_fails":155}],150:[function(require,module,exports){ +},{"./_fails":156}],151:[function(require,module,exports){ var isObject = require('./_is-object') , document = require('./_global').document // in old IE typeof document.createElement is 'object' @@ -67277,12 +67021,12 @@ var isObject = require('./_is-object') module.exports = function(it){ return is ? document.createElement(it) : {}; }; -},{"./_global":159,"./_is-object":170}],151:[function(require,module,exports){ -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' +},{"./_global":160,"./_is-object":171}],152:[function(require,module,exports){ +// IE 8- don't enum bug keys +module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],152:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys') , gOPS = require('./_object-gops') @@ -67298,7 +67042,7 @@ module.exports = function(it){ while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key); } return result; }; -},{"./_object-gops":194,"./_object-keys":197,"./_object-pie":198}],153:[function(require,module,exports){ +},{"./_object-gops":195,"./_object-keys":198,"./_object-pie":199}],154:[function(require,module,exports){ var global = require('./_global') , core = require('./_core') , hide = require('./_hide') @@ -67342,7 +67086,7 @@ $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":144,"./_ctx":146,"./_global":159,"./_hide":161,"./_redefine":208}],154:[function(require,module,exports){ +},{"./_core":145,"./_ctx":147,"./_global":160,"./_hide":162,"./_redefine":209}],155:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function(KEY){ var re = /./; @@ -67355,7 +67099,7 @@ module.exports = function(KEY){ } catch(f){ /* empty */ } } return true; }; -},{"./_wks":238}],155:[function(require,module,exports){ +},{"./_wks":239}],156:[function(require,module,exports){ module.exports = function(exec){ try { return !!exec(); @@ -67363,7 +67107,7 @@ module.exports = function(exec){ return true; } }; -},{}],156:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ 'use strict'; var hide = require('./_hide') , redefine = require('./_redefine') @@ -67392,7 +67136,7 @@ module.exports = function(KEY, length, exec){ ); } }; -},{"./_defined":148,"./_fails":155,"./_hide":161,"./_redefine":208,"./_wks":238}],157:[function(require,module,exports){ +},{"./_defined":149,"./_fails":156,"./_hide":162,"./_redefine":209,"./_wks":239}],158:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -67406,7 +67150,7 @@ module.exports = function(){ if(that.sticky) result += 'y'; return result; }; -},{"./_an-object":128}],158:[function(require,module,exports){ +},{"./_an-object":129}],159:[function(require,module,exports){ var ctx = require('./_ctx') , call = require('./_iter-call') , isArrayIter = require('./_is-array-iter') @@ -67432,17 +67176,17 @@ var exports = module.exports = function(iterable, entries, fn, that, ITERATOR){ }; exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":128,"./_ctx":146,"./_is-array-iter":167,"./_iter-call":172,"./_to-length":229,"./core.get-iterator-method":239}],159:[function(require,module,exports){ +},{"./_an-object":129,"./_ctx":147,"./_is-array-iter":168,"./_iter-call":173,"./_to-length":230,"./core.get-iterator-method":240}],160:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef -},{}],160:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function(it, key){ return hasOwnProperty.call(it, key); }; -},{}],161:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ var dP = require('./_object-dp') , createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function(object, key, value){ @@ -67451,22 +67195,22 @@ module.exports = require('./_descriptors') ? function(object, key, value){ object[key] = value; return object; }; -},{"./_descriptors":149,"./_object-dp":188,"./_property-desc":206}],162:[function(require,module,exports){ +},{"./_descriptors":150,"./_object-dp":189,"./_property-desc":207}],163:[function(require,module,exports){ module.exports = require('./_global').document && document.documentElement; -},{"./_global":159}],163:[function(require,module,exports){ -module.exports = !require('./_descriptors') && !require('./_fails')(function(){ - return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; +},{"./_global":160}],164:[function(require,module,exports){ +module.exports = !require('./_descriptors') && !require('./_fails')(function(){ + return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_descriptors":149,"./_dom-create":150,"./_fails":155}],164:[function(require,module,exports){ -var isObject = require('./_is-object') - , setPrototypeOf = require('./_set-proto').set; -module.exports = function(that, target, C){ - var P, S = target.constructor; - if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ - setPrototypeOf(that, P); - } return that; -}; -},{"./_is-object":170,"./_set-proto":211}],165:[function(require,module,exports){ +},{"./_descriptors":150,"./_dom-create":151,"./_fails":156}],165:[function(require,module,exports){ +var isObject = require('./_is-object') + , setPrototypeOf = require('./_set-proto').set; +module.exports = function(that, target, C){ + var P, S = target.constructor; + if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ + setPrototypeOf(that, P); + } return that; +}; +},{"./_is-object":171,"./_set-proto":212}],166:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function(fn, args, that){ var un = that === undefined; @@ -67483,13 +67227,13 @@ module.exports = function(fn, args, that){ : fn.call(that, args[0], args[1], args[2], args[3]); } return fn.apply(that, args); }; -},{}],166:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":139}],167:[function(require,module,exports){ +},{"./_cof":140}],168:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators') , ITERATOR = require('./_wks')('iterator') @@ -67498,24 +67242,24 @@ var Iterators = require('./_iterators') module.exports = function(it){ return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":177,"./_wks":238}],168:[function(require,module,exports){ +},{"./_iterators":178,"./_wks":239}],169:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg){ return cof(arg) == 'Array'; }; -},{"./_cof":139}],169:[function(require,module,exports){ +},{"./_cof":140}],170:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object') , floor = Math.floor; module.exports = function isInteger(it){ return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":170}],170:[function(require,module,exports){ +},{"./_is-object":171}],171:[function(require,module,exports){ module.exports = function(it){ return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],171:[function(require,module,exports){ +},{}],172:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object') , cof = require('./_cof') @@ -67524,7 +67268,7 @@ module.exports = function(it){ var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":139,"./_is-object":170,"./_wks":238}],172:[function(require,module,exports){ +},{"./_cof":140,"./_is-object":171,"./_wks":239}],173:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function(iterator, fn, value, entries){ @@ -67537,7 +67281,7 @@ module.exports = function(iterator, fn, value, entries){ throw e; } }; -},{"./_an-object":128}],173:[function(require,module,exports){ +},{"./_an-object":129}],174:[function(require,module,exports){ 'use strict'; var create = require('./_object-create') , descriptor = require('./_property-desc') @@ -67551,7 +67295,7 @@ module.exports = function(Constructor, NAME, next){ Constructor.prototype = create(IteratorPrototype, {next: descriptor(1, next)}); setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":161,"./_object-create":187,"./_property-desc":206,"./_set-to-string-tag":213,"./_wks":238}],174:[function(require,module,exports){ +},{"./_hide":162,"./_object-create":188,"./_property-desc":207,"./_set-to-string-tag":214,"./_wks":239}],175:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library') , $export = require('./_export') @@ -67622,7 +67366,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED } return methods; }; -},{"./_export":153,"./_has":160,"./_hide":161,"./_iter-create":173,"./_iterators":177,"./_library":179,"./_object-gpo":195,"./_redefine":208,"./_set-to-string-tag":213,"./_wks":238}],175:[function(require,module,exports){ +},{"./_export":154,"./_has":161,"./_hide":162,"./_iter-create":174,"./_iterators":178,"./_library":180,"./_object-gpo":196,"./_redefine":209,"./_set-to-string-tag":214,"./_wks":239}],176:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator') , SAFE_CLOSING = false; @@ -67644,13 +67388,13 @@ module.exports = function(exec, skipClosing){ } catch(e){ /* empty */ } return safe; }; -},{"./_wks":238}],176:[function(require,module,exports){ +},{"./_wks":239}],177:[function(require,module,exports){ module.exports = function(done, value){ return {value: value, done: !!done}; }; -},{}],177:[function(require,module,exports){ -module.exports = {}; },{}],178:[function(require,module,exports){ +module.exports = {}; +},{}],179:[function(require,module,exports){ var getKeys = require('./_object-keys') , toIObject = require('./_to-iobject'); module.exports = function(object, el){ @@ -67661,9 +67405,9 @@ module.exports = function(object, el){ , key; while(length > index)if(O[key = keys[index++]] === el)return key; }; -},{"./_object-keys":197,"./_to-iobject":228}],179:[function(require,module,exports){ +},{"./_object-keys":198,"./_to-iobject":229}],180:[function(require,module,exports){ module.exports = false; -},{}],180:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -67674,17 +67418,17 @@ module.exports = (!$expm1 ) ? function expm1(x){ return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],181:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x){ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],182:[function(require,module,exports){ +},{}],183:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x){ return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],183:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ var META = require('./_uid')('meta') , isObject = require('./_is-object') , has = require('./_has') @@ -67738,7 +67482,7 @@ var meta = module.exports = { getWeak: getWeak, onFreeze: onFreeze }; -},{"./_fails":155,"./_has":160,"./_is-object":170,"./_object-dp":188,"./_uid":235}],184:[function(require,module,exports){ +},{"./_fails":156,"./_has":161,"./_is-object":171,"./_object-dp":189,"./_uid":236}],185:[function(require,module,exports){ var Map = require('./es6.map') , $export = require('./_export') , shared = require('./_shared')('metadata') @@ -67790,7 +67534,7 @@ module.exports = { key: toMetaKey, exp: exp }; -},{"./_export":153,"./_shared":215,"./es6.map":270,"./es6.weak-map":376}],185:[function(require,module,exports){ +},{"./_export":154,"./_shared":216,"./es6.map":272,"./es6.weak-map":378}],186:[function(require,module,exports){ var global = require('./_global') , macrotask = require('./_task').set , Observer = global.MutationObserver || global.WebKitMutationObserver @@ -67859,7 +67603,7 @@ module.exports = function(){ } last = task; }; }; -},{"./_cof":139,"./_global":159,"./_task":225}],186:[function(require,module,exports){ +},{"./_cof":140,"./_global":160,"./_task":226}],187:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys') @@ -67893,50 +67637,48 @@ module.exports = !$assign || require('./_fails')(function(){ while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key]; } return T; } : $assign; -},{"./_fails":155,"./_iobject":166,"./_object-gops":194,"./_object-keys":197,"./_object-pie":198,"./_to-object":230}],187:[function(require,module,exports){ -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = require('./_an-object') - , dPs = require('./_object-dps') - , enumBugKeys = require('./_enum-bug-keys') - , IE_PROTO = require('./_shared-key')('IE_PROTO') - , Empty = function(){ /* empty */ } - , PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function(){ - // Thrash, waste and sodomy: IE GC bug - var iframe = require('./_dom-create')('iframe') - , i = enumBugKeys.length - , lt = '<' - , gt = '>' - , iframeDocument; - iframe.style.display = 'none'; - require('./_html').appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while(i--)delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties){ - var result; - if(O !== null){ - Empty[PROTOTYPE] = anObject(O); - result = new Empty; - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - -},{"./_an-object":128,"./_dom-create":150,"./_enum-bug-keys":151,"./_html":162,"./_object-dps":189,"./_shared-key":214}],188:[function(require,module,exports){ +},{"./_fails":156,"./_iobject":167,"./_object-gops":195,"./_object-keys":198,"./_object-pie":199,"./_to-object":231}],188:[function(require,module,exports){ +// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) +var anObject = require('./_an-object') + , dPs = require('./_object-dps') + , enumBugKeys = require('./_enum-bug-keys') + , IE_PROTO = require('./_shared-key')('IE_PROTO') + , Empty = function(){ /* empty */ } + , PROTOTYPE = 'prototype'; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var createDict = function(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = require('./_dom-create')('iframe') + , i = enumBugKeys.length + , gt = '>' + , iframeDocument; + iframe.style.display = 'none'; + require('./_html').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write('"); -} -globalFuncs.getBlob = function(mime, str) { - var str = (typeof str === 'object') ? JSON.stringify(str) : str; - if (str == null) return ''; - var blob = new Blob([str], { - type: mime - }); - return window.URL.createObjectURL(blob); -} -globalFuncs.getSuccessText = function(str) { - return '

' + str + '

' -} -globalFuncs.getDangerText = function(str) { - return '

' + str + '

' -} -globalFuncs.errorMsgs = [ - "Please enter valid amount.", - "Your password must be at least 9 characters. Please ensure it is a strong password. ", - "Sorry! We don\'t recognize this type of wallet file. ", - "This is not a valid wallet file. ", - "This unit doesn\'t exists, please use the one of the following units ", - "Invalid address. ", - "Invalid password. ", - "Invalid amount. ", - "Invalid gas limit. ", - "Invalid data value. ", - "Invalid gas amount. ", - "Invalid nonce. ", - "Invalid signed transaction. ", - "A wallet with this nickname already exists. ", - "Wallet not found. ", - "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", - "A wallet with this address already exists in storage. Please check your wallets page. ", - "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", - "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", - "Invalid symbol"]; -globalFuncs.successMsgs = [ - "Valid address", - "Wallet successfully decrypted", - "Transaction submitted. TX ID: ", - "Your wallet was successfully added: ", - "You have successfully voted. Thank you for being an active participant in The DAO.", - "File Selected: "]; -globalFuncs.gethErrors = { - "Invalid sender": "GETH_InvalidSender", - "Nonce too low": "GETH_Nonce", - "Gas price too low for acceptance": "GETH_Cheap", - "Insufficient balance": "GETH_Balance", - "Account does not exist or account balance too low": "GETH_NonExistentAccount", - "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", - "Intrinsic gas too low": "GETH_IntrinsicGas", - "Exceeds block gas limit": "GETH_GasLimit", - "Negative value": "GETH_NegativeValue"}; -globalFuncs.gethErrorMsgs = {}; -globalFuncs.getGethMsg = function(str) { - if (str in this.gethErrors) { - var key = this.gethErrors[str]; - if (key in this.gethErrorMsgs) { - return this.gethErrorMsgs[key]; - } - } - return str; -} -globalFuncs.scrypt = { - n: 1024 -}; -globalFuncs.postDelay = 300; -globalFuncs.kdf = "scrypt"; -globalFuncs.defaultTxGasLimit = 21000; -globalFuncs.digixClaimTxGasLimit = 150000; -globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; -globalFuncs.isNumeric = function(n) { - return !isNaN(parseFloat(n)) && isFinite(n); -} -globalFuncs.urlGet = function(name) { - if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); -} -globalFuncs.stripTags = function(str) { - var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; - while (SCRIPT_REGEX.test(str)) { - str = str.replace(SCRIPT_REGEX, ""); - } - return str; -} -globalFuncs.checkAndRedirectHTTPS = function() { - var host = "myetherwallet.com"; - var githost = "kvhnuke.github.io"; - var githostw = "www.kvhnuke.github.io"; - var hostw = "www.myetherwallet.com"; - if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; -} -globalFuncs.isStrongPass = function(password) { - return password.length > 8; -} -globalFuncs.hexToAscii = function(hex) { - return hex.match(/.{1,2}/g).map(function(v) { - return String.fromCharCode(parseInt(v, 16)); - }).join(''); -} -globalFuncs.isAlphaNumeric = function(value){ - return !/[^a-zA-Z0-9]/.test(value); -} -module.exports = globalFuncs; +'use strict'; +var globalFuncs = function() {} +globalFuncs.getBlockie = function(address) { + return blockies.create({ + seed: address.toLowerCase(), + size: 8, + scale: 16 + }).toDataURL(); +} +globalFuncs.printPaperWallets = function(strJson) { + var win = window.open("about:blank", "_blank"); + var data = ""); +} +globalFuncs.getBlob = function(mime, str) { + var str = (typeof str === 'object') ? JSON.stringify(str) : str; + if (str == null) return ''; + var blob = new Blob([str], { + type: mime + }); + return window.URL.createObjectURL(blob); +} +globalFuncs.getSuccessText = function(str) { + return '

' + str + '

' +} +globalFuncs.getDangerText = function(str) { + return '

' + str + '

' +} +globalFuncs.errorMsgs = [ + "Please enter valid amount.", + "Your password must be at least 9 characters. Please ensure it is a strong password. ", + "Sorry! We don\'t recognize this type of wallet file. ", + "This is not a valid wallet file. ", + "This unit doesn\'t exists, please use the one of the following units ", + "Invalid address. ", + "Invalid password. ", + "Invalid amount. ", + "Invalid gas limit. ", + "Invalid data value. ", + "Invalid gas amount. ", + "Invalid nonce. ", + "Invalid signed transaction. ", + "A wallet with this nickname already exists. ", + "Wallet not found. ", + "Whoops. It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ", + "A wallet with this address already exists in storage. Please check your wallets page. ", + "You need to have at least .001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ", + "All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.", + "Invalid symbol"]; +globalFuncs.successMsgs = [ + "Valid address", + "Wallet successfully decrypted", + "Transaction submitted. TX ID: ", + "Your wallet was successfully added: ", + "You have successfully voted. Thank you for being an active participant in The DAO.", + "File Selected: "]; +globalFuncs.gethErrors = { + "Invalid sender": "GETH_InvalidSender", + "Nonce too low": "GETH_Nonce", + "Gas price too low for acceptance": "GETH_Cheap", + "Insufficient balance": "GETH_Balance", + "Account does not exist or account balance too low": "GETH_NonExistentAccount", + "Insufficient funds for gas * price + value": "GETH_InsufficientFunds", + "Intrinsic gas too low": "GETH_IntrinsicGas", + "Exceeds block gas limit": "GETH_GasLimit", + "Negative value": "GETH_NegativeValue"}; +globalFuncs.gethErrorMsgs = {}; +globalFuncs.getGethMsg = function(str) { + if (str in this.gethErrors) { + var key = this.gethErrors[str]; + if (key in this.gethErrorMsgs) { + return this.gethErrorMsgs[key]; + } + } + return str; +} +globalFuncs.scrypt = { + n: 1024 +}; +globalFuncs.postDelay = 300; +globalFuncs.kdf = "scrypt"; +globalFuncs.defaultTxGasLimit = 21000; +globalFuncs.digixClaimTxGasLimit = 150000; +globalFuncs.donateAddress = "0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8"; +globalFuncs.isNumeric = function(n) { + return !isNaN(parseFloat(n)) && isFinite(n); +} +globalFuncs.urlGet = function(name) { + if (name = (new RegExp('[?&]' + encodeURIComponent(name) + '=([^&]*)')).exec(location.search)) return this.stripTags(decodeURIComponent(name[1])); +} +globalFuncs.stripTags = function(str) { + var SCRIPT_REGEX = /)<[^<]*)*<\/script>/gi; + while (SCRIPT_REGEX.test(str)) { + str = str.replace(SCRIPT_REGEX, ""); + } + return str; +} +globalFuncs.checkAndRedirectHTTPS = function() { + var host = "myetherwallet.com"; + var githost = "kvhnuke.github.io"; + var githostw = "www.kvhnuke.github.io"; + var hostw = "www.myetherwallet.com"; + if ((host == window.location.host || githost == window.location.host || hostw == window.location.host || githostw == window.location.host) && (window.location.protocol != "https:")) window.location.protocol = "https"; +} +globalFuncs.isStrongPass = function(password) { + return password.length > 8; +} +globalFuncs.hexToAscii = function(hex) { + return hex.match(/.{1,2}/g).map(function(v) { + return String.fromCharCode(parseInt(v, 16)); + }).join(''); +} +globalFuncs.isAlphaNumeric = function(value){ + return !/[^a-zA-Z0-9]/.test(value); +} +module.exports = globalFuncs; },{}],30:[function(require,module,exports){ -'use strict'; -var IS_CX = false; -if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; -require("babel-polyfill"); -var angular = require('angular'); -var angularTranslate = require('angular-translate'); -var angularTranslateErrorLog = require('angular-translate-handler-log'); -var angularSanitize = require('angular-sanitize'); -var BigNumber = require('bignumber.js'); -window.BigNumber = BigNumber; -var marked = require('./customMarked'); -window.marked = marked; -var ethUtil = require('ethereumjs-util'); -ethUtil.crypto = require('crypto'); -ethUtil.Tx = require('ethereumjs-tx'); -ethUtil.scrypt = require('scryptsy'); -ethUtil.uuid = require('uuid'); -window.ethUtil = ethUtil; -var Wallet = require('./myetherwallet'); -window.Wallet = Wallet; -var Token = require('./tokens'); -window.Token = Token; -var globalFuncs = require('./globalFuncs'); -window.globalFuncs = globalFuncs; -var uiFuncs = require('./uiFuncs'); -window.uiFuncs = uiFuncs; -var etherUnits = require('./etherUnits'); -window.etherUnits = etherUnits; -var ajaxReq = require('./ajaxReq'); -window.ajaxReq = ajaxReq; -var ethFuncs = require('./ethFuncs'); -window.ethFuncs = ethFuncs; -var Validator = require('./validator'); -window.Validator = Validator; -var translate = require('./translations/translate.js'); -if (IS_CX) { - var cxFuncs = require('./cxFuncs'); - window.cxFuncs = cxFuncs; -} -var tabsCtrl = require('./controllers/tabsCtrl'); -var viewCtrl = require('./controllers/viewCtrl'); -var walletGenCtrl = require('./controllers/walletGenCtrl'); -var bulkGenCtrl = require('./controllers/bulkGenCtrl'); -var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); -var viewWalletCtrl = require('./controllers/viewWalletCtrl'); -var sendTxCtrl = require('./controllers/sendTxCtrl'); -var deployContractCtrl = require('./controllers/deployContractCtrl'); -var digixCtrl = require('./controllers/digixCtrl'); -var theDaoCtrl = require('./controllers/theDaoCtrl'); -var tokenCtrl = require('./controllers/tokenCtrl'); -var footerCtrl = require('./controllers/footerCtrl'); -var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); -var globalService = require('./services/globalService'); -var walletService = require('./services/walletService'); -var blockiesDrtv = require('./directives/blockiesDrtv'); -var QRCodeDrtv = require('./directives/QRCodeDrtv'); -var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); -var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); -var fileReaderDrtv = require('./directives/fileReaderDrtv'); -if (IS_CX) { - var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); - var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); - var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); - var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); - var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); -} -var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); -app.config(['$compileProvider', function($compileProvider) { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); -}]); -app.config(['$translateProvider', function($translateProvider) { - $translateProvider.useMissingTranslationHandlerLog(); - new translate($translateProvider); -}]); -app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); -app.factory('walletService', walletService); -app.directive('blockieAddress', blockiesDrtv); -app.directive('qrCode', QRCodeDrtv); -app.directive('onReadFile', fileReaderDrtv); -app.directive('walletDecryptDrtv', walletDecryptDrtv); -app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); -app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); -app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); -app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); -app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); -app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); -app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); -app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); -app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); -app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); -app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); -app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); -app.controller('footerCtrl', ['$scope', footerCtrl]); -app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); -if (IS_CX) { - app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); - app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); - app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); - app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); - app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); -} - -},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":60,"./uiFuncs":64,"./validator":65,"angular":71,"angular-sanitize":67,"angular-translate":69,"angular-translate-handler-log":68,"babel-polyfill":87,"bignumber.js":89,"crypto":423,"ethereumjs-tx":453,"ethereumjs-util":454,"scryptsy":500,"uuid":520}],31:[function(require,module,exports){ +'use strict'; +var IS_CX = false; +if (typeof chrome != 'undefined') IS_CX = chrome.windows === undefined ? false : true; +require("babel-polyfill"); +var angular = require('angular'); +var angularTranslate = require('angular-translate'); +var angularTranslateErrorLog = require('angular-translate-handler-log'); +var angularSanitize = require('angular-sanitize'); +var BigNumber = require('bignumber.js'); +window.BigNumber = BigNumber; +var marked = require('./customMarked'); +window.marked = marked; +var ethUtil = require('ethereumjs-util'); +ethUtil.crypto = require('crypto'); +ethUtil.Tx = require('ethereumjs-tx'); +ethUtil.scrypt = require('scryptsy'); +ethUtil.uuid = require('uuid'); +window.ethUtil = ethUtil; +var Wallet = require('./myetherwallet'); +window.Wallet = Wallet; +var Token = require('./tokens'); +window.Token = Token; +var globalFuncs = require('./globalFuncs'); +window.globalFuncs = globalFuncs; +var uiFuncs = require('./uiFuncs'); +window.uiFuncs = uiFuncs; +var etherUnits = require('./etherUnits'); +window.etherUnits = etherUnits; +var ajaxReq = require('./ajaxReq'); +window.ajaxReq = ajaxReq; +var ethFuncs = require('./ethFuncs'); +window.ethFuncs = ethFuncs; +var Validator = require('./validator'); +window.Validator = Validator; +var translate = require('./translations/translate.js'); +if (IS_CX) { + var cxFuncs = require('./cxFuncs'); + window.cxFuncs = cxFuncs; +} +var tabsCtrl = require('./controllers/tabsCtrl'); +var viewCtrl = require('./controllers/viewCtrl'); +var walletGenCtrl = require('./controllers/walletGenCtrl'); +var bulkGenCtrl = require('./controllers/bulkGenCtrl'); +var decryptWalletCtrl = require('./controllers/decryptWalletCtrl'); +var viewWalletCtrl = require('./controllers/viewWalletCtrl'); +var sendTxCtrl = require('./controllers/sendTxCtrl'); +var deployContractCtrl = require('./controllers/deployContractCtrl'); +var digixCtrl = require('./controllers/digixCtrl'); +var theDaoCtrl = require('./controllers/theDaoCtrl'); +var tokenCtrl = require('./controllers/tokenCtrl'); +var footerCtrl = require('./controllers/footerCtrl'); +var sendOfflineTxCtrl = require('./controllers/sendOfflineTxCtrl'); +var globalService = require('./services/globalService'); +var walletService = require('./services/walletService'); +var blockiesDrtv = require('./directives/blockiesDrtv'); +var QRCodeDrtv = require('./directives/QRCodeDrtv'); +var walletDecryptDrtv = require('./directives/walletDecryptDrtv'); +var cxWalletDecryptDrtv = require('./directives/cxWalletDecryptDrtv'); +var fileReaderDrtv = require('./directives/fileReaderDrtv'); +if (IS_CX) { + var addWalletCtrl = require('./controllers/CX/addWalletCtrl'); + var cxDecryptWalletCtrl = require('./controllers/CX/cxDecryptWalletCtrl'); + var myWalletsCtrl = require('./controllers/CX/myWalletsCtrl'); + var mainPopCtrl = require('./controllers/CX/mainPopCtrl'); + var quickSendCtrl = require('./controllers/CX/quickSendCtrl'); +} +var app = angular.module('mewApp', ['pascalprecht.translate', 'ngSanitize']); +app.config(['$compileProvider', function($compileProvider) { + $compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|https|):/); +}]); +app.config(['$translateProvider', function($translateProvider) { + $translateProvider.useMissingTranslationHandlerLog(); + new translate($translateProvider); +}]); +app.factory('globalService', ['$http', '$httpParamSerializerJQLike', globalService]); +app.factory('walletService', walletService); +app.directive('blockieAddress', blockiesDrtv); +app.directive('qrCode', QRCodeDrtv); +app.directive('onReadFile', fileReaderDrtv); +app.directive('walletDecryptDrtv', walletDecryptDrtv); +app.directive('cxWalletDecryptDrtv', cxWalletDecryptDrtv); +app.controller('tabsCtrl', ['$scope', 'globalService', '$translate',tabsCtrl]); +app.controller('viewCtrl', ['$scope', 'globalService', viewCtrl]); +app.controller('walletGenCtrl', ['$scope', walletGenCtrl]); +app.controller('bulkGenCtrl', ['$scope', bulkGenCtrl]); +app.controller('decryptWalletCtrl', ['$scope', '$sce', 'walletService', decryptWalletCtrl]); +app.controller('viewWalletCtrl', ['$scope', 'walletService', viewWalletCtrl]); +app.controller('sendTxCtrl', ['$scope', '$sce', 'walletService', sendTxCtrl]); +app.controller('deployContractCtrl', ['$scope', '$sce', 'walletService', deployContractCtrl]); +app.controller('digixCtrl', ['$scope', '$sce', 'walletService', digixCtrl]); +app.controller('theDaoCtrl', ['$scope', '$sce', 'walletService', theDaoCtrl]); +app.controller('tokenCtrl', ['$scope', '$sce', 'walletService', tokenCtrl]); +app.controller('footerCtrl', ['$scope', footerCtrl]); +app.controller('sendOfflineTxCtrl', ['$scope', '$sce', 'walletService', sendOfflineTxCtrl]); +if (IS_CX) { + app.controller('addWalletCtrl', ['$scope', '$sce', addWalletCtrl]); + app.controller('myWalletsCtrl', ['$scope', '$sce', myWalletsCtrl]); + app.controller('mainPopCtrl', ['$scope', '$sce', mainPopCtrl]); + app.controller('quickSendCtrl', ['$scope', '$sce', quickSendCtrl]); + app.controller('cxDecryptWalletCtrl', ['$scope', '$sce', 'walletService', cxDecryptWalletCtrl]); +} + +},{"./ajaxReq":1,"./controllers/CX/addWalletCtrl":2,"./controllers/CX/cxDecryptWalletCtrl":3,"./controllers/CX/mainPopCtrl":4,"./controllers/CX/myWalletsCtrl":5,"./controllers/CX/quickSendCtrl":6,"./controllers/bulkGenCtrl":7,"./controllers/decryptWalletCtrl":8,"./controllers/deployContractCtrl":9,"./controllers/digixCtrl":10,"./controllers/footerCtrl":11,"./controllers/sendOfflineTxCtrl":12,"./controllers/sendTxCtrl":13,"./controllers/tabsCtrl":14,"./controllers/theDaoCtrl":15,"./controllers/tokenCtrl":16,"./controllers/viewCtrl":17,"./controllers/viewWalletCtrl":18,"./controllers/walletGenCtrl":19,"./customMarked":20,"./cxFuncs":21,"./directives/QRCodeDrtv":22,"./directives/blockiesDrtv":23,"./directives/cxWalletDecryptDrtv":24,"./directives/fileReaderDrtv":25,"./directives/walletDecryptDrtv":26,"./ethFuncs":27,"./etherUnits":28,"./globalFuncs":29,"./myetherwallet":31,"./services/globalService":32,"./services/walletService":33,"./tokens":34,"./translations/translate.js":61,"./uiFuncs":65,"./validator":66,"angular":72,"angular-sanitize":68,"angular-translate":70,"angular-translate-handler-log":69,"babel-polyfill":88,"bignumber.js":90,"crypto":425,"ethereumjs-tx":455,"ethereumjs-util":456,"scryptsy":502,"uuid":522}],31:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var Wallet = function(priv) { - this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') -} -Wallet.generate = function(icapDirect) { - if (icapDirect) { - while (true) { - var privKey = ethUtil.crypto.randomBytes(32) - if (ethUtil.privateToAddress(privKey)[0] === 0) { - return new Wallet(privKey) - } - } - } else { - return new Wallet(ethUtil.crypto.randomBytes(32)) - } -} -Wallet.prototype.getPrivateKey = function() { - return this.privKey -} -Wallet.prototype.getPrivateKeyString = function() { - return this.getPrivateKey().toString('hex') -} -Wallet.prototype.getPublicKey = function() { - return ethUtil.privateToPublic(this.privKey) -} -Wallet.prototype.getPublicKeyString = function() { - return '0x' + this.getPublicKey().toString('hex') -} -Wallet.prototype.getAddress = function() { - return ethUtil.privateToAddress(this.privKey) -} -Wallet.prototype.getAddressString = function() { - return '0x' + this.getAddress().toString('hex') -} -Wallet.prototype.getChecksumAddressString = function() { - return ethUtil.toChecksumAddress(this.getAddressString()) -} -Wallet.fromPrivateKey = function(priv) { - return new Wallet(priv) -} -Wallet.prototype.toV3 = function(password, opts) { - opts = opts || {} - var salt = opts.salt || ethUtil.crypto.randomBytes(32) - var iv = opts.iv || ethUtil.crypto.randomBytes(16) - var derivedKey - var kdf = opts.kdf || 'scrypt' - var kdfparams = { - dklen: opts.dklen || 32, - salt: salt.toString('hex') - } - if (kdf === 'pbkdf2') { - kdfparams.c = opts.c || 262144 - kdfparams.prf = 'hmac-sha256' - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') - } else if (kdf === 'scrypt') { - // FIXME: support progress reporting callback - kdfparams.n = opts.n || 262144 - kdfparams.r = opts.r || 8 - kdfparams.p = opts.p || 1 - derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else { - throw new Error('Unsupported kdf') - } - var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) - if (!cipher) { - throw new Error('Unsupported cipher') - } - var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) - return { - version: 3, - id: ethUtil.uuid.v4({ - random: opts.uuid || ethUtil.crypto.randomBytes(16) - }), - address: this.getAddress().toString('hex'), - Crypto: { - ciphertext: ciphertext.toString('hex'), - cipherparams: { - iv: iv.toString('hex') - }, - cipher: opts.cipher || 'aes-128-ctr', - kdf: kdf, - kdfparams: kdfparams, - mac: mac.toString('hex') - } - } -} -Wallet.prototype.toJSON = function() { - return { - address: this.getAddressString(), - checksumAddress: this.getChecksumAddressString(), - privKey: this.getPrivateKeyString(), - pubKey: this.getPublicKeyString(), - publisher:"MyEtherWallet", - encrypted:false, - version:2 - } -} -Wallet.fromMyEtherWallet = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var privKey - if (!json.locked) { - if (json.private.length !== 64) { - throw new Error('Invalid private key length') - } - privKey = new Buffer(json.private, 'hex') - } else { - if (typeof password !== 'string') { - throw new Error('Password required') - } - if (password.length < 7) { - throw new Error('Password must be at least 7 characters') - } - var cipher = json.encrypted ? json.private.slice(0, 128) : json.private - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - } - var wallet = new Wallet(privKey) - if (wallet.getAddressString() !== json.address) { - throw new Error('Invalid private key or address') - } - return wallet -} -Wallet.fromMyEtherWalletV2 = function (input){ - var json = (typeof input === 'object') ? input : JSON.parse(input); - if (json.privKey.length !== 64) { - throw new Error('Invalid private key length'); - }; - var privKey = new Buffer(json.privKey, 'hex'); - return new Wallet(privKey); -} -Wallet.fromEthSale = function(input, password) { - var json = (typeof input === 'object') ? input : JSON.parse(input) - var encseed = new Buffer(json.encseed, 'hex') - var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) - var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) - var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) - var wallet = new Wallet(ethUtil.sha3(seed)) - if (wallet.getAddress().toString('hex') !== json.ethaddr) { - throw new Error('Decoded key mismatch - possibly wrong passphrase') - } - return wallet -} -Wallet.fromMyEtherWalletKey = function(input, password) { - var cipher = input.slice(0, 128) - cipher = Wallet.decodeCryptojsSalt(cipher) - var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { - keysize: 32, - ivsize: 16 - }) - var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) - var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) - privKey = new Buffer((privKey.toString()), 'hex') - return new Wallet(privKey) -} -Wallet.fromV3 = function(input, password, nonStrict) { - var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) - if (json.version !== 3) { - throw new Error('Not a V3 wallet') - } - var derivedKey - var kdfparams - if (json.crypto.kdf === 'scrypt') { - kdfparams = json.crypto.kdfparams - derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) - } else if (json.crypto.kdf === 'pbkdf2') { - kdfparams = json.crypto.kdfparams - if (kdfparams.prf !== 'hmac-sha256') { - throw new Error('Unsupported parameters to PBKDF2') - } - derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') - } else { - throw new Error('Unsupported key derivation scheme') - } - var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') - var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) - if (mac.toString('hex') !== json.crypto.mac) { - throw new Error('Key derivation failed - possibly wrong passphrase') - } - var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) - var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') - return new Wallet(seed) -} -Wallet.prototype.toV3String = function(password, opts) { - return JSON.stringify(this.toV3(password, opts)) -} -Wallet.prototype.getV3Filename = function (timestamp) { - var ts = timestamp ? new Date(timestamp) : new Date() - return [ - 'UTC--', - ts.toJSON().replace(/:/g, '-'), - '--', - this.getAddress().toString('hex') - ].join('') -} -Wallet.decipherBuffer = function(decipher, data) { - return Buffer.concat([decipher.update(data), decipher.final()]) -} -Wallet.decodeCryptojsSalt = function(input) { - var ciphertext = new Buffer(input, 'base64') - if (ciphertext.slice(0, 8).toString() === 'Salted__') { - return { - salt: ciphertext.slice(8, 16), - ciphertext: ciphertext.slice(16) - } - } else { - return { - ciphertext: ciphertext - } - } -} -Wallet.evp_kdf = function(data, salt, opts) { - // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` - - function iter(block) { - var hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - hash.update(data) - hash.update(salt) - block = hash.digest() - for (var i = 1; i < (opts.count || 1); i++) { - hash = ethUtil.crypto.createHash(opts.digest || 'md5') - hash.update(block) - block = hash.digest() - } - return block - } - var keysize = opts.keysize || 16 - var ivsize = opts.ivsize || 16 - var ret = [] - var i = 0 - while (Buffer.concat(ret).length < (keysize + ivsize)) { - ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) - i++ - } - var tmp = Buffer.concat(ret) - return { - key: tmp.slice(0, keysize), - iv: tmp.slice(keysize, keysize + ivsize) - } -} -Wallet.walletRequirePass = function(ethjson) { - var jsonArr; - try { - jsonArr = JSON.parse(ethjson); - } catch (err) { - throw globalFuncs.errorMsgs[3]; - } - if (jsonArr.encseed != null) return true; - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true - else if (jsonArr.hash != null && jsonArr.locked) return true; - else if (jsonArr.hash != null && !jsonArr.locked) return false; - else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; - else - throw globalFuncs.errorMsgs[2]; -} -Wallet.getWalletFromPrivKeyFile = function(strjson, password) { - var jsonArr = JSON.parse(strjson); - if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); - else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); - else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); - else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); - else - throw globalFuncs.errorMsgs[2]; -} +'use strict'; +var Wallet = function(priv) { + this.privKey = priv.length == 32 ? priv : Buffer(priv, 'hex') +} +Wallet.generate = function(icapDirect) { + if (icapDirect) { + while (true) { + var privKey = ethUtil.crypto.randomBytes(32) + if (ethUtil.privateToAddress(privKey)[0] === 0) { + return new Wallet(privKey) + } + } + } else { + return new Wallet(ethUtil.crypto.randomBytes(32)) + } +} +Wallet.prototype.getPrivateKey = function() { + return this.privKey +} +Wallet.prototype.getPrivateKeyString = function() { + return this.getPrivateKey().toString('hex') +} +Wallet.prototype.getPublicKey = function() { + return ethUtil.privateToPublic(this.privKey) +} +Wallet.prototype.getPublicKeyString = function() { + return '0x' + this.getPublicKey().toString('hex') +} +Wallet.prototype.getAddress = function() { + return ethUtil.privateToAddress(this.privKey) +} +Wallet.prototype.getAddressString = function() { + return '0x' + this.getAddress().toString('hex') +} +Wallet.prototype.getChecksumAddressString = function() { + return ethUtil.toChecksumAddress(this.getAddressString()) +} +Wallet.fromPrivateKey = function(priv) { + return new Wallet(priv) +} +Wallet.prototype.toV3 = function(password, opts) { + opts = opts || {} + var salt = opts.salt || ethUtil.crypto.randomBytes(32) + var iv = opts.iv || ethUtil.crypto.randomBytes(16) + var derivedKey + var kdf = opts.kdf || 'scrypt' + var kdfparams = { + dklen: opts.dklen || 32, + salt: salt.toString('hex') + } + if (kdf === 'pbkdf2') { + kdfparams.c = opts.c || 262144 + kdfparams.prf = 'hmac-sha256' + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), salt, kdfparams.c, kdfparams.dklen, 'sha256') + } else if (kdf === 'scrypt') { + // FIXME: support progress reporting callback + kdfparams.n = opts.n || 262144 + kdfparams.r = opts.r || 8 + kdfparams.p = opts.p || 1 + derivedKey = ethUtil.scrypt(new Buffer(password), salt, kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else { + throw new Error('Unsupported kdf') + } + var cipher = ethUtil.crypto.createCipheriv(opts.cipher || 'aes-128-ctr', derivedKey.slice(0, 16), iv) + if (!cipher) { + throw new Error('Unsupported cipher') + } + var ciphertext = Buffer.concat([cipher.update(this.privKey), cipher.final()]) + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), new Buffer(ciphertext, 'hex')])) + return { + version: 3, + id: ethUtil.uuid.v4({ + random: opts.uuid || ethUtil.crypto.randomBytes(16) + }), + address: this.getAddress().toString('hex'), + Crypto: { + ciphertext: ciphertext.toString('hex'), + cipherparams: { + iv: iv.toString('hex') + }, + cipher: opts.cipher || 'aes-128-ctr', + kdf: kdf, + kdfparams: kdfparams, + mac: mac.toString('hex') + } + } +} +Wallet.prototype.toJSON = function() { + return { + address: this.getAddressString(), + checksumAddress: this.getChecksumAddressString(), + privKey: this.getPrivateKeyString(), + pubKey: this.getPublicKeyString(), + publisher:"MyEtherWallet", + encrypted:false, + version:2 + } +} +Wallet.fromMyEtherWallet = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var privKey + if (!json.locked) { + if (json.private.length !== 64) { + throw new Error('Invalid private key length') + } + privKey = new Buffer(json.private, 'hex') + } else { + if (typeof password !== 'string') { + throw new Error('Password required') + } + if (password.length < 7) { + throw new Error('Password must be at least 7 characters') + } + var cipher = json.encrypted ? json.private.slice(0, 128) : json.private + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + } + var wallet = new Wallet(privKey) + if (wallet.getAddressString() !== json.address) { + throw new Error('Invalid private key or address') + } + return wallet +} +Wallet.fromMyEtherWalletV2 = function (input){ + var json = (typeof input === 'object') ? input : JSON.parse(input); + if (json.privKey.length !== 64) { + throw new Error('Invalid private key length'); + }; + var privKey = new Buffer(json.privKey, 'hex'); + return new Wallet(privKey); +} +Wallet.fromEthSale = function(input, password) { + var json = (typeof input === 'object') ? input : JSON.parse(input) + var encseed = new Buffer(json.encseed, 'hex') + var derivedKey = ethUtil.crypto.pbkdf2Sync(Buffer(password), Buffer(password), 2000, 32, 'sha256').slice(0, 16) + var decipher = ethUtil.crypto.createDecipheriv('aes-128-cbc', derivedKey, encseed.slice(0, 16)) + var seed = Wallet.decipherBuffer(decipher, encseed.slice(16)) + var wallet = new Wallet(ethUtil.sha3(seed)) + if (wallet.getAddress().toString('hex') !== json.ethaddr) { + throw new Error('Decoded key mismatch - possibly wrong passphrase') + } + return wallet +} +Wallet.fromMyEtherWalletKey = function(input, password) { + var cipher = input.slice(0, 128) + cipher = Wallet.decodeCryptojsSalt(cipher) + var evp = Wallet.evp_kdf(new Buffer(password), cipher.salt, { + keysize: 32, + ivsize: 16 + }) + var decipher = ethUtil.crypto.createDecipheriv('aes-256-cbc', evp.key, evp.iv) + var privKey = Wallet.decipherBuffer(decipher, new Buffer(cipher.ciphertext)) + privKey = new Buffer((privKey.toString()), 'hex') + return new Wallet(privKey) +} +Wallet.fromV3 = function(input, password, nonStrict) { + var json = (typeof input === 'object') ? input : JSON.parse(nonStrict ? input.toLowerCase() : input) + if (json.version !== 3) { + throw new Error('Not a V3 wallet') + } + var derivedKey + var kdfparams + if (json.crypto.kdf === 'scrypt') { + kdfparams = json.crypto.kdfparams + derivedKey = ethUtil.scrypt(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.n, kdfparams.r, kdfparams.p, kdfparams.dklen) + } else if (json.crypto.kdf === 'pbkdf2') { + kdfparams = json.crypto.kdfparams + if (kdfparams.prf !== 'hmac-sha256') { + throw new Error('Unsupported parameters to PBKDF2') + } + derivedKey = ethUtil.crypto.pbkdf2Sync(new Buffer(password), new Buffer(kdfparams.salt, 'hex'), kdfparams.c, kdfparams.dklen, 'sha256') + } else { + throw new Error('Unsupported key derivation scheme') + } + var ciphertext = new Buffer(json.crypto.ciphertext, 'hex') + var mac = ethUtil.sha3(Buffer.concat([derivedKey.slice(16, 32), ciphertext])) + if (mac.toString('hex') !== json.crypto.mac) { + throw new Error('Key derivation failed - possibly wrong passphrase') + } + var decipher = ethUtil.crypto.createDecipheriv(json.crypto.cipher, derivedKey.slice(0, 16), new Buffer(json.crypto.cipherparams.iv, 'hex')) + var seed = Wallet.decipherBuffer(decipher, ciphertext, 'hex') + return new Wallet(seed) +} +Wallet.prototype.toV3String = function(password, opts) { + return JSON.stringify(this.toV3(password, opts)) +} +Wallet.prototype.getV3Filename = function (timestamp) { + var ts = timestamp ? new Date(timestamp) : new Date() + return [ + 'UTC--', + ts.toJSON().replace(/:/g, '-'), + '--', + this.getAddress().toString('hex') + ].join('') +} +Wallet.decipherBuffer = function(decipher, data) { + return Buffer.concat([decipher.update(data), decipher.final()]) +} +Wallet.decodeCryptojsSalt = function(input) { + var ciphertext = new Buffer(input, 'base64') + if (ciphertext.slice(0, 8).toString() === 'Salted__') { + return { + salt: ciphertext.slice(8, 16), + ciphertext: ciphertext.slice(16) + } + } else { + return { + ciphertext: ciphertext + } + } +} +Wallet.evp_kdf = function(data, salt, opts) { + // A single EVP iteration, returns `D_i`, where block equlas to `D_(i-1)` + + function iter(block) { + var hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + hash.update(data) + hash.update(salt) + block = hash.digest() + for (var i = 1; i < (opts.count || 1); i++) { + hash = ethUtil.crypto.createHash(opts.digest || 'md5') + hash.update(block) + block = hash.digest() + } + return block + } + var keysize = opts.keysize || 16 + var ivsize = opts.ivsize || 16 + var ret = [] + var i = 0 + while (Buffer.concat(ret).length < (keysize + ivsize)) { + ret[i] = iter((i === 0) ? new Buffer(0) : ret[i - 1]) + i++ + } + var tmp = Buffer.concat(ret) + return { + key: tmp.slice(0, keysize), + iv: tmp.slice(keysize, keysize + ivsize) + } +} +Wallet.walletRequirePass = function(ethjson) { + var jsonArr; + try { + jsonArr = JSON.parse(ethjson); + } catch (err) { + throw globalFuncs.errorMsgs[3]; + } + if (jsonArr.encseed != null) return true; + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return true + else if (jsonArr.hash != null && jsonArr.locked) return true; + else if (jsonArr.hash != null && !jsonArr.locked) return false; + else if (jsonArr.publisher == "MyEtherWallet" && !jsonArr.encrypted) return false; + else + throw globalFuncs.errorMsgs[2]; +} +Wallet.getWalletFromPrivKeyFile = function(strjson, password) { + var jsonArr = JSON.parse(strjson); + if (jsonArr.encseed != null) return Wallet.fromEthSale(strjson, password); + else if (jsonArr.Crypto != null || jsonArr.crypto != null) return Wallet.fromV3(strjson, password, true); + else if (jsonArr.hash != null) return Wallet.fromMyEtherWallet(strjson, password); + else if (jsonArr.publisher == "MyEtherWallet") return Wallet.fromMyEtherWalletV2(strjson); + else + throw globalFuncs.errorMsgs[2]; +} module.exports = Wallet; }).call(this,require("buffer").Buffer) -},{"buffer":121}],32:[function(require,module,exports){ -'use strict'; -var globalService = function($http, $httpParamSerializerJQLike) { - globalFuncs.checkAndRedirectHTTPS(); - ajaxReq.http = $http; - ajaxReq.postSerializer = $httpParamSerializerJQLike; - - var tabs = { - generateWallet: { - id: 0, - name: "NAV_GenerateWallet", - url: "generate-wallet", - mew: true, - cx: false, - }, - bulkGenerate: { - id: 1, - name: "NAV_BulkGenerate", - url: "bulk-generate", - mew: false, - cx: false - }, - myWallet: { - id: 2, - name: "NAV_MyWallets", - url: "my-wallet", - mew: false, - cx: true - }, - addWallet: { - id: 3, - name: "NAV_AddWallet", - url: "add-wallet", - mew: false, - cx: true - }, - sendTransaction: { - id: 4, - name: "NAV_SendEther", - url: "send-transaction", - mew: true, - cx: true - }, - tokens: { - id: 5, - name: "NAV_SendTokens", - url: "send-tokens", - mew: true, - cx: true - }, - offlineTransaction: { - id: 6, - name: "NAV_Offline", - url:"offline-transaction", - mew: true, - cx: false - }, - dao: { - id: 7, - name: "NAV_WithdrawDAO", - url: "the-dao", - mew: true, - cx: true - }, - digix: { - id: 8, - name: "NAV_ClaimDGD", - url: "digix", - mew: true, - cx: true - }, - deployContract: { - id: 9, - name: "NAV_DeployContract", - url: "deploy-contract", - mew: true, - cx: true - }, - viewWalletInfo: { - id: 10, - name: "NAV_ViewWallet", - url: "view-wallet-info", - mew: true, - cx: false - }, - help: { - id: 11, - name: "NAV_Help", - url: "help", - mew: true, - cx: true - } - }; - var currentTab = 0; - if(typeof chrome != 'undefined') - currentTab = chrome.windows === undefined ? 0 : 3; - return { - tabs: tabs, - currentTab: currentTab - }; -}; -module.exports = globalService; - - +},{"buffer":122}],32:[function(require,module,exports){ +'use strict'; +var globalService = function($http, $httpParamSerializerJQLike) { + globalFuncs.checkAndRedirectHTTPS(); + ajaxReq.http = $http; + ajaxReq.postSerializer = $httpParamSerializerJQLike; + + var tabs = { + generateWallet: { + id: 0, + name: "NAV_GenerateWallet", + url: "generate-wallet", + mew: true, + cx: false, + }, + bulkGenerate: { + id: 1, + name: "NAV_BulkGenerate", + url: "bulk-generate", + mew: false, + cx: false + }, + myWallet: { + id: 2, + name: "NAV_MyWallets", + url: "my-wallet", + mew: false, + cx: true + }, + addWallet: { + id: 3, + name: "NAV_AddWallet", + url: "add-wallet", + mew: false, + cx: true + }, + sendTransaction: { + id: 4, + name: "NAV_SendEther", + url: "send-transaction", + mew: true, + cx: true + }, + tokens: { + id: 5, + name: "NAV_SendTokens", + url: "send-tokens", + mew: true, + cx: true + }, + offlineTransaction: { + id: 6, + name: "NAV_Offline", + url:"offline-transaction", + mew: true, + cx: false + }, + dao: { + id: 7, + name: "NAV_WithdrawDAO", + url: "the-dao", + mew: true, + cx: true + }, + digix: { + id: 8, + name: "NAV_ClaimDGD", + url: "digix", + mew: true, + cx: true + }, + deployContract: { + id: 9, + name: "NAV_DeployContract", + url: "deploy-contract", + mew: true, + cx: true + }, + viewWalletInfo: { + id: 10, + name: "NAV_ViewWallet", + url: "view-wallet-info", + mew: true, + cx: false + }, + help: { + id: 11, + name: "NAV_Help", + url: "help", + mew: true, + cx: true + } + }; + var currentTab = 0; + if(typeof chrome != 'undefined') + currentTab = chrome.windows === undefined ? 0 : 3; + return { + tabs: tabs, + currentTab: currentTab + }; +}; +module.exports = globalService; + + },{}],33:[function(require,module,exports){ -'use strict'; -var walletService = function() { - return { - wallet: null, - password:'' - } -}; +'use strict'; +var walletService = function() { + return { + wallet: null, + password:'' + } +}; module.exports = walletService; },{}],34:[function(require,module,exports){ -'use strict'; -var Token = function(contractAddress, userAddress, symbol, decimal) { - this.contractAddress = contractAddress; - this.userAddress = userAddress - this.symbol = symbol;; - this.decimal = decimal; - this.setBalance(); - this.balance = "loading"; -} -Token.balanceHex = "0x70a08231"; -Token.transferHex = "0xa9059cbb"; -Token.popTokens = [{ - "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", - "symbol": "DAO", - "decimal": 16 -}, -{ - "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", - "symbol": "DGD", - "decimal": 9 -}, -{ - "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", - "symbol": "DGDb", - "decimal": 0 -}, -{ - "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "symbol": "MKR", - "decimal": 18 -}, -{ - "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", - "symbol": "XAUR", - "decimal": 8 -}, -{ - "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", - "symbol": "🦄 Unicorn", - "decimal": 0 -}, -{ - "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", - "symbol": "🍺 BeerCoin", - "decimal": 0 -} -]; -Token.prototype.getContractAddress = function() { - return this.contractAddress; -} -Token.prototype.getUserAddress = function() { - return this.userAddress; -} -Token.prototype.getSymbol = function() { - return this.symbol; -} -Token.prototype.getDecimal = function() { - return this.decimal; -} -Token.prototype.getBalance = function() { - return this.balance; -} -Token.prototype.getBalanceBN = function() { - return this.balanceBN; -} -Token.prototype.setBalance = function() { - var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); - var parentObj = this; - ajaxReq.getEthCall(balanceCall, function(data) { - if (!data.error) { - parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); - parentObj.balanceBN = new BigNumber(data.data).toString(); - } - }); -} -Token.prototype.getData = function(toAdd, value) { - try { - if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; - var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); - var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); - var data = Token.transferHex + toAdd + value; - return { - isError: false, - data: data - }; - } catch (e) { - return { - isError: true, - error: e - }; - } -} -module.exports = Token; +'use strict'; +var Token = function(contractAddress, userAddress, symbol, decimal) { + this.contractAddress = contractAddress; + this.userAddress = userAddress + this.symbol = symbol;; + this.decimal = decimal; + this.setBalance(); + this.balance = "loading"; +} +Token.balanceHex = "0x70a08231"; +Token.transferHex = "0xa9059cbb"; +Token.popTokens = [{ + "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "symbol": "DAO", + "decimal": 16 +}, +{ + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "symbol": "DGD", + "decimal": 9 +}, +{ + "address": "0x54bda709fed875224eae569bb6817d96ef7ed9ad", + "symbol": "DGDb", + "decimal": 0 +}, +{ + "address": "0xc66ea802717bfb9833400264dd12c2bceaa34a6d", + "symbol": "MKR", + "decimal": 18 +}, +{ + "address": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "symbol": "XAUR", + "decimal": 8 +}, +{ + "address": "0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7", + "symbol": "🦄 Unicorn", + "decimal": 0 +}, +{ + "address": "0x74c1e4b8cae59269ec1d85d3d4f324396048f4ac", + "symbol": "🍺 BeerCoin", + "decimal": 0 +} +]; +Token.prototype.getContractAddress = function() { + return this.contractAddress; +} +Token.prototype.getUserAddress = function() { + return this.userAddress; +} +Token.prototype.getSymbol = function() { + return this.symbol; +} +Token.prototype.getDecimal = function() { + return this.decimal; +} +Token.prototype.getBalance = function() { + return this.balance; +} +Token.prototype.getBalanceBN = function() { + return this.balanceBN; +} +Token.prototype.setBalance = function() { + var balanceCall = ethFuncs.getDataObj(this.contractAddress, Token.balanceHex, [ethFuncs.getNakedAddress(this.userAddress)]); + var parentObj = this; + ajaxReq.getEthCall(balanceCall, function(data) { + if (!data.error) { + parentObj.balance = new BigNumber(data.data).div(new BigNumber(10).pow(parentObj.getDecimal())).toString(); + parentObj.balanceBN = new BigNumber(data.data).toString(); + } + }); +} +Token.prototype.getData = function(toAdd, value) { + try { + if (!ethFuncs.validateEtherAddress(toAdd)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(value) || parseFloat(value) < 0) throw globalFuncs.errorMsgs[7]; + var value = ethFuncs.padLeft(new BigNumber(value).times(new BigNumber(10).pow(this.getDecimal())).toString(16), 64); + var toAdd = ethFuncs.padLeft(ethFuncs.getNakedAddress(toAdd), 64); + var data = Token.transferHex + toAdd + value; + return { + isError: false, + data: data + }; + } catch (e) { + return { + isError: true, + error: e + }; + } +} +module.exports = Token; },{}],35:[function(require,module,exports){ -// Arabic -'use strict'; -var ar = function() {} -ar.code = 'ar'; -ar.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ar; +// Arabic +'use strict'; +var ar = function() {} +ar.code = 'ar'; +ar.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ar; },{}],36:[function(require,module,exports){ -// Bulgarian -'use strict'; -var bg = function() {} -bg.code = 'bg'; -bg.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = bg; +// Bulgarian +'use strict'; +var bg = function() {} +bg.code = 'bg'; +bg.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = bg; },{}],37:[function(require,module,exports){ -// German -'use strict'; -var de = function() {} -de.code = 'de'; -de.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Deine Wallets', - NAV_AddWallet: 'Wallet hinzufügen', - NAV_GenerateWallet: 'Wallet erstellen', - NAV_BulkGenerate: 'Mehrere Wallets erstellen', - NAV_SendEther: 'Sende Ether', - NAV_SendTokens: 'Sende Tokens', - NAV_Offline: 'Sende offline', - NAV_WithdrawDAO: 'DAO Token entnehmen', - DAO_TitleLong: 'DAO Token in ETH umwandeln', - NAV_ClaimDGD: 'DGD geltend machen', - DGD_TitleLong: 'DGD Token geltend machen', - NAV_DeployContract: 'Vertrag aufstellen', - NAV_MyWallets: 'Meine Wallets', - NAV_ViewWallet: 'Wallet Infos anzeigen', - NAV_Help: 'Hilfe', - NAV_Contact: 'Kontakt', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Passwort', - x_Download: 'Herunterladen', - x_Address: 'Deine Adresse', - x_Save: 'Sichern', - x_Cancel: 'Abbrechen', - x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', - x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', - x_PrivKey2: 'Privater Schlüssel', - x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', - x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', - x_Json: 'JSON-Datei (unverschlüsselt)', - x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', - x_PrintShort: 'Drucken', - x_Print: 'Papier-Version des Wallets drucken', - x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', - x_CSV: 'CSV-Datei (unverschlüsselt)', - x_TXT: 'TXT-Datei (unverschlüsselt)', - - /* Header */ - MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', - CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', - FOOTER_1b: 'Erstellt von', - FOOTER_2: 'Spenden sind herzlich willkommen:', - FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Kontostand: ', - sidebar_TokenBal: 'Token Kontostand: ', - sidebar_Equiv: 'Währungs-Gegenwerte: ', - sidebar_TransHistory: 'Transaktions-Historie: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', - sidebar_donate: 'Spenden', - sidebar_thanks: 'Dankeschön!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', - decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', - decrypt_Select: 'Wallet auswählen:', - - /* Add Wallet */ - ADD_Label_1: 'Was möchtest du tun?', - ADD_Radio_1: 'Neues Wallet erstellen', - ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', - ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', - ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', - ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', - ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Label_2: 'Wähle ein Kürzel:', - ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', - ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', - ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', - ADD_Label_5: 'Kontoadresse eingeben: ', - ADD_Label_6: 'Wallet entsperren', - ADD_Label_6_short: 'Entsperren', - ADD_Label_7: 'Kontoadresse hinzufügen', - - /* Generate Wallets */ - GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', - GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', - GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', - GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', - GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', - GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', - GEN_Label_3: 'Sichere deine Kontoadresse.', - GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Anzahl zu generierender Wallets', - BULK_Label_2: 'Wallets erstellen', - BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', - - /* Sending Ether and Tokens */ - SEND_addr: 'An Adresse: ', - SEND_amount: 'Zu sendender Betrag: ', - SEND_amount_short: 'Betrag', - SEND_custom: 'Benutzerdefiniert', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', - SEND_generate: 'Erzeuge Transaktion', - SEND_raw: 'Transaktion (Binärformat)', - SEND_signed: 'Signierte Transaktion', - SEND_trans: 'Sende Transaktion', - SENDModal_Title: 'Achtung! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du bist dabei, ', - SENDModal_Content_2: ' an die Adresse ', - SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', - SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', - SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', - SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-Symbol: ', - TOKEN_Dec: 'Dezimalstellen: ', - - /* Send Transaction */ - TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', - TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', - TRANS_standard: 'ETH (Standard Transaktion)', - TRANS_eth: 'Nur ETH', - TRANS_etc: 'Nur ETC', - TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', - TRANS_data: 'Daten: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', - TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', - TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', - TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', - TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', - TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', - TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', - - /* Offline Transaction */ - OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', - OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', - OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', - OFFLINE_Step1_Button: 'Informationen sammeln', - OFFLINE_Step1_Label_1: 'Von Adresse: ', - OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', - OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', - OFFLINE_Step2_Label_1: 'An Adresse: ', - OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', - OFFLINE_Step2_Label_3: 'Gaspreis ', - OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', - OFFLINE_Step2_Label_6: 'Daten', - OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', - OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', - OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', - OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', - - /* DAO */ - DAO_bal1: 'Bei Block 1,919,999', - DAO_bal2: 'momentan', // momentaner? - DAO_TitleETH: 'DAO Token in ETH umwandeln', - DAO_TitleETC: 'DAO Token in ETC umwandeln', - DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', - DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', - DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', - DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', - DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', - DAOModal_Title: 'Nur zur Sicherheit...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Du bist dabei', - DAOModal_2: 'DAO Token an', - DAOModal_3: 'zu senden im Austausch für', // "in return for" - - /* Digix */ - DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', - DGD_Label_1: 'Erwartete Gebühren:', - DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ - DGD_Label_3: 'Gaspreis:', - DGD_Generate: 'Anspruch geltend machen', - DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode generieren', - DEP_generated: 'Generierter Bytecode', - DEP_signtx: 'Transaktion signieren', - DEP_interface: 'Generiertes Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Spitzname', - MYWAL_Address: 'Wallet Addresse', - MYWAL_Bal: 'Guthaben', - MYWAL_Edit: 'Bearbeiten', - MYWAL_View: 'Ansehen', - MYWAL_Remove: 'Löschen', - MYWAL_RemoveWal: 'Wallet löschen:', - MYWAL_WatchOnly: 'Deine Watch-Only Konten', - MYWAL_Viewing: 'Du siehst Wallet: ', - MYWAL_Hide: 'Wallet Info verstecken', - MYWAL_Edit_2: 'Wallet bearbeiten: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', - MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', - MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', - VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', - VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', - - /* Chrome Extension */ - CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', - CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Bitte gültigen Betrag eingeben', - ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', - ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', - ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', - ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', - ERROR_6: 'Ungültige Addresse. ', - ERROR_7: 'Ungültiges Passwort. ', - ERROR_8: 'Ungültiger Betrag. ', - ERROR_9: 'Ungültiges Gaslimit. ', - ERROR_10: 'Ungültiger Datenwert. ', - ERROR_11: 'Ungültiger Gasbetrag. ', - ERROR_12: 'Ungültige Nonce. ', - ERROR_13: 'Ungültige unterzeichnete Transaktion. ', - ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', - ERROR_15: 'Wallet nicht gefunden. ', - ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', - ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', - ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', - ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', - ERROR_20: 'Ungültiges Symbol', - SUCCESS_1: 'Gültige Addresse', - SUCCESS_2: 'Wallet erfolgreich entschlüsselt', - SUCCESS_3: 'Transaktion übermittelt. TX ID: ', - SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', - SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', - SUCCESS_6: 'Ausgewählte Datei: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', - TranslatorName_1: 'christoph2806 · K ·', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', - TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'huhn_solo · ', - TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', - TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: 'danielsun174 · ffidan61', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', - HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', - HELP_Remind_Title: 'Ein paar Reminder', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', - HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', - - HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', - HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', - HELP_0_Desc_2: 'Erstelle ein neues Wallet.', - HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', - HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', - HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', - - HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', - HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', - HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', - HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', - HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', - HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', - - HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', - HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', - HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', - HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', - HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', - HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', - HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Entpacke es.', - HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Wenn du an einem PC bist:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = de; +// German +'use strict'; +var de = function() {} +de.code = 'de'; +de.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Deine Wallets', + NAV_AddWallet: 'Wallet hinzufügen', + NAV_GenerateWallet: 'Wallet erstellen', + NAV_BulkGenerate: 'Mehrere Wallets erstellen', + NAV_SendEther: 'Sende Ether', + NAV_SendTokens: 'Sende Tokens', + NAV_Offline: 'Sende offline', + NAV_WithdrawDAO: 'DAO Token entnehmen', + DAO_TitleLong: 'DAO Token in ETH umwandeln', + NAV_ClaimDGD: 'DGD geltend machen', + DGD_TitleLong: 'DGD Token geltend machen', + NAV_DeployContract: 'Vertrag aufstellen', + NAV_MyWallets: 'Meine Wallets', + NAV_ViewWallet: 'Wallet Infos anzeigen', + NAV_Help: 'Hilfe', + NAV_Contact: 'Kontakt', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Passwort', + x_Download: 'Herunterladen', + x_Address: 'Deine Adresse', + x_Save: 'Sichern', + x_Cancel: 'Abbrechen', + x_AddessDesc: 'Dies ist deine "Kontonummer" oder dein "Öffentlicher Schlüssel". Du benötigst diese Adresse, wenn dir jemand Ether senden möchte. Das Icon ist eine einfache Möglichkeit, die Adresse zu überprüfen', + x_PrivKey: 'Privater Schlüssel (unverschlüsselt)', + x_PrivKey2: 'Privater Schlüssel', + x_PrivKeyDesc: 'Dies ist die unverschlüsselte Textversion deines privaten Schlüssels, d. h. du benötigst kein Passwort. Wenn jemand über diesen unverschlüsselten privaten Schlüssel verfügt, hat er/sie ohne Passwort Zugang zu deinem Wallet. Es wird daher empfohlen, den privaten Schlüssel zu verschlüsseln.', + x_Keystore: 'Keystore/JSON File (Empfohlen · Verschlüsselt · Im Mist/Geth-Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'Diese Keystore / JSON-Datei passt zu dem Format, das von Mist & Geth verwendet wird, sodass du diese Datei dort zukünftig einfach importieren kannst. Es ist empfehlenswert, diese Datei herunterzuladen und zu sichern.', + x_Json: 'JSON-Datei (unverschlüsselt)', + x_JsonDesc: 'Dies ist die unverschlüsselte Version deines privaten Schlüssels im JSON-Format. Du benötigst daher kein Passwort, aber jeder, der über diese JSON-Datei verfügt, hat ohne Passwort Zugang zu deinem Wallet und dem darin enthaltenen Ether.', + x_PrintShort: 'Drucken', + x_Print: 'Papier-Version des Wallets drucken', + x_PrintDesc: 'ProTip: Klicke auf "Drucken" und sichere die Datei als PDF, auch wenn du keinen Drucker hast!', + x_CSV: 'CSV-Datei (unverschlüsselt)', + x_TXT: 'TXT-Datei (unverschlüsselt)', + + /* Header */ + MEW_Warning_1: 'Bitte prüfe stets die URL, bevor du auf dein Wallet zugreifst oder ein neues Wallet erzeugst. Vorsicht vor Phishing-Seiten!', + CX_Warning_1: 'Stelle sicher, dass du über eine **externe Sicherung** von allen Wallets verfügst, die du hier speicherst. Es gibt viele Möglichkeiten, die dazu führen können, dass deine in dieser Chrome-Extension gespeicherten Daten verloren gehen, z.B. Deinstallation oder Neu-Installation. Diese Extension erleichert den Zugang zu deinen Wallets, ist jedoch keine empfohlene Möglichkeit, diese zu sichern.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'Ein quelloffenes, browserseitiges Werkzeug zur Erzeugung von Ethereum-Wallets und Versenden von Transaktionen.', + FOOTER_1b: 'Erstellt von', + FOOTER_2: 'Spenden sind herzlich willkommen:', + FOOTER_3: 'Browserseitige Wallet-Erzeugung durch', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Kontostand: ', + sidebar_TokenBal: 'Token Kontostand: ', + sidebar_Equiv: 'Währungs-Gegenwerte: ', + sidebar_TransHistory: 'Transaktions-Historie: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet ist ein freier, quelloffener Service, der deiner Privatsphäre und Sicherheit gewidmet ist. Je mehr Spenden wir erhalten, desto mehr Zeit können wir investieren, um neue Funktionen zu programmieren, dein Feedback zu verarbeiten und dir zu geben, was du dir wünschst. Wir sind nur zwei Leute, die die Welt ändern möchten. Hilfst du uns dabei?', + sidebar_donate: 'Spenden', + sidebar_thanks: 'Dankeschön!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Wie möchtst du auf dein Wallet zugreifen?', + decrypt_Title: 'Wähle das Format deines privaten Schlüssels:', + decrypt_Select: 'Wallet auswählen:', + + /* Add Wallet */ + ADD_Label_1: 'Was möchtest du tun?', + ADD_Radio_1: 'Neues Wallet erstellen', + ADD_Radio_2: 'Wallet-Datei auswählen (Keystore / JSON)', + ADD_Radio_2_alt: 'Wallet-Datei auswählen: ', + ADD_Radio_2_short: 'WALLET-DATEI AUSWÄHLEN...', + ADD_Radio_3: 'Kopiere/Tippe deinen privaten Schlüssel ein', + ADD_Radio_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Label_2: 'Wähle ein Kürzel:', + ADD_Label_3: 'Deine Datei ist verschlüsselt. Bitte gib das Passwort ein: ', + ADD_Label_4: 'Kontoadresse zur Beobachtung hinzufügen', + ADD_Warning_1: 'Du kannst unter dem "Wallet-Tab" eine Kontoadresse "beobachten", ohne den privaten Schlüssel hochzuladen. Du hast damit **keinen** Zugang zu diesem Wallet und kannst auch keinen Ether daraus versenden.', + ADD_Label_5: 'Kontoadresse eingeben: ', + ADD_Label_6: 'Wallet entsperren', + ADD_Label_6_short: 'Entsperren', + ADD_Label_7: 'Kontoadresse hinzufügen', + + /* Generate Wallets */ + GEN_desc: 'Wenn du mehrere Wallets auf einmal erstellen möchtest, kannst du dies hier tun: ', + GEN_Label_1: 'Gib ein starkes Passwort ein (mindestens 9 Zeichen)', + GEN_Placeholder_1: 'BITTE VERGISS NICHT dieses Passwort an einem sicheren Ort zu notieren!', + GEN_SuccessMsg: 'Erfolgreich! Dein Wallet wurde erzeugt.', + GEN_Warning: '**Du benötigst deine Keystore/JSON-Datei & das Passwort oder den privaten Schlüssel**, um künftig auf dein Wallet zugreifen zu können. Bitte sichere diese Datei daher auf einem externen Medium! Es gibt KEINE Möglichkeit, ein Wallet wiederherzustellen, wenn du diese Datei und das Passwort nicht sicherst. Lies die [Hilfe-Seite](https://www.myetherwallet.com/#help) für weitere Informationen.', + GEN_Label_2: 'Sichere deine Keystore/JSON-Datei oder deinen privaten Schlüssel. Sichere auch dein Passwort!', + GEN_Label_3: 'Sichere deine Kontoadresse.', + GEN_Label_4: 'Drucke dein Papier-Wallet oder speichere einen QR-Code davon: (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Anzahl zu generierender Wallets', + BULK_Label_2: 'Wallets erstellen', + BULK_SuccessMsg: 'Erfolgreich! Deine Wallets wurden erstellt.', + + /* Sending Ether and Tokens */ + SEND_addr: 'An Adresse: ', + SEND_amount: 'Zu sendender Betrag: ', + SEND_amount_short: 'Betrag', + SEND_custom: 'Benutzerdefiniert', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gesamten verfügbaren Saldo übertragen', + SEND_generate: 'Erzeuge Transaktion', + SEND_raw: 'Transaktion (Binärformat)', + SEND_signed: 'Signierte Transaktion', + SEND_trans: 'Sende Transaktion', + SENDModal_Title: 'Achtung! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du bist dabei, ', + SENDModal_Content_2: ' an die Adresse ', + SENDModal_Content_3: ' zu senden. Bis du sicher, dass du das willst?', + SENDModal_Content_4: 'HINWEIS: Wenn du eine Fehlermeldung erhälst, musst du vermutlich deinen Ether-Saldo erhöhen, um die Gas-Kosten des Token-Versands zu bezahlen. Gas wird in Ether bezahlt.', + SENDModal_No: 'Nein, ich möchte diesen Vorgang abbrechen!', + SENDModal_Yes: 'Ja, ich bin mir sicher! Führe die Transaktion durch.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-Symbol: ', + TOKEN_Dec: 'Dezimalstellen: ', + + /* Send Transaction */ + TRANS_desc: 'Wenn du Token senden willst, nutze bitte die "Sende Tokens" Funktion', + TRANS_warning: 'Wenn du die "Nur ETH" oder "Nur ETC" Funktionen benutzt, erfolgt die Transaktion über einen Vertrag. Einige Dienste haben ein Problem damit diese Transaktionen zu empfangen. Mehr lesen.', + TRANS_standard: 'ETH (Standard Transaktion)', + TRANS_eth: 'Nur ETH', + TRANS_etc: 'Nur ETC', + TRANS_advanced: '+Fortgeschritten: Mehr Gas oder Daten hinzufügen ', + TRANS_data: 'Daten: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: 'Eine Standard Transaktion mit 21000 Gas kostet 0.000441 ETH. Wir zahlen einen minimal höheren Gaspreis von 0.000000021 ETH um zu garantieren, dass die Transaktion schnell bearbeitet wird. Wir erheben keine Transaktionsgebühren.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Nur ETH" und "Nur ETC" Transaktionen', + TRANSModal_Content_0: 'Ein Hinweis zu den verschiedenen Transaktionen und Angeboten:', + TRANSModal_Content_1: '**ETH (Standard Transaktion): ** Dies erzeugt eine Standard Transaktion direkt von einer Adresse zu einer anderen. Diese nutzt standardmässig 21000 Gas. Es ist gut möglich, dass alle Transaktionen dieser Art auf der ETC Blockchain wiederholt werden (Replay Attacke).', + TRANSModal_Content_2: '**Nur ETH: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETH** Blockchain ausgeführt wird.', + TRANSModal_Content_3: '**Nur ETC: ** Dies sendet die Transaktion so über [Timon Rapp\'s "replay protection contract" (wie von VB empfohlen)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), dass sie nur auf der **ETC** Blockchain ausgeführt wird.', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Sende nur Standard Transaktionen. Wenn du die Transaktion über eine der "Nur" Funktionen versendest, musst du den Support kontaktieren um deinen Betrag oder eine Rückerstattung zu erhalten. [Du kannst auch Shapeshifts "split" Werkzeug ausprobieren.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Keine Probleme bekannt. Nutzen, was dir lieber ist', + TRANSModal_Yes: 'Cool, jetzt hab ich\'s verstanden.', + TRANSModal_No: 'Bitte was? Ich bin noch verwirrter. Ich brauche Hilfe', + + /* Offline Transaction */ + OFFLINE_Title: 'Erzeuge & sende Offline Transaktionen', + OFFLINE_Desc: 'Offline Transaktionen können in drei Schritten erzeugt werden. Schritt 1 und 3 erledigst an einem Online Computer und Schritt 3 an einem Offline/abgeschirmten Computer. Dies stellt sicher, dass deine privaten Schlüssel nie ein mit dem Internet verbundenes Gerät berühren.', + OFFLLINE_Step1_Title: 'Schritt 1: Informationen sammeln (Online Computer)', + OFFLINE_Step1_Button: 'Informationen sammeln', + OFFLINE_Step1_Label_1: 'Von Adresse: ', + OFFLINE_Step1_Label_2: 'Hinweis: Dies ist die VON Adresse, nicht die AN Adresse. Die Nonce wird basierend auf dem Ursprungsaccount berechnet. Wenn du einen abgeschirmten Computer nutzt, wäre dies die Adresse deines "cold-storage".', + OFFLINE_Step2_Title: 'Schritt 2: Transaktion generieren (Offline Computer)', + OFFLINE_Step2_Label_1: 'An Adresse: ', + OFFLINE_Step2_Label_2: 'Zu sendender Betrag:', + OFFLINE_Step2_Label_3: 'Gaspreis ', + OFFLINE_Step2_Label_3b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 ist das Standard Gas Limit. Wenn du Verträge oder Daten sendest, musst du diesen Wert eventuell anpassen. Alles ungenutzte Gas wird dir zurück gesendet.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dies wurde dir in Schritt 1 an deinem Online Computer angezeigt.', + OFFLINE_Step2_Label_6: 'Daten', + OFFLINE_Step2_Label_6b: 'Dies ist optional. Daten werden meist in Transaktionen an Verträge verwendet.', + OFFLINE_Step2_Label_7: 'Gib deine privaten Schlüssel ein.', + OFFLINE_Step3_Title: 'Schritt 3: Transaktion senden/veröffentlichen (Online Computer)', + OFFLINE_Step3_Label_1: 'Kopiere die signierte Transaktion aus Schritt 2 hier hinein und drücke "TRANSAKTION SENDEN".', + + /* DAO */ + DAO_bal1: 'Bei Block 1,919,999', + DAO_bal2: 'momentan', // momentaner? + DAO_TitleETH: 'DAO Token in ETH umwandeln', + DAO_TitleETC: 'DAO Token in ETC umwandeln', + DAO_ETC_Label_1: 'An welche Adresse möchtest du deine ETC gesendet haben?', + DAO_ETC_Label_2: 'Die "White Hat Group" hat unermüdlich gearbeitet um deine ETC zurückzuholen. Wenn du möchtest, kannst du dich bedanken indem du einen Teil deiner ETC an sie spendest. ', + DAO_Desc: 'Nutze diesen Tab um deine DAO Token in ETH auszuzahlen. Wenn du DAO Token verschicken willst, nutze bitten den "Sende Tokens" Tab', + DAO_Inst: 'Ja, du musst einfach den großen roten Knopf drücken. Es ist so einfach.', + DAO_Warning: 'Wenn du den Fehler "Zu geringer Kontostand um Gaskosten zu decken" erhälst, musst du einen kleinen ether Betrag auf dein Konto überweisen um die Kosten zu decken. Überweise 0.001 Ether an dieses Konto und versuche es erneut. ', + DAOModal_Title: 'Nur zur Sicherheit...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Du bist dabei', + DAOModal_2: 'DAO Token an', + DAOModal_3: 'zu senden im Austausch für', // "in return for" + + /* Digix */ + DGD_Desc: 'Erhebe Anspruch auf deine DigixDAO (DGD) Token und Badges. Um dies zu tun, musst du bei dem Token Verkauf am 30./31. Mai 2016 teilgenommen haben. Falls du DGD versenden möchtest, nutze bitte den Sende Tokens Tab.', + DGD_Label_1: 'Erwartete Gebühren:', + DGD_Label_2: 'Maximal mögliche Gebühren:', /* Provided = Mögliche? */ + DGD_Label_3: 'Gaspreis:', + DGD_Generate: 'Anspruch geltend machen', + DGD_Content: 'Du bist dabei, deine DGD Token geltend zu machen.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode generieren', + DEP_generated: 'Generierter Bytecode', + DEP_signtx: 'Transaktion signieren', + DEP_interface: 'Generiertes Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Spitzname', + MYWAL_Address: 'Wallet Addresse', + MYWAL_Bal: 'Guthaben', + MYWAL_Edit: 'Bearbeiten', + MYWAL_View: 'Ansehen', + MYWAL_Remove: 'Löschen', + MYWAL_RemoveWal: 'Wallet löschen:', + MYWAL_WatchOnly: 'Deine Watch-Only Konten', + MYWAL_Viewing: 'Du siehst Wallet: ', + MYWAL_Hide: 'Wallet Info verstecken', + MYWAL_Edit_2: 'Wallet bearbeiten: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Achtung! Du bist gerade dabei dein Wallet zu löschen: ', + MYWAL_Content_2: 'Stelle sicher, dass du **die private Key/JSON Datei und das Passwort** deines Wallets gespeichert hast, bevor du es löschst.', + MYWAL_Content_3: 'Wenn du dieses Wallet in Zukunft mit MyEtherWallet CX verwenden willst, musst du es mittels der privaten Key/JSON Datei und deinem Passwort manuell wieder hinzufügen.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. Es wird empfohlen, dies zu tun um [Deinen Account in Geth/Mist zu importieren.](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Zum Überprüfen deines Kontostands empfehlen wir, einen Blockchain Explorer wie [etherscan.io](http://etherscan.io/) zu verwenden.', + VIEWWALLET_Subtitle_Short: 'Dies erlaubt dir den Download verschiedener Versionen deines privaten Schlüssel sowie das erneute Drucken deines Papier-Wallets. ', + VIEWWALLET_SuccessMsg: 'Erfolgreich! Hier sind die Daten deines Wallets.', + + /* Chrome Extension */ + CX_error_1: 'Du hast keine Wallets gespeichert. Klicke ["Wallet hinzufügen"](/cx-wallet.html#add-wallet) um eines hinzuzufügen!', + CX_quicksend: 'Senden', // Was "QuickSend". If no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Bitte gültigen Betrag eingeben', + ERROR_2: 'Dein Passwort muss mindestens 9 Zeichen lang sein. Bitte wähle ein sicheres Passwort. ', + ERROR_3: 'Oh oh! Wir haben den Typ der Wallet-Datei nicht erkannt. ', + ERROR_4: 'Dies ist keine gültige Wallet-Datei. ', + ERROR_5: 'Diese Einheit existiert nicht, bitte wähle eine dieser Einheiten aus ', + ERROR_6: 'Ungültige Addresse. ', + ERROR_7: 'Ungültiges Passwort. ', + ERROR_8: 'Ungültiger Betrag. ', + ERROR_9: 'Ungültiges Gaslimit. ', + ERROR_10: 'Ungültiger Datenwert. ', + ERROR_11: 'Ungültiger Gasbetrag. ', + ERROR_12: 'Ungültige Nonce. ', + ERROR_13: 'Ungültige unterzeichnete Transaktion. ', + ERROR_14: 'Ein Wallet mit diesem Spitznamen existiert bereits. ', + ERROR_15: 'Wallet nicht gefunden. ', + ERROR_16: 'Es sieht nicht so aus als würde ein Proposal mit dieser ID existieren oder es gab einen Fehler beim Lesen des Proposal. ', + ERROR_17: 'Es ist bereits ein Wallet mit dieser Adresse gespeichert. Bitte überprüfe die Seite deines Wallets. ', + ERROR_18: 'Du brauchst zumindest 0.001 ETH in deinem Account um die Gaskosten zu decken. Bitte füge ETH hinzu und versuche es noch einmal. ', + ERROR_19: 'Diese Transaktion würde dein gesamtes verbleibendes Gas verbrauchen. Das bedeutet, du hast bereits über dieses Proposal abgestimmt oder die Debattierphase ist zu Ende.', + ERROR_20: 'Ungültiges Symbol', + SUCCESS_1: 'Gültige Addresse', + SUCCESS_2: 'Wallet erfolgreich entschlüsselt', + SUCCESS_3: 'Transaktion übermittelt. TX ID: ', + SUCCESS_4: 'Dein Wallet wurde erfolgreich hinzugefügt: ', + SUCCESS_5: 'Du hast erfolgreich abgestimmt. Danke, dass du eine aktive Teilnehmerin/aktiver Teilnehmer am DAO bist.', + SUCCESS_6: 'Ausgewählte Datei: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Vielen Dank an unsere ÜbersetzerInnen:', + TranslatorName_1: 'christoph2806 · K ·', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '[mawalu](https://www.myetherwallet.com/?gaslimit=21000&to=0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3&value=1.0#send-transaction) ·', + TranslatorAddr_2: '0xA6e9A24981aFB71f96C7330618139a7B34BCdEc3', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'huhn_solo · ', + TranslatorAddr_3: '0x1DAd1765381460db9A44846cDfA6f74c65A06B77', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '[FelixA](https://www.myetherwallet.com/?gaslimit=21000&to=0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D&value=1.0#send-transaction) · ', + TranslatorAddr_4: '0xb6999051b0Bfad32E192e107181E0ac72bE7EE3D ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: 'danielsun174 · ffidan61', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Falls du vor dem **31.12.2015** ein Wallet generiert, oder das Repository heruntergeladen hast, bitte überprüfe deine Wallets & lade eine neue Version des Repositories herunter. Klick für details.', + HELP_Desc: 'Hast du das Gefühl etwas fehlt? Hast du eine andere Frage? [Schreib uns](mailto:myetherwallet@gmail.com) und wir werden nicht nur deine Frage beantworten, wir werden auch die Seite updaten, damit diese in der Zukunft noch einfacher zu bedienen sein wird!', + HELP_Remind_Title: 'Ein paar Reminder', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, sowie einige der verwendeten Javascript Bibliotheken, die wir verwenden, befinden sich noch in Entwicklung.** Zwar haben wir alles umfassend getestet und es wurden erfolgeich tausende Wallets von Menschen aus aller Welt kreiert, jedoch bestimmt immer eine gewisse Gefahr, dass etwas unerwartetes passiert und dein Ether verloren geht. Bitte investiere nicht mehr als du verlieren kannst, und sei immer vorsichtig. Sollte etwas schlimmes passieren, **können wir uns leider nicht verantwortlich für einen Verlust zeichnen**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX sind keine "web wallets". Du erstellst keinen Account oder sendest uns Ether den wir halten. Alle Daten bleiben auf deinem Computer, bzw. Browser. Unser Auftrag ist es, dir das Erstellen, Speichern und Zugreifen auf deine Accounts zu vereinfachen, sowie dir eine simple Möglichkeit zur Interaktion mit der Blockchain zu bieten.', + HELP_Remind_Desc_3: 'Falls du deinen privaten Schlüssel und Passwort nicht speicherst, gibt es keine Möglichkeit den Zugriff auf das Konto und die darauf befindlichen Mittel wieder herzustellen. Bitte erstelle Back-ups und speichere deine Zugriffsdaten an verschiedenen Orten – nicht nur deinem Computer!', + + HELP_0_Title: '0) Ich bin neu. Was soll ich machen?', + HELP_0_Desc_1: 'MyEtherWallet bietet dir die Möglichkeit neue Wallets zu generieren, damit du deinen Ether selbst speichern kannst, und keine Exchange nutzen musst. Dieser Prozess findet ausschließlich auf deinem Computer statt. Daher bist auch **du dafür Verantwortlich, Back-ups zu erstellen** wenn du ein Wallet verwenden möchtest.', + HELP_0_Desc_2: 'Erstelle ein neues Wallet.', + HELP_0_Desc_3: 'Erstelle ein Back-up deines Wallets.', + HELP_0_Desc_4: 'Verifiziere, dass du Zugriff auf dein neues Wallet hast und alle nötigen Informationen korrekt gespeichert sind.', + HELP_0_Desc_5: 'Überweise Ether auf das neue Wallet.', + + HELP_1_Title: '1) Wie erstelle ich ein neues Wallet?', + HELP_1_Desc_1: 'Geh zur "Wallet hinzufügen" Seite.', + HELP_1_Desc_2: 'Geh zur "Wallet hinzufügen" Seite & wähle "Neues Wallet erstellen" aus.', + HELP_1_Desc_3: 'Wähle ein starkes Passwort aus. Falls du glaubst, dass du es vergessen könntest, speichere es an einem sicheren Ort ab. Du benötigst das Passwort um Transaktionen zu tätigen.', + HELP_1_Desc_4: 'Klicke auf "Wallet erstellen".', + HELP_1_Desc_5: 'Dein Wallet wurde nun erstellt.', + + HELP_2a_Title: '2a) Wie speichere ich/erstelle Back-ups meines Wallets?', + HELP_2a_Desc_1: 'Du solltest dein Wallet immer an verschiedenen physischen Orten abspeichern - beispielsweise auf einem USB-Stick und/oder einem Stück Papier.', + HELP_2a_Desc_2: 'Speichere die Adresse. Du kannst sie für dich behalten oder mit anderen teilen. Auf diese Adresse können andere Ether an dich senden.', + HELP_2a_Desc_3: 'Speiche verschiedene Versionen deines privaten Schlüssels. Teile ihn nicht mit jemand anderem. Dein privater Schlüssel ist notwendig, wenn du auf deinen Ether zugreifen willst, um eine Überweisung zu tätigen! Es gibt 3 Arten des privaten Schlüssels:', + HELP_2a_Desc_4: 'Speichere deine Adresse, die verschiedenen Versionen des privaten Schlüssels, sowie eine PDF deines Papier-Wallets in einem Ordner. Speichere diesen auf deinem Computer und einem USB-Stick.', + HELP_2a_Desc_5: 'Drucke das Wallet falls du einen Drucker hast. Andernfalls, schreibe deinen privaten Schlüssel und die Adresse auf ein Blatt Papier. Lagere dieses an einem sicheren Ort, abseits von deinem Computer und dem USB-Stick.', + HELP_2a_Desc_6: 'Bitte denk daran, dass du den Verlust des Schlüssels aufgrund des Verlusts oder Versagen deiner Festplatte, des USB-Sticks oder dem Papier, selbst verhindern musst. Erwäge daher auch Situationen wie ein Feuer oder eine Überflutung.', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) Wie kann ich Ether von einer Wallet zur anderen senden?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) Wie kann ich Ether über MyEtherWallet CX senden?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) Wie kann ich MyEtherWallet.com offline/lokal starten? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Gehe zur GitHub Repo: github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klick auf Download Zip oben rechts.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Entpacke es.', + HELP_5_Desc_6: 'Starte mit einem Doppelklick `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Wenn du an einem PC bist:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = de; },{}],38:[function(require,module,exports){ -// Greek -'use strict'; -var el = function() {} -el.code = 'el'; -el.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - SUCCESS_6: 'File Selected: ', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* Navigation*/ - NAV_YourWallets: 'Τα Πορτοφόλια σας', - NAV_AddWallet: 'Προσθήκη Πορτοφολιού', - NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', - NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', - NAV_SendEther: 'Αποστολή Ether', - NAV_SendTokens: 'Αποστολή Tokens', - NAV_Offline: 'Αποστολή εκτός Σύνδεσης', - NAV_WithdrawDAO: 'Ανάληψη DAO', - DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', - NAV_ClaimDGD: 'Διεκδίκηση DGD', - DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', - NAV_MyWallets: 'Τα Πορτοφόλια μου', - NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', - NAV_Help: 'Βοήθεια', - NAV_Contact: 'Επικοινωνία', - - /* General */ - x_Wallet: 'Πορτοφόλι', - x_Password: 'Κωδικός', - x_Download: 'Λήψη', - x_Address: 'Η Διεύθυνσή σας', - x_Save: 'Αποθήκευση', - x_Cancel: 'Ακύρωση', - x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', - x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', - x_PrivKey2: 'Ιδιωτικό Κλειδί', - x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', - x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', - x_Keystore2: 'Αρχείο Keystore/JSON', - x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', - x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', - x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', - x_PrintShort: 'Εκτύπωση', - x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', - x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', - x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', - x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', - - /* Header */ - MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', - CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', - MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', - - /* Footer */ - FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', - FOOTER_1b: 'Δημιουργήθηκε από', - FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', - FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', - - /* Sidebar */ - sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', - sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', - sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', - sidebar_TokenBal: 'Υπόλοιπο Token: ', - sidebar_Equiv: 'Ισότιμες Αξίες: ', - sidebar_TransHistory: 'Ιστορικό Συναλλαγών', - sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', - sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', - sidebar_donate: 'Δωρεά', - sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', - decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', - decrypt_Select: 'Επιλέξτε Πορτοφόλι:', - - /* Add Wallet */ - ADD_Label_1: 'Τι θα θέλατε να κάνετε;', - ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', - ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', - ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', - ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', - ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', - ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', - ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', - ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', - ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', - ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', - ADD_Label_6_short: 'Ξεκλείδωμα', - ADD_Label_7: 'Προσθήκη Λογαριασμού', - - /* Generate Wallets */ - GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', - GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', - GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', - GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', - GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', - GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', - GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', - GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', - BULK_Label_2: 'Δημιουργία Πορτοφολιών', - BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Προς Διεύθυνση: ', - SEND_amount: 'Ποσό για αποστολή: ', - SEND_amount_short: 'Ποσό', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', - SEND_raw: 'Ακατέργαστη Συναλλαγή', - SEND_signed: 'Υπογεγραμμένη Συναλλαγή', - SEND_trans: 'Αποστολή Συναλλαγής', - SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', - SENDModal_Title: 'Προσοχή! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Πρόκειται να στείλετε', - SENDModal_Content_2: 'στη διεύθυνση', - SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', - SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', - SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', - SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', - SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', - - /* Tokens */ - TOKEN_Addr: 'Διεύθυνση: ', - TOKEN_Symbol: 'Σύμβολο Token: ', - TOKEN_Dec: 'Δεκαδικά: ', - - /* Send Transaction */ - TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', - TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', - TRANS_standard: 'ETH (Standard Συναλλαγή)', - TRANS_eth: 'Μόνο ETH', - TRANS_etc: 'Μόνο ETC', - TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', - TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', - TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', - TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', - TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', - - /* Offline Transaction */ - OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', - OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', - OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', - OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', - OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', - OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', - OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', - OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', - OFFLINE_Step2_Label_3: 'Τιμή Gas ', - OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_4: 'Όριο Gas ', - OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', - OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', - OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', - OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', - - /* DAO */ - DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', - DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', - DAOModal_Title: 'Απλά για σιγουριά...', - - /* Digix */ - DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', - DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', - DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', - DGD_Label_3: 'Τιμή Gas:', - DGD_Generate: 'Δημιουργία Διεκδίκησης', - DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', - - /* My Wallet */ - MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', - MYWAL_Address: 'Διεύθυνση Πορτοφολιού', - MYWAL_Bal: 'Υπόλοιπο', - MYWAL_Edit: 'Επεξεργασία', - MYWAL_View: 'Προβολή', - MYWAL_Remove: 'Αφαίρεση', - MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', - MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', - MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', - MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', - MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', - MYWAL_Name: 'Όνομα Πορτοφολιού', - MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', - MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', - MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', - VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', - - /* CX */ - CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', - CX_quicksend: 'ΤαχυΑποστολή', - - /* Error Messages */ - ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', - ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', - ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', - ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', - ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', - ERROR_6: 'Λάθος Διεύθυνση. ', - ERROR_7: 'Λάθος κωδικός. ', - ERROR_8: 'Λάθος ποσό. ', - ERROR_9: 'Λάθος όριο gas. ', - ERROR_10: 'Λάθος data value. ', - ERROR_11: 'Λάθος ποσό gas. ', - ERROR_12: 'Λάθος nonce. ', - ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', - ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', - ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', - ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', - ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', - ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', - ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', - ERROR_20: 'Λάθος σύμβολο', - SUCCESS_1: 'Έγκυρη διεύθυνση', - SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', - SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', - SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', - SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', - TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'LefterisJP', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: 'Nikos Vavoulas ', - TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', - HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', - HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', - HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', - HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', - HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', - - HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', - HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', - HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', - HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', - HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', - HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = el; +// Greek +'use strict'; +var el = function() {} +el.code = 'el'; +el.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + SUCCESS_6: 'File Selected: ', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Τα Πορτοφόλια σας', + NAV_AddWallet: 'Προσθήκη Πορτοφολιού', + NAV_GenerateWallet: 'Δημηουργία Πορτοφολιού', + NAV_BulkGenerate: 'Δημιουργία Πολλών Πορτοφολιών', + NAV_SendEther: 'Αποστολή Ether', + NAV_SendTokens: 'Αποστολή Tokens', + NAV_Offline: 'Αποστολή εκτός Σύνδεσης', + NAV_WithdrawDAO: 'Ανάληψη DAO', + DAO_TitleLong: 'Ανάληψη των Dao Tokens σας ως ETH', + NAV_ClaimDGD: 'Διεκδίκηση DGD', + DGD_TitleLong: 'Διεκδικήστε τα DGD Tokens σας', + NAV_MyWallets: 'Τα Πορτοφόλια μου', + NAV_ViewWallet: 'Προβολή Πληροφοριών Πορτοφολιού', + NAV_Help: 'Βοήθεια', + NAV_Contact: 'Επικοινωνία', + + /* General */ + x_Wallet: 'Πορτοφόλι', + x_Password: 'Κωδικός', + x_Download: 'Λήψη', + x_Address: 'Η Διεύθυνσή σας', + x_Save: 'Αποθήκευση', + x_Cancel: 'Ακύρωση', + x_AddessDesc: 'Γνωστή και ως "Αριθμός Λογαριασμού" σας ή "Δημόσιο Κλειδί" σας. Αυτή δίνετε σε όσους επιθυμούν να σας στείλουν ether. Το εικονίδιο είναι ένας εύκολος τρόπος αναγνώρισης της διεύθυνσής σας.', + x_PrivKey: 'Ιδιωτικό Κλειδί (μη κρυπτογραφημένο)', + x_PrivKey2: 'Ιδιωτικό Κλειδί', + x_PrivKeyDesc: 'Αυτό το κείμενο είναι η μη κρυπτογραφημένη εκδοχή του Ιδιωτικού Κλειδιού σας που σημαίνει ότι δεν απαιτείται κωδικός. Στην περίπτωση που κάποιος βρει το μη κρυπτογραφημένο Ιδιωτικό Κλειδί σας, έχει πρόσβαση στο πορτοφόλι σας χωρίς κωδικό. Για αυτόν τον λόγο, συνήθως συνιστώνται οι κρυπτογραφημένες εκδοχές.', + x_Keystore: 'Αρχείο Keystore/JSON (Συνιστάται · Κρυπτογραφημένο · Μορφή Mist/Geth)', + x_Keystore2: 'Αρχείο Keystore/JSON', + x_KeystoreDesc: 'Αυτό το Αρχείο Keystore/JSON έχει την ίδια μορφή που χρησιμοποιείται από το Mist & Geth ώστε να μπορείτε εύκολα να το εισάγετε στο μέλλον. Είναι το συνιστώμενο αρχείο για λήψη και δημιουργία αντιγράφου ασφαλείας.', + x_Json: 'Αρχείο JSON (μη κρυπτογραφημένο)', + x_JsonDesc: 'Αυτή είναι η μη κρυπτογραφημένη, JSON μορφή του Ιδιωτικού Κλειδιού σας. Αυτό σημαίνει ότι δεν απαιτείται κωδικός όμως οποιοσδήποτε βρει το JSON σας έχει πρόσβαση στο πορτοφόλι και τα Ether σας χωρίς κωδικό.', + x_PrintShort: 'Εκτύπωση', + x_Print: 'Εκτύπωση Χάρτινου Πορτοφολιού', + x_PrintDesc: 'Συμβουλή: Κλικάρετε "Εκτύπωση και Αποθήκευση ως PDF" ακόμη κι αν δεν έχετε εκτυπωτή!', + x_CSV: 'Αρχείο CSV (μη κρυπτογραφημένο)', + x_TXT: 'Αρχείο TXT (μη κρυπτογραφημένο)', + + /* Header */ + MEW_Warning_1: 'Πάντα να ελέγχετε την διεύθυνση URL προτού μπείτε στο πορτοφόλι σας ή δημιουργήσετε καινούριο πορτοφόλι. Προσοχή στις σελίδες ηλεκτρονικού ψαρέματος!', + CX_Warning_1: 'Σιγουρευτείτε ότι έχετε **εξωτερικά αντίγραφα ασφαλείας** όλων των πορτοφολιών που αποθηκεύετε εδώ. Μπορούν να συμβούν διάφορα που θα προκαλούσαν απώλεια των δεδομένων σας σε αυτήν την επέκταση Chrome, συμπεριλαμβανομένης απεγκατάστασης και επανεγκατάστασης της επέκτασης. Αυτή η επέκταση είναι ένας τρόπος εύκολης πρόσβασης στα πορτοφόλια σας και **όχι** ένας τρόπος να δημηιουργήσετε αντίγραφα ασφαλείας τους.', + MEW_Tagline: 'Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + CX_Tagline: 'Επέκταση Chrome για Ασφαλές Πορτοφόλι Ether Ανοιχτού Κώδικα JavaScript από την πλευρά του Πελάτη', + + /* Footer */ + FOOTER_1: 'Ένα εργαλείο ανοιχτού κώδικα, javascript, από πλευράς πελάτη για την δημιουργία Πορτοφολιών Ethereum & αποστολή συναλλαγών.', + FOOTER_1b: 'Δημιουργήθηκε από', + FOOTER_2: 'Εκτιμούμε πολύ τις δωρεές σας:', + FOOTER_3: 'Δημιουργία Πορτοφολιών από πλευράς πελάτη από', + + /* Sidebar */ + sidebar_AccountInfo: 'Πληροφορίες Λογαριασμού: ', + sidebar_AccountAddr: 'Διεύθυνση Λογαριασμού: ', + sidebar_AccountBal: 'Υπόλοιπο Λογαριασμού: ', + sidebar_TokenBal: 'Υπόλοιπο Token: ', + sidebar_Equiv: 'Ισότιμες Αξίες: ', + sidebar_TransHistory: 'Ιστορικό Συναλλαγών', + sidebar_DGDBal: 'Πληροφορίες Προαγοράς DGD:', + sidebar_donation: 'Το MyEtherWallet είναι μία δωρεάν υπηρεσία ανοιχτού κώδικα αφοσιωμένη στην ιδιωτικότητα και την ασφάλεια σας. Όσο περισσότερες δωρεές λαμβάνουμε, τόσο περισσότερο χρόνο αφιερώνουμε στη δημιουργία νέων χαρακτηριστικών καθώς και την αξιολόγηση και εφαρμογή όσων μας προτείνετε. Είμαστε απλά δύο άνθρωποι που προσπαθούν να αλλάξουν τον κόσμο. Θα μας βοηθήσετε; ', + sidebar_donate: 'Δωρεά', + sidebar_thanks: 'ΣΑΣ ΕΥΧΑΡΙΣΤΟΥΜΕ!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Πώς θα θέλατε να έχετε πρόσβαση στο Πορτοφόλι σας;', + decrypt_Title: 'Επιλέξτε την μορφή του Ιδιωτικού Κλειδιού σας:', + decrypt_Select: 'Επιλέξτε Πορτοφόλι:', + + /* Add Wallet */ + ADD_Label_1: 'Τι θα θέλατε να κάνετε;', + ADD_Radio_1: 'Δημιουργία Νέου Πορτοφολιού', + ADD_Radio_2: 'Επιλέξτε το αρχείο Πορτοφολιού σας (Keystore / JSON)', + ADD_Radio_2_short: 'ΕΠΙΛΕΞΤΕ ΑΡΧΕΙΟ ΠΟΡΤΟΦΟΛΙΟΥ...', + ADD_Radio_3: 'Επικολλήστε/Πληκτρολογήστε το Ιδιωτικό Κλειδί σας', + ADD_Radio_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Label_2: 'Δημιουργία Ψευδωνύμου:', + ADD_Label_3: 'Το πορτοφόλι σας είναι κρυπτογραφημένο. Παρακαλώ εισάγετε τον κωδικό: ', + ADD_Label_4: 'Προσθήκη Λογαριασμού προς Παρακολούθηση', + ADD_Warning_1: 'Μπορείτε να προσθέσετε έναν λογαριασμό προς "παρακολούθηση" στην καρτέλα πορτοφολιών χωρίς να ανεβάσετε ιδιωτικό κλειδί. Αυτό ** δεν ** σημαίνει ότι έχετε πρόσβαση στο πορτοφόλι, ούτε ότι μπορείτε να μεταφέρετε Ether από αυτό.', + ADD_Label_5: 'Εισάγετε την Διεύθυνση: ', + ADD_Label_6: 'Ξεκλειδώστε το Πορτοφόλι σας', + ADD_Label_6_short: 'Ξεκλείδωμα', + ADD_Label_7: 'Προσθήκη Λογαριασμού', + + /* Generate Wallets */ + GEN_desc: 'Αν επιθυμείτε να δημιουργήσετε πολλά πορτοφόλια, μπορείτε να το κάνετε εδώ:', + GEN_Label_1: 'Εισάγετε ισχυρό κωδικό (τουλάχιστον 9 χαρακτήρες)', + GEN_Placeholder_1: 'ΜΗΝ ξεχάσετε να τον αποθηκεύσετε!', + GEN_SuccessMsg: 'Επιτυχία! Το πορτοφόλι σας δημιουργήθηκε.', + GEN_Warning: 'Προκειμένου να έχετε πρόσβαση σε αυτό το πορτοφόλι στο μέλλον **είναι απαραίτητο το αρχείο Keystore/JSON & ο κωδικός ή το Ιδιωτικό Κλειδί σας**. Παρακαλούμε κρατήστε ένα εξωτερικό αντίγραφο ασφαλείας! Δεν υπάρχει τρόπος ανάκτησης ενός πορτοφολιού άν δεν το αποθηκέυσετε. Διαβάστε την σελίδα [Βοήθειας](https://www.myetherwallet.com/#help) για οδηγίες.', + GEN_Label_2: 'Αποθηκεύστε το αρχέιο Keystore/JSON ή το Ιδιωτικό Κλειδί. Μην ξεχάσετε τον παραπάνω κωδικό.', + GEN_Label_3: 'Αποθηκέυστε την Διεύθυνση σας.', + GEN_Label_4: 'Εκτυπώστε το χάρτινο Πορτοφόλι σας ή αποθηκέυστε την εκδοχή με QR code. (προαιρετικό)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Αριθμός Πορτοφολιών για Δημιουργία', + BULK_Label_2: 'Δημιουργία Πορτοφολιών', + BULK_SuccessMsg: 'Επιτυχία! Τα πορτοφόλια σας δημιουργήθηκαν.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Προς Διεύθυνση: ', + SEND_amount: 'Ποσό για αποστολή: ', + SEND_amount_short: 'Ποσό', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Δημιουργία Υπογεγραμμένης Συναλλαγής', + SEND_raw: 'Ακατέργαστη Συναλλαγή', + SEND_signed: 'Υπογεγραμμένη Συναλλαγή', + SEND_trans: 'Αποστολή Συναλλαγής', + SEND_TransferTotal: 'Μεταφορά συνολικού διαθέσιμου υπολοίπου', + SENDModal_Title: 'Προσοχή! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Πρόκειται να στείλετε', + SENDModal_Content_2: 'στη διεύθυνση', + SENDModal_Content_3: 'Είστε σίγουροι ότι θέλετε να το κάνετε;', + SENDModal_Content_4: 'ΣΗΜΕΙΩΣΗ: Αν αντιμετωπίσετε σφάλμα, το πιο πιθανό χρειάζεται να προσθέσετε ether στον λογαριασμό σας για να καλύψετε το κόστος gas για την αποστολή token. Το gas πληρώνεται σε ether.', + SENDModal_No: 'Όχι, θέλω να φύγω από εδώ!', + SENDModal_Yes: 'Ναι, είμαι σίγουρος/η! Εκτελέστε την συναλλαγή.', + SEND_TransferTotal: 'Μεταφορά όλου του υπάρχοντος υπολοίπου', + + /* Tokens */ + TOKEN_Addr: 'Διεύθυνση: ', + TOKEN_Symbol: 'Σύμβολο Token: ', + TOKEN_Dec: 'Δεκαδικά: ', + + /* Send Transaction */ + TRANS_desc: 'Άν επιθυμείτε να στείλετε Tokens, παρακαλώ χρησιμοποιήστε την σελίδα "Αποστολή Token".', + TRANS_warning: 'Άν χρησιμοποιείτε τις λειτουργίες "Μόνο ETH" ή "Μόνο ETC", η αποστολή γίνεται μέσω contracts. Ορισμένες υπηρεσίες παρουσιάζουν προβλήματα με την αποδοχή τέτοιων συναλλαγών. Διαβάστε περισσότερα.', + TRANS_standard: 'ETH (Standard Συναλλαγή)', + TRANS_eth: 'Μόνο ETH', + TRANS_etc: 'Μόνο ETC', + TRANS_advanced: '+Για προχωρημένους: Προσθήκη παραπάνω Gas ή Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Μία standard συναλλαγή που χρησιμοποιεί 21000 gas θα κοστίσει 0,000441 ETH. Χρησιμοποιούμε για τιμή gas 0.000000021 ETH που είναι λίγο πάνω απο την ελάχιστη ώστε διασφαλίσουμε οτι θα επικυρωθεί γρήγορα. Δεν παίρνουμε προμήθεια για την συναλλαγή.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Συναλλαγές "Μόνο ETH" και "Μόνο ETC"', + TRANSModal_Content_0: 'Μια σημείωση για τις διάφορετικές συναλλαγές και διαφορετικές υπηρεσίες συναλλαγών:', + TRANSModal_Content_1: '**ETH (Standard Συναλλαγή): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Μόνο ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Μόνο ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Αποστέλλετε μόνο με Standard Συναλλαγή. Αν στείλετε με τα "Μόνο" contracts, θα χρεαιστεί να έρθετε σε επφή με το προσωπικό υποστήριξης τους ώστε να σας βοηθήσουν με χειροκίνητη μεταφορά υπολοίπων ή επιστροφή χρημάτων.[Μπορείτε επίσης να δοκιμάσετε το εργαλείο "διαχωρισμού" του Shapeshift](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Δεν υπάρχουν γνωστά προβλήματα. Αποστέλλετε με οποιαδήποτε μέθοδο.', + TRANSModal_Yes: 'Τέλεια, το κατάλαβα.', + TRANSModal_No: 'Πωπω, μπερδεύτηκα ακόμη περισσότερο. Βοηθήστε με.', + + /* Offline Transaction */ + OFFLINE_Title: 'Δημιουργία και Αποστολή Συναλλαγής εκτός Σύνδεσης', + OFFLINE_Desc: 'Η δημιουργία συναλλαγών εκτός σύνδεσης μπορεί να γίνει σε τρία βήματα. Θα προβείτε στα βήματα 1 και 3 σε έναν συνδεδεμένο υπολογιστή και το βήμα 2 σε έναν εκτός σύνδεσης/αποκομμένο υπολογιστή. Αυτό εξασφαλίζει ότι τα ιδιωτικά κλειδιά σας δεν έρχονται σε επαφή με συσκευή συνδεδεμένη στο διαδίκτυο.', + OFFLLINE_Step1_Title: 'Βήμα 1: Δημιουργία Πληροφοριών (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step1_Button: 'Δημιουργία Πληροφοριών', + OFFLINE_Step1_Label_1: 'Από Διεύθυνση:', + OFFLINE_Step1_Label_2: 'Σημείωση: Αυτή είναι η Διεύθυνση ΑΠΟΣΤΟΛΕΑ, ΟΧΙ η Διεύθυνση. Το nonce δημιουργείται απο τον λογαριασμό προέλευσης. Αν χρησιμοποιείται αποκομμένο υπολογιστή, πρόκειται για την διεύθυνση του λογαριασμού σε cold-storage.', + OFFLINE_Step2_Title: 'Step 2: Δημιουργία Συναλλαγής (εκτός Σύνδεσης Υπολογιστής)', + OFFLINE_Step2_Label_1: 'Προς Διεύθυνση: ', + OFFLINE_Step2_Label_2: 'Αξία / Ποσό για Αποστολή', + OFFLINE_Step2_Label_3: 'Τιμή Gas ', + OFFLINE_Step2_Label_3b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_4: 'Όριο Gas ', + OFFLINE_Step2_Label_4b: '21000 είναι το προεπιλεγμένο όριο gas. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Εμφανίστηκε στο Βήμα 1 στον συνδεδεμένο υπολογιστή σας.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Αυτό είναι προαιρετικό. Data συνήθως χρησιμοποιούνται όταν αποστέλλονται συναλλαγές σε contracts.', + OFFLINE_Step2_Label_7: 'Εισαγωγή / Επιλογή του Ιδιωτικού Κλειδιού / JSON.', + OFFLINE_Step3_Title: 'Βήμα 3: Δημοσίευση Συναλλαγής (Συνδεδεμένος Υπολογιστής)', + OFFLINE_Step3_Label_1: 'Επικολλήστε την υπογεγραμμένη συναλλαγή εδώ και πατήστε το κουμπί "ΑΠΟΣΤΟΛΗ ΣΥΝΑΛΛΑΓΗΣ".', + + /* DAO */ + DAO_Desc: 'Χρησιμοποιείστε αυτήν την καρτέλα για να κάνετε Ανάληψη των DAO Tokens σας ως ETH. Αν επιθυμείτε να αποστείλετε DAO, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DAO_Inst: 'Ναι. Απλά πατάτε το μεγάλο κόκκινο κουμπί. Είναι τόσο απλό.', + DAO_Warning: 'Αν δέχεστε σφάλμα "Aνεπαρκές υπόλοιπο για gas", θα πρέπει να έχετε ένα μικρό ποσό ether στον λογαριασμό σας έτσι ώστε να καλύψετε το κόστος του gas. Προσθέστε 0.001 ether στον λογαριασμό αυτό και προσπαθήστε ξανά. ', + DAOModal_Title: 'Απλά για σιγουριά...', + + /* Digix */ + DGD_Desc: 'Διεκδικήστε τα DigixDAO (DGD) tokens & badges σας. Για να τα διεκδικήσετε, πρέπει να είχατε συμμετάσχει στην προαγορά tokens στις 30/31 Μαρτίου του 2016. Αν επιθυμείτε να αποστείλετε DGD, παρακαλώ χρησιμοποιήστε την καρτέλα Αποστολή Tokens.', + DGD_Label_1: 'Εκτιμώμενη Κατανάλωση Εξόδων:', + DGD_Label_2: 'Παρεχόμενα Μέγιστα Έξοδα:', + DGD_Label_3: 'Τιμή Gas:', + DGD_Generate: 'Δημιουργία Διεκδίκησης', + DGD_Content: 'Πρόκειται να διεκδικήσετε τα DGD Tokens σας.', + + /* My Wallet */ + MYWAL_Nick: 'Ψευδώνυμο Πορτοφολιού', + MYWAL_Address: 'Διεύθυνση Πορτοφολιού', + MYWAL_Bal: 'Υπόλοιπο', + MYWAL_Edit: 'Επεξεργασία', + MYWAL_View: 'Προβολή', + MYWAL_Remove: 'Αφαίρεση', + MYWAL_RemoveWal: 'Αφαίρεση Πορτοφολιού:', + MYWAL_WatchOnly: 'Οι Μόνο-προς-παρακολούθηση-Λογαριασμοί', + MYWAL_Viewing: 'Προβάλλεται το Πορτοφόλι: ', + MYWAL_Hide: 'Απόκρυψη Πληροφοριών Πορτοφολιού', + MYWAL_Edit: 'Επεξεργασία Πορτοφολιού: ', + MYWAL_Name: 'Όνομα Πορτοφολιού', + MYWAL_Content_1: 'Προσοχή! Πρόκειται να αφαιρέσετε το πορτοφόλι σας.', + MYWAL_Content_2: 'Σιγουρευτείτε ότι έχετε **αποθηκεύσει το αρχέιο Keystore/JSON και τον κωδικό** του πορτοφολιού αυτού πριν το αφαιρέσετε.', + MYWAL_Content_3: 'Αν θέλετε να χρησιμοποιήσετε το ποροτοφόλι αυτό με το MyEtherWalletCX στο μέλλον, θα χρειαστεί να το ξαναπροσθέσετε χειροκίνητα χρησιμοποιώντας το Ιδιωτικό Κλειδί/JSON και τον κωδικό.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας. Ίσως επιθυμείτε να το κάνετε προκειμένου να [εισάγετε τον Λογαριασμό σας στο Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Αν επιθυμείτε να ελέγξετε το υπόλοιπό σας, συνιστούμε να χρησιμοποιήσετε ένα εργαλείο εξερεύνησης blockchain όπως το [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Αυτό σας επιτρέπει να κατεβάσετε διαφορετικές εκδοχές των ιδιωτικών κλειδιών σας και να επανεκτυπώσετε το χάρτινο πορτοφόλι σας.', + VIEWWALLET_SuccessMsg: 'Επιτυχία! Εδώ είναι οι πληροφορίες για το πορτοφόλι σας.', + + /* CX */ + CX_error_1: 'Δεν έχετε αποθηκευμένα πορτοφόλια. Κάντε κλικ στο ["Προσθήκη Πορτοφολιού"](/cx-wallet.html#add-wallet) για να προσθεσετε ένα!', + CX_quicksend: 'ΤαχυΑποστολή', + + /* Error Messages */ + ERROR_1: 'Παρακαλώ εισάγετε έγκυρο ποσό.', + ERROR_2: 'Ο κωδικός σας πρέπει να αποτελείται απο τουλάχιστον 9 χαρακτήρες. Παρακαλώ σιγουρευτείτε ότι είναι ισχυρός κωδικός. ', + ERROR_3: 'Συγγνώμη! Δεν αναγνωρίζουμε αυτού του είδους αρχεία πορτοφολιού ', + ERROR_4: 'Αυτό δεν είναι έγκυρο αρχείο πορτοφολιού. ', + ERROR_5: 'Αυτή η μονάδα δεν υπάρχει, παρακαλώ χρησιμοποιήστε μία απο τις ακόλουθες μονάδες:', + ERROR_6: 'Λάθος Διεύθυνση. ', + ERROR_7: 'Λάθος κωδικός. ', + ERROR_8: 'Λάθος ποσό. ', + ERROR_9: 'Λάθος όριο gas. ', + ERROR_10: 'Λάθος data value. ', + ERROR_11: 'Λάθος ποσό gas. ', + ERROR_12: 'Λάθος nonce. ', + ERROR_13: 'Λάθος υπογεγραμμένη συναλλαγή. ', + ERROR_14: 'Υπάρχει ήδη πορτοφόλι με αυτό το ψευδώνυμο. ', + ERROR_15: 'Δεν βρέθηκε πορτοφόλι. ', + ERROR_16: 'Φαίνετα να μην υπάρχει ακόμη πρόταση με αυτό το ID ή υπήρξε σφάλμα κατά την ανάγνωση της πρότασης αυτής. ', + ERROR_17: 'Υπάρχει ήδη αποθηκευμένο πορτοφόλι με αυτή την διεύθυνση. Παρακαλώ ελέγξτε την σελίδα πορτοφολιών σας. ', + ERROR_18: 'Πρέπει να έχετε τουλάχιστον 0.001 ETH στον λογαριασμό σας για να καλύψετε το κόστος του gas. Παρακαλώ προσθέστε μερικά ether και δοκιμάστε ξανά. ', + ERROR_19: 'Όλο το gas θα είχε δαπανηθεί στην συναλλαγή αυτή. Αυτό σημαίνει ότι έχετε ήδη ψηφίσει στην πρόταση αυτή ή ότι η περίοδος συζήτησης έχει λήξει.', + ERROR_20: 'Λάθος σύμβολο', + SUCCESS_1: 'Έγκυρη διεύθυνση', + SUCCESS_2: 'Το πορτοφόλι αποκρυπτογραφήθηκε επιτυχώς', + SUCCESS_3: 'Η συναλλαγή υποβλήθηκε. TX ID: ', + SUCCESS_4: 'Το πορτοφόλι σας προστέθηκε επιτυχώς: ', + SUCCESS_5: 'Έχετε ψηφίσει επιτυχώς. Ευχαριστούμε για την ενεργή σας συμμετοχή στο DAO.', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Ευχαριστούμε τους μεταφραστές μας: ', + TranslatorName_1: '[VitalikFanBoy#117](https://www.myetherwallet.com/?gaslimit=21000&to=0x245f27796a44d7e3d30654ed62850ff09ee85656&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x245f27796a44d7e3d30654ed62850ff09ee85656', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'LefterisJP', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: 'Nikos Vavoulas ', + TranslatorAddr_3: '0x062711C89Bd46E9765CfF0b743Cb83a9dBA2d2d2', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) Είμαι νέος χρήστης. Τι κάνω?', + HELP_0_Desc_1: 'Το MyEtherWallet σας δίνει την δυνατότητα να δημιουργήσετε νέα πορτοφόλια ώστε να μπορείτε να αποθηκεύσετε το Ether σας μόνοι σας, και όχι σε κάποιο ανταλλακτήριο (exchange provider). Αυτή η διαδικασία συμβαίνει εξ\'ολοκλήρου στον υπολογιστή σας, και όχι στους servers μας. Γι\'αυτό, όταν δημιουργείτε ένα νέο πορτοφόλι, **εσείς είστε υπεύθυνοι να κρατήσετε αντίγραφα ασφαλείας**.', + HELP_0_Desc_2: 'Δημιουργήστε ένα νέο πορτοφόλι.', + HELP_0_Desc_3: 'Κρατήστε αντίγραφο ασφαλείας ποτοφολιού.', + HELP_0_Desc_4: 'Επιβεβαιώστε ότι έχετε πρόσβαση στο νέο αυτό πορτοφόλι και ότι αποθηκεύσατε σωστά όλες τις απαραίτητες πληροφορίες.', + HELP_0_Desc_5: 'Μεταφέρετε Ether στο νέο αυτό πορτοφόλι.', + + HELP_1_Title: '1) Πως φτιάχνω ένα νέο πορτοφόλι? ', + HELP_1_Desc_1: 'Πηγαίνετε στην σελίδα "Δημιουργία Πορτοφολιού".', + HELP_1_Desc_2: 'Πηγαίνετε στην σελίδα "Προσθήκη Πορτοφολιού" & επιλέξτε "Δημιουργία Νέου Πορτοφολιού"', + HELP_1_Desc_3: 'Οληκτρολογήστε ένα δυνατό συνθηματικό (password). Αν νομίζετε ότι μπορεί να το ξεχάσετε, αποθηκεύστε το κάπου που να είναι ασφαλές. Θα χρειαστείτε αυτό το password για τις εξερχόμενες συναλλαγές σας.', + HELP_1_Desc_4: 'Κάντε κλικ στο "ΔΗΜΙΟΥΡΓΙΑ".', + HELP_1_Desc_5: 'Το πορτοφόλι σας δημιοθργήθηκε με επιτυχία.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (μη κρυπτογραφημένο).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = el; },{}],39:[function(require,module,exports){ -// English -'use strict'; -var en = function() {} -en.code = 'en'; -en.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: '', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = en; +// English +'use strict'; +var en = function() {} +en.code = 'en'; +en.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ETH in your account to cover the cost of gas. Please add some ETH and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: '', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = en; },{}],40:[function(require,module,exports){ -// Spanish -'use strict'; -var es = function() {} -es.code = 'es'; -es.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Tus Carteras', - NAV_AddWallet: 'Añadir Cartera', - NAV_GenerateWallet: 'Generar Cartera', - NAV_BulkGenerate: 'Generar en Masa', - NAV_SendEther: 'Enviar Ether', - NAV_SendTokens: 'Enviar Tokens', - NAV_Offline: 'Enviar Desconectado', - NAV_WithdrawDAO: 'Retirar DAO', - DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', - NAV_ClaimDGD: 'Reclamar DGD', - DGD_TitleLong: 'Reclamar Tus Vales DGD', - NAV_MyWallets: 'Mis Carteras', - NAV_ViewWallet: 'Ver Información de las Carteras', - NAV_Help: 'Ayuda', - NAV_Contact: 'Contacto', - - /* General */ - x_Password: 'Contraseña', - x_Download: 'Descargar', - x_Address: 'Tu dirección', - x_Save: 'Guardar', - x_Cancel: 'Cancelar', - x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', - x_PrivKey: 'Clave Privada (sin encriptar)', - x_PrivKey2: 'Clave Privada', - x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', - x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', - x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', - x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', - x_Json: 'Fichero JSON (sin encriptar)', - x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', - x_PrintShort: 'Imprimir', - x_Print: 'Imprimir Cartera de Papel', - x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', - x_CSV: 'Fichero CSV (sin encriptar)', - x_TXT: 'Fichero TXT (sin encriptar)', - x_Wallet: 'Cartera', - -/* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Gracias a nuestros traductores: ', - TranslatorName_1: 'Ignacio Fernández del Álamo', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = es; +// Spanish +'use strict'; +var es = function() {} +es.code = 'es'; +es.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Tus Carteras', + NAV_AddWallet: 'Añadir Cartera', + NAV_GenerateWallet: 'Generar Cartera', + NAV_BulkGenerate: 'Generar en Masa', + NAV_SendEther: 'Enviar Ether', + NAV_SendTokens: 'Enviar Tokens', + NAV_Offline: 'Enviar Desconectado', + NAV_WithdrawDAO: 'Retirar DAO', + DAO_TitleLong: 'Retirar Tus Vales Dao Por ETH', + NAV_ClaimDGD: 'Reclamar DGD', + DGD_TitleLong: 'Reclamar Tus Vales DGD', + NAV_MyWallets: 'Mis Carteras', + NAV_ViewWallet: 'Ver Información de las Carteras', + NAV_Help: 'Ayuda', + NAV_Contact: 'Contacto', + + /* General */ + x_Password: 'Contraseña', + x_Download: 'Descargar', + x_Address: 'Tu dirección', + x_Save: 'Guardar', + x_Cancel: 'Cancelar', + x_AddessDesc: 'Puedes pensar en esto como tu "Cuenta #" o tu "Clave Pública". Es lo que le das a la gente para que te puedan mandar ether. Ese icono es una forma fácil de reconocer tu dirección.', + x_PrivKey: 'Clave Privada (sin encriptar)', + x_PrivKey2: 'Clave Privada', + x_PrivKeyDesc: 'Esta es la versión en texto sin encriptar de tu clave privada, lo cual quiere decir que no hace falta contraseña. Si alguien encontrase tu clave privada sin encriptar, podrían acceder a tu cartera sin necesitar contraseña. Por esta razón, normalmente se recomiendan las versiones encriptadas.', + x_Keystore: 'Almacenamiento de Claves/Fichero JSON (Recomendado · Encriptado · Formato Mist/Geth)', + x_Keystore2: 'Almacenamiento de Claves/Fichero JSON', + x_KeystoreDesc: 'Este Almacenamiento de Claves/Fichero JSON concuerda con el formato usado por Mist & Geth para una fácil importación en el futuro. Es el fichero recomendado para descargar y guardar como copia de seguridad.', + x_Json: 'Fichero JSON (sin encriptar)', + x_JsonDesc: 'Esta es tu clave privada sin encriptar en formato JSON. Esto significa que no necesitas una contraseña, pero cualquiera que encuentre tu fichero JSON puede acceder a tu cartera y ether sin necesitar ninguna contraseña.', + x_PrintShort: 'Imprimir', + x_Print: 'Imprimir Cartera de Papel', + x_PrintDesc: 'Consejo: Hax clic en imprimir y guardar esto como un PDF, ¡incluso si no tienes impresora!', + x_CSV: 'Fichero CSV (sin encriptar)', + x_TXT: 'Fichero TXT (sin encriptar)', + x_Wallet: 'Cartera', + +/* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Gracias a nuestros traductores: ', + TranslatorName_1: 'Ignacio Fernández del Álamo', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = es; },{}],41:[function(require,module,exports){ -// Estonian -'use strict'; -var et = function() {} -et.code = 'et'; -et.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = et; +// Estonian +'use strict'; +var et = function() {} +et.code = 'et'; +et.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = et; },{}],42:[function(require,module,exports){ -// French -'use strict'; -var fr = function() {} -fr.code = 'fr'; -fr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Vos portefeuilles', - NAV_AddWallet: 'Ajout de portefeuille', - NAV_GenerateWallet: 'Génération de portefeuille', - NAV_BulkGenerate: 'Génération de portefeuilles par lots', - NAV_SendEther: 'Envoi d\'Ether', - NAV_SendTokens: 'Envoi de tokens', - NAV_Offline: 'Envoi hors-ligne', - NAV_WithdrawDAO: 'Retrait de la DAO', - DAO_TitleLong: 'Échange de tokens DAO contre des ETH', - NAV_ClaimDGD: 'Réclamation de DGD', - DGD_TitleLong: 'Réclamation de vos tokens DGD', - NAV_DeployContract: 'Déployer un contrat', - NAV_MyWallets: 'Mes portefeuilles', - NAV_ViewWallet: 'Visualisation d\'un portefeuille', - NAV_Help: 'Aide', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Portefeuille', - x_Password: 'Mot de passe', - x_Download: 'Télécharger', - x_Address: 'Votre adresse', - x_Save: 'Sauvegarder', - x_Cancel: 'Annuler', - x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', - x_PrivKey: 'Clé privée (non-chiffrée)', - x_PrivKey2: 'Clé privée', - x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', - x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', - x_Keystore2: 'Fichier Keystore/JSON', - x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', - x_Json: 'Fichier JSON (non-chiffré)', - x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', - x_PrintShort: 'Imprimer', - x_Print: 'Imprimer un portefeuille papier', - x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', - x_CSV: 'Fichier CSV (non-chiffré)', - x_TXT: 'Fichier TXT (non-chiffré)', - - /* Header */ - MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', - CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', - MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', - CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', - - /* Footer */ - FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', - FOOTER_1b: 'Créé par', - FOOTER_2: 'Donations extrêmement appréciées :', - FOOTER_3: 'Génération de portefeuille côté client par', - FOOTER_4: 'Avertissement', - - /* Sidebar */ - sidebar_AccountInfo: 'Informations du compte : ', - sidebar_AccountAddr: 'Addresse du compte : ', - sidebar_AccountBal: 'Solde du compte : ', - sidebar_TokenBal: 'Solde en tokens : ', - sidebar_Equiv: 'Valeur correspondante : ', - sidebar_TransHistory: 'Historique des transactions: ', - sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', - sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', - sidebar_donate: 'Faire une donation', - sidebar_thanks: 'MERCI !!!', - - /* Decrypt Panel */ - decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', - decrypt_Title: 'Choisissez le format de votre clé privée', - decrypt_Select: 'Choisissez un portefeuille :', - - /* Add Wallet */ - ADD_Label_1: 'Que voulez-vous faire ?', - ADD_Radio_1: 'Générer un nouveau portefeuille', - ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', - ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', - ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', - ADD_Radio_3: 'Collez/saisissez votre clé privée', - ADD_Radio_4: 'Ajoutez un compte', - ADD_Label_2: 'Nommez votre compte :', - ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', - ADD_Label_4: 'Ajouter un compte à afficher', - ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', - ADD_Label_5: 'Entrez l\'adresse : ', - ADD_Label_6: 'Déverrouiller votre portefeuille', - ADD_Label_6_short: 'Déverrouiller', - ADD_Label_7: 'Ajouter un compte', - - /* Generate Wallets */ - GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', - GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', - GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', - GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', - GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', - GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', - GEN_Label_3: 'Sauvegarder votre portefeuille.', - GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Nombre de portefeuilles à générer', - BULK_Label_2: 'Générer les portefeuilles', - BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Adresse de destination : ', - SEND_amount: 'Montant à envoyer : ', - SEND_amount_short: 'Montant', - SEND_custom: 'Spécifique', - SEND_gas: 'Gaz', - SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter - SEND_generate: 'Générer la transaction', - SEND_raw: 'Transaction brute', - SEND_signed: 'Transaction signée', - SEND_trans: 'Envoyer la transaction', - SENDModal_Title: 'Attention ! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', - SENDModal_Content_2: 'à l\'adresse', - SENDModal_Content_3: 'En êtes-vous sûr ?', - SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', - SENDModal_No: 'Non, je veux sortir d\'ici !', - SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adresse : ', - TOKEN_Symbol: 'Symbole du token : ', - TOKEN_Dec: 'Décimales : ', - - /* Send Transaction */ - TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', - TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', - TRANS_standard: 'ETH (transaction standard)', - TRANS_eth: 'ETH seulement', - TRANS_etc: 'ETC seulement', - TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', - TRANS_data: ' Données : ', - TRANS_gas: ' Gaz : ', - TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', - TRANSModal_Content_0: 'Note sur les transactions et services divers :', - TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', - TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', - TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', - TRANSModal_Yes: 'Génial, j\'ai compris.', - TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', - - /* Offline Transaction */ - OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', - OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', - OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', - OFFLINE_Step1_Button: 'Générer l\'information', - OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', - OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', - OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', - OFFLINE_Step2_Label_1: 'Adresse de destination : ', - OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', - OFFLINE_Step2_Label_3: 'Prix du gaz ', - OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_4: 'Limite de gaz ', - OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', - OFFLINE_Step2_Label_6: 'Données', - OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', - OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', - OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', - OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', - - /* DAO */ - DAO_bal1: 'au bloc 1.919.999', - DAO_bal2: 'actuel', - DAO_TitleETH: 'Retrait de DAO en ETH', - DAO_TitleETC: 'Retrait de DAO en ETC', - DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', - DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', - DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', - DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', - DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', - DAOModal_Title: 'Juste pour être sûr...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Vous êtes sur le point de retirer', - DAOModal_2: 'tokens DAO vers', - DAOModal_3: 'pour', // "in return for" - - /* Digix */ - DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', - DGD_Label_1: 'Estimation des frais consommés :', - DGD_Label_2: 'Frais maximum fournis :', - DGD_Label_3: 'Prix du gaz :', - DGD_Generate: 'Générer une réclamation', - DGD_Content: 'Vous allez réclamer vos tokens DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Générer le bytecode', - DEP_generated: 'Bytecode généré', - DEP_signtx: 'Signer la transaction', - DEP_interface: 'Interface générée', - - /* My Wallet */ - MYWAL_Nick: 'Nom du portefeuille', - MYWAL_Address: 'Adresse du portefeuille', - MYWAL_Bal: 'Solde', - MYWAL_Edit: 'Modifier', - MYWAL_View: 'Voir', - MYWAL_Remove: 'Supprimer', - MYWAL_RemoveWal: 'Supprimer le portefeuille :', - MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', - MYWAL_Viewing: 'Affichage des portefeuilles : ', - MYWAL_Hide: 'Cacher les informations sur le portefeuille', - MYWAL_Edit_2: 'Modifier le portefeuille : ', - MYWAL_Name: 'Nom du portefeuille', - MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', - MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', - MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', - VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', - - /* Chrome Extension */ - CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', - CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Veuillez entrer un montant valide.', - ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', - ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', - ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', - ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', - ERROR_6: 'Adresse invalide. ', - ERROR_7: 'Mot de passe invalide. ', - ERROR_8: 'Montant invalide. ', - ERROR_9: 'Limite de gaz invalide. ', - ERROR_10: 'Valeur des donnnées invalide. ', - ERROR_11: 'Montant de gaz invalide. ', - ERROR_12: 'Nonce invalide. ', - ERROR_13: 'Transaction signée invalide. ', - ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', - ERROR_15: 'Portefeuille non trouvé. ', - ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', - ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', - ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', - ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', - ERROR_20: 'Symbole invalide', - SUCCESS_1: 'Adresse valide', - SUCCESS_2: 'Portefeuille déchiffré avec succès', - SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', - SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', - SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', - SUCCESS_6: 'Fichier sélectionné : ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', - TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', - /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ - TranslatorName_2: 'Jean Zundel · ', - TranslatorAddr_2: '', - /* Translator 2: */ - TranslatorName_3: 'girards', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', - HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', - HELP_Remind_Title: 'Quelques rappels :', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', - HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', - - HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', - HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', - HELP_0_Desc_2: 'Créez un nouveau portefeuille.', - HELP_0_Desc_3: 'Sauvegardez le portefeuille.', - HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', - HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', - - HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', - HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', - HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', - HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', - HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', - HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', - - HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', - HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', - HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', - HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', - HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', - HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', - HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', - - HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', - HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', - HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', - HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', - HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', - HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', - HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', - - HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', - HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', - HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', - HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', - HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', - HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', - - HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', - HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', - HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', - HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', - HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', - HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', - HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', - HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', - HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', - HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', - HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', - HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', - HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', - HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', - - - HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', - HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', - HELP_4CX_Desc_2: 'Envoi rapide :', - HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', - HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', - HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', - HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', - HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', - HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', - HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', - HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', - HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', - HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', - - HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', - HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', - HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', - HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', - HELP_5_Desc_5: 'Dézippez-le.', - HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', - HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', - HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', - - HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', - HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', - HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', - HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', - HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', - HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', - HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', - HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Si vous êtes sur un PC :', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = fr; +// English +'use strict'; +var fi = function() {} +fi.code = 'fi'; +fi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Sinun Lompakkosi', + NAV_AddWallet: 'Lisää Lompakko', + NAV_GenerateWallet: 'Luo Lompakko', + NAV_BulkGenerate: 'Massa Generoi', + NAV_SendEther: 'Lähetä Etheriä', + NAV_SendTokens: 'Lähetä Tokeneita', + NAV_Offline: 'Lähetä Offlinena', + NAV_WithdrawDAO: 'Nosta DAO', + DAO_TitleLong: 'Muuta DAO Tokenisi ETH:iksi', + NAV_ClaimDGD: 'Lunasta DGD', + DGD_TitleLong: 'Lunasta DGD Tokenisi', + NAV_MyWallets: 'Minun Lompakkoni', + NAV_ViewWallet: 'Tarkista Lompakon Tiedot', + NAV_Help: 'Apua', + NAV_Contact: 'Yhteystiedot', + + /* General */ + x_Password: 'Salasana', + x_Download: 'Lataa', + x_Address: 'Sinun osoitteesi', + x_Save: 'x_Tallenna', + x_Cancel: 'x_Peruuta', + x_AddessDesc: 'Saatat tuntea tämän "Tilinumeronasi" tai sinun "Julkisena Salausavaimenasi". Tämä on se jonka jaat ihmisille, jotta he voivat lähettää sinulle ETHiä. Tuo kuvake on helppo tapa tunnistaa sinun osoitteesi.', + x_PrivKey: 'Yksityinen salausavain (salaamaton)', + x_PrivKeyDesc: 'Tämä on salaamaton versio sinun yksityisestä salausavaimestasi, tarkoittaen että salasanaa ei tarvita. Jos joku sattuisi löytämään sinun salaamattoman yksityisen salausavaimesi, he pääsisivät käsiksi sinun lompakkoosi ilman salasanaa. Tästä syystä salatut versiot ovat yleensä suositeltuja.', + x_Keystore: 'Avainsäilö/JSON Tiedosto (Suositeltu · Salattu · Mist/Geth Tiedostoformaatti)', + x_KeystoreDesc: 'Tämä Avainsäilö / JSON tiedosto vastaa sitä tiedostoformaattia jota Mist & Geth käyttävät, joten voit helposti tuoda sen tulevaisuudessa. Se on suositeltu tiedostomuoto ladata ja varmuuskopioida.', + x_Json: 'JSON Tiedosto (salaamaton)', + x_JsonDesc: 'Tämä on salaamaton, JSON tiedosto yksityisestä salausavaimestasi. Tämä tarkoittaa että et tarvitse salasanaa mutta kuka tahansa joka löytää JSON tiedostosi saa pääsyn lompakkoosi ja sen sisältämään Etheriin ilman salasanaa.', + x_PrintShort: 'Tulosta', + x_Print: 'Tulosta Paperi Lompakko', + x_PrintDesc: 'ProTip: Klikkaa Tulosta ja tallenna tämä PDF:nä, vaikka et omistaisikaan tulostinta!', + x_CSV: 'CSV tiedosto (salaamaton)', + x_TXT: 'TXT tiedosto (salaamaton)', + + /* Header */ + MEW_Warning_1: 'Tarkista URL aina ennen kuin avaat lompakkosi tai luot uuden lompakon. Varo tietojen-kalastelu sivustoja!', + CX_Warning_1: 'Varmista että sinulla on **ulkoiset varmuuskopiot** kaikista lompakoista joita säilytät täällä. Monia asioita voi tapahtua joiden seurauksena voit menettää tietoja tässä Chrome Laajennuksessa, mukaan lukien laajennuksen asennuksen poistaminen tai uudelleenasennus. Tämä laajennus on keino jolla saat helpon pääsyn lompakkoosi, **ei** keino varmuuskopioida niitä.', + MEW_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Ether Lompakko', + CX_Tagline: 'Avoimen Lähdekoodin Asiakas-puolen JavaScript Chrome Laajennus', + + /* Footer */ + FOOTER_1: 'Avoimen lähdekoodin, asiakas-puolen javascript työkalu Ethereum lompakkojen luomista & varojen siirtoja varten.', + FOOTER_2: 'Lahjoituksia arvostetaan suuresti:', + FOOTER_3: 'Asiakas-puolen lompakon luomisen tarjoaa', + + /* Sidebar */ + sidebar_AccountInfo: 'Tilin Tiedot: ', + sidebar_AccountAddr: 'Tilin Osoite: ', + sidebar_AccountBal: 'Tilin Saldo: ', + sidebar_TokenBal: 'Tokenien Saldo: ', + sidebar_Equiv: 'Vastaavat Arvot: ', + sidebar_TransHistory: 'Siirto Historia', + sidebar_DGDBal: 'DGD Joukkomyynnin Tiedot:', + sidebar_donate: 'Lahjoita', + sidebar_donation: 'MyEtherWallet on ilmainen, avoimen lähdekoodin palvelu joka on omistautunut sinun yksityisyyteesi ja turvallisuuteesi. Mitä enemmän lahjoituksia me vastaanotamme, sitä enemmän aikaa me käytämme uusien toimintojen luomiseksi, kuunnellen teidän palautettanne ja antaen teille juuri sitä mitä te tahdotte. Me olemme vain kaksi ihmistä jotka koittavat muuttaa maailmaa. Auta meitä?', + sidebar_thanks: 'KIITOS!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kuinka haluaisit saada pääsyn lompakkoosi?', + decrypt_Title: 'Valitse yksityisen salausavaimesi muoto:', + decrypt_Select: 'Valitse Lompakko:', + + /* Add Wallet */ + ADD_Label_1: 'Mitä tahtoisit tehdä?', + ADD_Radio_1: 'Luo Uusi Lompakko', + ADD_Radio_2: 'Valitse Lompakko Tiedostosi (Avainsäilö / JSON)', + ADD_Radio_2_short: 'VALITSE LOMPAKKO TIEDOSTO...', + ADD_Radio_3: 'Liitä/Kirjoita Yksityinen Salausavaimesi', + ADD_Radio_4: 'Lisää Tili Jota Seurata', + ADD_Label_2: 'Luo Lempinimi:', + ADD_Label_3: 'Lompakkosi on salattu, ole hyvä ja syötä salasanasi: ', + ADD_Label_4: 'Lisää Tili Jota Seurata', + ADD_Warning_1: 'Voit lisätä minkä tahansa tilin jota "seurata" lompakkojen välilehdessä ilman yksityisen salausavaimesi lähettämistä. Tämä ** ei ** tarkoita että sinulla olisi pääsy tähän lompakkoon, tai että voit siirtää Etheriä siitä.', + ADD_Label_5: 'Syötä Osoite: ', + ADD_Label_6: 'Avaa Sinun Lompakkosi', + ADD_Label_6_short: 'Avaa', + ADD_Label_7: 'Lisää Tili', + + /* Generate Wallets */ + GEN_desc: 'Jos tahdot luoda useita lompakoita, voit tehdä sen täältä: ', + GEN_Label_1: 'Syötä vahva salasana (vähintään 9 merkkiä)', + GEN_Placeholder_1: 'ÄLÄ unohda tallentaa tätä!', + GEN_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + GEN_Warning: '**Tarvitset Avainsäilö/JSON Tiedostosi & salasanan tai Yksityisen salausavaimesi** saadaksesi pääsyn tähän lompakkoon tulevaisuudessa. Ole hyvä ja tallenna ja varmuuskopioi se ulkoisesti! Ei ole mitään keinoa palauttaa sitä jos et tallenna sitä. Voit lukea ohjeet [Apua sivulta](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Tallenna Avainsäilö/JSON tai Yksityinen salausavaimesi. Älä unohda yllä olevaa salasanaasi.', + GEN_Label_3: 'Tallenna Osoitteesi.', + GEN_Label_4: 'Tulosta paperi lompakkosi, tai säilö QR koodi versio. (valinnainen)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Kuinka Monta Lompakkoa Luodaan', + BULK_Label_2: 'Luo Lompakot', + BULK_SuccessMsg: 'Onnistui! Sinun lompakkosi on luotu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Osoitteeseen: ', + SEND_amount: 'Summa Joka Lähetetään: ', + SEND_amount_short: 'Summa', + SEND_custom: 'Mukautettu', + SEND_gas: 'Gas', + SEND_generate: 'Luo Allekirjoitettu Siirto', + SEND_raw: 'Käsittelemätön Siirto', + SEND_signed: 'Allekirjoitettu Siirto', + SEND_trans: 'Lähetä Siirto', + SEND_TransferTotal: 'Lähetettävissä oleva saldo', + SENDModal_Title: 'Varoitus! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Olet lähettämässä', + SENDModal_Content_2: 'osoitteeseen', + SENDModal_Content_3: 'Oletko varma että haluat tehdä tämän?', + SENDModal_Content_4: 'HUOMAUTUS: Jos kohtaat virheen, sinun täytyy todennäköisesti lisätä ETHiä tilillesi kattaaksesi siirron vaatiman gasin hinnan. Gas maksetaan ETHeinä.', + SENDModal_No: 'En, vie minut pois täältä!', + SENDModal_Yes: 'Kyllä, olen varma! Toteuta siirto.', + + /* Tokens */ + TOKEN_Addr: 'Osoite: ', + TOKEN_Symbol: 'Token Tunnus: ', + TOKEN_Dec: 'Desimaalit: ', + + /* Send Transaction */ + TRANS_desc: 'Jos haluat lähettää Tokeneita, ole hyvä ja käytä "Lähetä Tokeneita" sivua.', + TRANS_warning: 'Jos käytät "Vain ETH" tai "Vain ETC" Toimintoja, niin lähetät sopimuksen kautta. Joillakin palveluilla on vaikeuksia hyväksyä näitä siirtoja. Lue lisää.', + TRANS_standard: 'ETH (Tavallinen Siirto)', + TRANS_eth: 'Vain ETH', + TRANS_etc: 'Vain ETC', + TRANS_advanced: '+Edistynyt: Lisää Enemmän Gasia tai Tietoa ', + TRANS_data: ' Tiedot: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Tavallinen siirto käyttäen 21000 gasia maksaa 0.000441 ETHiä. Me käytämme hieman-yli-minimin gasin hintaa 0.000000021 ETHiä varmistaaksemme että se louhitaan nopeasti. Me emme veloita siirto maksua.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Vain ETH" ja "Vain ETC" Siirrot', + TRANSModal_Content_0: 'Huomautus erilaisista siirroista ja eri palveluista:', + TRANSModal_Content_1: '**ETH (Tavallinen Siirto): ** Tämä luo oletusarvoisen siirron osoitteesta toiseen. Siinä on oletus gasina 21000. On todennäköistä että kaikki ETH joka lähetetään tällä tavalla, toistetaan ETC ketjussa.', + TRANSModal_Content_2: '**Vain ETH: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETH** ketjussa.', + TRANSModal_Content_3: '**Only ETC: ** Tämä lähettää [Timon Rappin toiston suojaus sopimuksen (kuten VB on suositellut) kautta](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) niin että sinä lähetät vain **ETC** ketjussa. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Lähetä ainoastaan käyttäen Tavallista Siirtoa. Jos lähetät käyttäen "Vain" sopimuksia, sinun täytyy olla yhteydessä heidän asiakastukensa henkilöstöön jotta he joko manuaalisesti lisäävät sinun saldosi tai palauttavat rahasi. [Voit kokeilla myös ShapeShiftin "split" työkalua.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ei tunnettuja ongelmia. Käytä mitä vain.', + TRANSModal_Yes: 'Siistiä, nyt ymmärrän.', + TRANSModal_No: 'Voi ei, olen entistä enemmän hämilläni. Auttakaa minua.', + + /* Offline Transaction */ + OFFLINE_Title: 'Luo ja Lähetä Offline Siirto', + OFFLINE_Desc: 'Offline siirtojen luonti voidaan tehdä kolmella eri vaiheella. Teet vaiheet 1 ja 3 käyttäen verkossa olevaa tietokonetta, ja vaiheen 2 käyttäen offline/airgappattua tietokonetta. Tämä varmistaa ettei sinun yksityinen salausavaimesi ole kosketuksissa internettiin yhdistetyn laitteen kanssa.', + OFFLLINE_Step1_Title: 'Vaihe 1: Luo Tiedot (Online Tietokone)', + OFFLINE_Step1_Button: 'Luo Tiedot', + OFFLINE_Step1_Label_1: 'Osoitteesta: ', + OFFLINE_Step1_Label_2: 'Huomautus: Tämä on MISTÄ osoitteesta, ei MIHIN osoitteeseen. Nonce luodaan osoitteesta josta siirto on peräisin. Jos käytetään airgappattua tietokonetta, se olisi kylmä-varasto tilin osoite.', + OFFLLINE_Step2_Title: 'Vaihe 2: Luo Siirto (Offline Tietokone)', + OFFLINE_Step2_Label_1: 'Osoitteeseen: ', + OFFLINE_Step2_Label_2: 'Arvo / Määrä Joka Lähetetään', + OFFLINE_Step2_Label_3: 'Gasin hinta ', + OFFLINE_Step2_Label_3b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_4: 'Gas Raja ', + OFFLINE_Step2_Label_4b: '21000 on oletusarvoinen gas raja. Kun lähetät sopimuksiin tai lisäät tietoa, saattaa tämä määrä joutua olemaan eri. Kaikki käyttämätön gas palautetaan sinulle.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Tämä näytettiin kohdassa Vaihe 1 sinun verkkoon yhdistetyssä tietokoneessasi.', + OFFLINE_Step2_Label_6: 'Tiedot', + OFFLINE_Step2_Label_6b: 'Tämä on vapaaehtoinen. Tietoja käytetään usein kun varoja lähetetään sopimuksiin.', + OFFLINE_Step2_Label_7: 'Syötä / Valitse Yksityinen salausavaimesi / JSON.', + OFFLINE_Step3_Title: 'Vaihe 3: Lähetä / Julkaise Siirto (Verkkoon yhdistetty tietokone)', + OFFLINE_Step3_Label_1: 'Liitä allekirjoitettu siirto Vaiheesta 2 tähän ja paina "LÄHETÄ SIIRTO" nappia.', + + /* DAO */ + DAO_Desc: 'Käytä tätä välilehteä muuttaaksesi DAO Tokenisi ETHiksi. Mikäli haluat lähettää DAO:ta, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DAO_Inst: 'Kyllä. Paina vain isoa punaista nappia. Se on niin helppoa.', + DAO_Warning: 'Jos sinulla tulee "Riittämätön saldo gasille" virhe, sinulla täytyy olla pieni määrä ETHiä tililläsi kattaaksesi gasin hinnan. Lisää .01 ETHiä tälle tilille ja koita uudestaan. ', + DAOModal_Title: 'Varmistetaan vain...', + + /* Digix */ + DGD_Desc: 'Lunasta DigixDAO (DGD) tokenisi & merkkisi. Lunastaaksesi, sinun on täytynyt osallistua tokenien myyntiin Maaliskuun 30/31 päivänä, 2016. Jos haluat lähettää DGDtä, ole hyvä ja käytä Lähetä Tokeneita välilehteä.', + DGD_Label_1: 'Arvioitu kulutus maksu:', + DGD_Label_2: 'Annettu Maksimi Maksu:', + DGD_Label_3: 'Gas Hinta:', + DGD_Generate: 'Luo Lunastus', + DGD_Content: 'Olet lunastamassa sinun DGD Tokenisi.', + + /* My Wallet */ + MYWAL_Nick: 'Lompakon Lempinimi', + MYWAL_Address: 'Lompakon Osoite', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Muokkaa', + MYWAL_View: 'Katso', + MYWAL_Remove: 'Poista', + MYWAL_RemoveWal: 'Poista Lompakko:', + MYWAL_WatchOnly: 'Sinun Seuraa-Ainoastaan Tilisi', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Piilota Lompakon Tiedot', + MYWAL_Edit: 'Muokkaa Lompakkoa: ', + MYWAL_Name: 'Lompakon Nimi', + MYWAL_Content_1: 'Varoitus! Olet poistamassa lompakkoasi.', + MYWAL_Content_2: 'Varmista että olet **tallentanut tähän lompakkoon liittyvät yksityisen salausavaimesi/JSON tiedostosi ja salasanasi** ennen kuin poistat sen.', + MYWAL_Content_3: 'Jos tahdot käyttää tätä lompakkoa sinun MyEtherWallet CX:si kanssa tulevaisuudessa, sinun täytyy manuaalisesti uudelleen-lisätä se käyttäen yksityistä salausavaintasi/JSONia ja salasanaa.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. Saatat tahtoa tehdä tämän [tuodaksesi sinun tilisi Gethiin/Mistiin](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jos haluat tarkistaa saldosi, me suosittelemme käyttämään lohkoketju exploreria kuten [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Tämä antaa sinun ladata eri versiota yksityisistä salausavaimistasi ja uudelleen-tulostaa paperi lompakkosi. ', + VIEWWALLET_SuccessMsg: 'Onnistui! Tässä ovat lompakkosi yksityiskohdat.', + + /* Error Messages */ + ERROR_1: 'Ole hyvä ja syötä kelpaava summa.', + ERROR_2: 'Salasanasi pitää olla vähintään 9 merkkiä pitkä. Ole hyvä ja varmista että käytät vahvaa salasanaa. ', + ERROR_3: 'Pahoittelut! Emme tunnista tämänlaista lompakko tiedostoa. ', + ERROR_4: 'Tämä ei ole validi lompakko tiedosto. ', + ERROR_5: 'Tätä yksikköä ei ole olemassa, ole hyvä ja käytä jotain seuraavista yksiköistä ', + ERROR_6: 'Virheellinen osoite. ', + ERROR_7: 'Virheellinen salasana. ', + ERROR_8: 'Virheellinen summa. ', + ERROR_9: 'Virheellinen gas raja. ', + ERROR_10: 'Virheellinen tieto arvo. ', + ERROR_11: 'Virheellinen gasin määrä. ', + ERROR_12: 'Virheellinen nonce. ', + ERROR_13: 'Virheellinen allekirjoitettu siirto. ', + ERROR_14: 'Lompakko tällä lempinimellä on jo olemassa. ', + ERROR_15: 'Lompakkoa ei löytynyt. ', + ERROR_16: 'Ei näytä että ehdotusta tällä ID:llä olisi vielä olemassa tai tapahtui virhe ehdotusta luettaessa. ', + ERROR_17: 'Lompakko jolla on tämä osoite on jo muistissa. Ole hyvä ja tarkista sinun lompakkosi sivu. ', + ERROR_18: 'Sinulla täytyy olla vähintään .001 ETHiä tililläsi kattaaksesi gasin hinnan. Ole hyvä ja lisää hieman ETHiä ja kokeile uudelleen. ', + ERROR_19: 'Kaikki gas käytettäisiin tässä siirrossa. Tämä tarkoittaa että olet jo äänestänyt tässä ehdotuksessa tai väittely aika on jo päättynyt.', + ERROR_20: 'Virheellinen merkki', + SUCCESS_1: 'Validi osoite', + SUCCESS_2: 'Lompakon salaus onnistuneesti purettu', + SUCCESS_3: 'Siirto lähetetty. TX ID: ', + SUCCESS_4: 'Lompakkosi lisätty onnistuneesti: ', + SUCCESS_5: 'Olet äänestänyt onnistuneesti. Kiitos että olet ollut aktiivinen osanottaja The DAOssa.', + + /* Tranlsation Info */ + translate_version: '0.1', + Translator_Desc: 'Kiitos kääntäjillemme...', + TranlsatorName_1: 'Smokyish', + TranlsatorAddr_1: '0xac9a2c1dd946da64c0dc8e70cec2cfb14304fd4f', + /* Translator 1: Insert Comments Here */ + TranlsatorName_2: ' ', + TranlsatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranlsatorName_3: ' ', + TranlsatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranlsatorName_4: ' ', + TranlsatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranlsatorName_5: ' ', + TranlsatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ETH to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find you account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ETH, we recommend that send a small amount of ETH from new wallet before depositting a large amount. Send .001 ETH to your new wallet, access that wallet, send that .001 ETH to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ETH like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your account now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original account into two accounts. Moving forward, you need to make sure only ETH goes to your ETH account and only ETC goes to your ETC account.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH address for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC address for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send .1234 ETH to your new "ETH" address using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send .5678 ETC to your new "ETC" address using "Only ETC" on MyEtherWallet.com', + HELP_6_Desc_9: 'Check that only the .1234 ETH moved on etherscan.io. Check that only the .5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a .0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the .0001 ETH moved.', + HELP_6_Desc_11: ' Generate (but do not send) a .0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the .0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: ' Moving forward, you can use the standard transactions for these new accounts without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', + HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the wallet I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Addresses will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ETH is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ETH from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = fi; },{}],43:[function(require,module,exports){ -// Hebrew -'use strict'; -var he = function() {} -he.code = 'he'; -he.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = he; +// French +'use strict'; +var fr = function() {} +fr.code = 'fr'; +fr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Vos portefeuilles', + NAV_AddWallet: 'Ajout de portefeuille', + NAV_GenerateWallet: 'Génération de portefeuille', + NAV_BulkGenerate: 'Génération de portefeuilles par lots', + NAV_SendEther: 'Envoi d\'Ether', + NAV_SendTokens: 'Envoi de tokens', + NAV_Offline: 'Envoi hors-ligne', + NAV_WithdrawDAO: 'Retrait de la DAO', + DAO_TitleLong: 'Échange de tokens DAO contre des ETH', + NAV_ClaimDGD: 'Réclamation de DGD', + DGD_TitleLong: 'Réclamation de vos tokens DGD', + NAV_DeployContract: 'Déployer un contrat', + NAV_MyWallets: 'Mes portefeuilles', + NAV_ViewWallet: 'Visualisation d\'un portefeuille', + NAV_Help: 'Aide', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Portefeuille', + x_Password: 'Mot de passe', + x_Download: 'Télécharger', + x_Address: 'Votre adresse', + x_Save: 'Sauvegarder', + x_Cancel: 'Annuler', + x_AddessDesc: 'Aussi appelé "Numéro de compte" ou "Clé publique". C\'est ce que vous envoyez aux gens pour qu\'ils puissent vous envoyer des ether. Cette icone est une façon simple de reconnaitre votre adresse.', + x_PrivKey: 'Clé privée (non-chiffrée)', + x_PrivKey2: 'Clé privée', + x_PrivKeyDesc: 'C\'est la version textuelle non-chiffrée de votre clé privée, ce qui signifie qu\'aucun mot de passe n\'est nécessaire pour l\'utiliser. Si quelqu\'un venait à découvrir cette clé privée, il pourrrait accéder à votre portefeuille sans mot de passe. Pour cette raison, la version chiffrée de votre clé privée est recommandée.', + x_Keystore: 'Fichier Keystore/JSON (Recommandé · Chiffré · Format Mist/Geth)', + x_Keystore2: 'Fichier Keystore/JSON', + x_KeystoreDesc: 'Ce fichier Keystore / JSON utilise le même format que celui que Mist & Geth, vous pouvez donc facilement l\'importer plus tard dans ces logiciels. C\'est le fichier que nous vous recommandons de télécharger et sauvegarder.', + x_Json: 'Fichier JSON (non-chiffré)', + x_JsonDesc: 'C\'est la version non-chiffrée au format JSON de votre clé privée. Cela signifie que vous n\'avez pas besoin de votre mot de passe pour l\'utiliser mais que toute personne qui trouve ce JSON peut accéder à votre portefeuille et vos Ether sans mot de passe.', + x_PrintShort: 'Imprimer', + x_Print: 'Imprimer un portefeuille papier', + x_PrintDesc: 'Astuce : Cliquez sur Imprimer et sauvegardez le portefeuille papier comme un PDF, même si vous n\'avez pas d\'imprimante !', + x_CSV: 'Fichier CSV (non-chiffré)', + x_TXT: 'Fichier TXT (non-chiffré)', + + /* Header */ + MEW_Warning_1: 'Vérifiez toujours l\'URL avant d\'accéder à votre portefeuille ou de générer un nouveau portefeuille. Attentions aux sites de phishing !', + CX_Warning_1: 'Assurez vous d\'avoir une **sauvegarde externe** de tout portefeuille que vous gérez ici. De nombreux événements peuvent vous faire perdre les données de cette extension Chrome, y compris la dédinstallation et la réinstallation de l\'extension. Cette extension est une manière d\'accéder facilement à vos portefeuilles, **pas** une façon de les sauvegarder.', + MEW_Tagline: 'Portefeuille d\'Ether Open Source JavaScript côté client', + CX_Tagline: 'Extension Chrome de portefeuille d\'Ether Open Source JavaScript côté client', + + /* Footer */ + FOOTER_1: 'Un outil open source en Javascript s\'exécutant côté client pour générer des portefeuilles Ethereum et envoyer des transactions.', + FOOTER_1b: 'Créé par', + FOOTER_2: 'Donations extrêmement appréciées :', + FOOTER_3: 'Génération de portefeuille côté client par', + FOOTER_4: 'Avertissement', + + /* Sidebar */ + sidebar_AccountInfo: 'Informations du compte : ', + sidebar_AccountAddr: 'Addresse du compte : ', + sidebar_AccountBal: 'Solde du compte : ', + sidebar_TokenBal: 'Solde en tokens : ', + sidebar_Equiv: 'Valeur correspondante : ', + sidebar_TransHistory: 'Historique des transactions: ', + sidebar_DGDBal: 'Informations sur la *crowdsale* DGD :', + sidebar_donation: 'MyEtherWallet est un service gratuit et open source respectueux de votre vie privée et de votre sécurité. Plus nous recevons de donations, plus nous dédions du temps à développer de nouvelles fonctions, à écouter vos retours et à vous fournir ce dont vous avez besoin. Nous ne sommes que deux personnes qui essayent de changer le monde. Aidez nous !', + sidebar_donate: 'Faire une donation', + sidebar_thanks: 'MERCI !!!', + + /* Decrypt Panel */ + decrypt_Access: 'Comment voulez-vous accéder à votre portefeuille ?', + decrypt_Title: 'Choisissez le format de votre clé privée', + decrypt_Select: 'Choisissez un portefeuille :', + + /* Add Wallet */ + ADD_Label_1: 'Que voulez-vous faire ?', + ADD_Radio_1: 'Générer un nouveau portefeuille', + ADD_Radio_2: 'Choisissez le fichier de votre portefeuille (Keystore / JSON)', + ADD_Radio_2_alt: 'Choisissez le fichier de portefeuille: ', + ADD_Radio_2_short: 'CHOISISSEZ LE FICHIER DU PORTEFEUILLE...', + ADD_Radio_3: 'Collez/saisissez votre clé privée', + ADD_Radio_4: 'Ajoutez un compte', + ADD_Label_2: 'Nommez votre compte :', + ADD_Label_3: 'Votre fichier est chiffré, merci de saisir le mot de passe : ', + ADD_Label_4: 'Ajouter un compte à afficher', + ADD_Warning_1: 'Vous pouvez ajouter n\'importe quel compte pour l\'afficher dans l\'onglet "portefeuilles" sans uploader une clé privée. Cela ne veut **pas** dire que vous aurez accès à ce portefeuille, ni que vous pouvez transférer des Ethers depuis ce portefeuille.', + ADD_Label_5: 'Entrez l\'adresse : ', + ADD_Label_6: 'Déverrouiller votre portefeuille', + ADD_Label_6_short: 'Déverrouiller', + ADD_Label_7: 'Ajouter un compte', + + /* Generate Wallets */ + GEN_desc: 'Si vous voulez générer plusieurs portefeuilles, vous pouvez le faire ici : ', + GEN_Label_1: 'Entrez un mot de passe fort (au moins 9 caractères)', + GEN_Placeholder_1: 'N\'oubliez PAS de sauvegarder ceci !', + GEN_SuccessMsg: 'Succès ! Votre portefeuille a été généré.', + GEN_Warning: '**Vous avez besoin de votre fichier Keystore/JSON et du mot de passe ou de la clé privée** pour accéder à ce portefeuille dans le futur. Merci de le télécharger et d\'en faire une sauvegarde externe ! Il n\'existe aucun moyen de récupérer un portefeuille si vous ne le sauvegardez pas. Merci de lire la [page d\'Aide](https://www.myetherwallet.com/#help) pour plus de détails.', + GEN_Label_2: 'Sauvegardez votre fichier Keystore/JSON ou votre clé privée. N\'oubliez pas votre mot de passe ci-dessus.', + GEN_Label_3: 'Sauvegarder votre portefeuille.', + GEN_Label_4: 'Imprimer votre portefeuille papier, ou conserver une version QR code. (optionnel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Nombre de portefeuilles à générer', + BULK_Label_2: 'Générer les portefeuilles', + BULK_SuccessMsg: 'Succès ! Vos portefeuilles ont été générés.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Adresse de destination : ', + SEND_amount: 'Montant à envoyer : ', + SEND_amount_short: 'Montant', + SEND_custom: 'Spécifique', + SEND_gas: 'Gaz', + SEND_TransferTotal: 'Envoi du solde total', // updated to be shorter + SEND_generate: 'Générer la transaction', + SEND_raw: 'Transaction brute', + SEND_signed: 'Transaction signée', + SEND_trans: 'Envoyer la transaction', + SENDModal_Title: 'Attention ! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Vous êtes sur le point d\'envoyer', + SENDModal_Content_2: 'à l\'adresse', + SENDModal_Content_3: 'En êtes-vous sûr ?', + SENDModal_Content_4: 'NOTE : Si vous renontrez une erreur, il est très probable que vous deviez ajouter des ether à votre compte pour couvrir les coûts en gaz d\'envoi des tokens. Le gaz est payé en ether.', + SENDModal_No: 'Non, je veux sortir d\'ici !', + SENDModal_Yes: 'Oui, j\'en suis sûr ! Effectuer la transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adresse : ', + TOKEN_Symbol: 'Symbole du token : ', + TOKEN_Dec: 'Décimales : ', + + /* Send Transaction */ + TRANS_desc: 'Si vous voulez envoyer des tokens, allez plutôt à la page "Envoi de tokens".', + TRANS_warning: 'L\'emploi des fonctions "ETH seulement" et "ETC seulement" vous fait passer par un contrat. Certains services ont des problèmes avec ces transactions. En savoir plus.', + TRANS_standard: 'ETH (transaction standard)', + TRANS_eth: 'ETH seulement', + TRANS_etc: 'ETC seulement', + TRANS_advanced: '+Avancé : Ajouter du gaz ou des données supplémentaires ', + TRANS_data: ' Données : ', + TRANS_gas: ' Gaz : ', + TRANS_sendInfo: 'Une transaction standard utilisant 21000 gaz coûtera 0.000441 ETH. Le prix du gaz de 0.000000021 ETH que nous avons choisi est légèrement supérieur au minimum ain d\'assurer une confirmation rapide. Nous ne prenons pas de frais de transaction.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transactions "ETH seulement" et "ETC seulement"', + TRANSModal_Content_0: 'Note sur les transactions et services divers :', + TRANSModal_Content_1: '**ETH (Transaction standard) : ** Génère une transaction par défaut directement depuis une adresse vers une autre. Son gaz par défaut est de 21000. Il est probable que toute transaction d\'ETH envoyé de cette manière sera réexécutée sur la chaîne ETC.', + TRANSModal_Content_2: '**ETH seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETH**.', + TRANSModal_Content_3: '**ETC seulement : ** Envoie à travers le [contrat anti-réexécution de Timon Rapp (recommandé par VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) afin de n\'envoyer que sur la chaîne **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift : ** N\'envoyer que par transaction standard. Si vous utilisez les contrats d\'envoi sur une seule chaîne, vous devrez joindre leur équipe de support pour ajouter manuellement la somme à votre solde ou pour vous rembourser. [Vous pouvez aussi essayer l\'outil "split" de Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex :** Pas de problème connu. Utilisez ce que vous voulez.', + TRANSModal_Yes: 'Génial, j\'ai compris.', + TRANSModal_No: 'Aïe, je comprends de moins en moins. Aidez-moi.', + + /* Offline Transaction */ + OFFLINE_Title: 'Génération et envoi d\'une transaction hors ligne', + OFFLINE_Desc: 'La génération d\'une transaction hors ligne s\'effectue en trois étapes. Les étapes 1 et 3 sont réalisées sur un ordinateur en ligne et l\'étape 2 sur un ordinateur déconnecté du réseau. Cela permet d\'isoler totalement vos clefs privées de toute machine connectée à l\'internet.', + OFFLINE_Step1_Title: 'Étape 1 : Gérération de l\'information (ordinateur en ligne)', + OFFLINE_Step1_Button: 'Générer l\'information', + OFFLINE_Step1_Label_1: 'Addresse d\'émission : ', + OFFLINE_Step1_Label_2: 'Note : Il s\'agit de l\'adresse de départ, pas de l\'adresse d\'arrivée. Le nonce est généré à partir du compte de l\'expéditeur. Si on utilise une machine déconnectée du réseau, cette adresse est celle du compte en _cold storage_.', + OFFLINE_Step2_Title: 'Étape 2 : Génération de la transaction (ordinateur hors ligne)', + OFFLINE_Step2_Label_1: 'Adresse de destination : ', + OFFLINE_Step2_Label_2: 'Valeur / montant à envoyer', + OFFLINE_Step2_Label_3: 'Prix du gaz ', + OFFLINE_Step2_Label_3b: 'Ce montant était affiché à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_4: 'Limite de gaz ', + OFFLINE_Step2_Label_4b: '21000 est la limite par défaut. En cas d\'envoi vers des contrats ou avec des données supplémentaires, cette valeur peut être différente. Tout gaz non consommé vous sera renvoyé.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Cette valeur a été affichée à l\'étape 1 sur votre ordinateur en ligne.', + OFFLINE_Step2_Label_6: 'Données', + OFFLINE_Step2_Label_6b: 'Cette zone est optionnelle. Les données sont souvent utilisées lors de transactions vers des contrats.', + OFFLINE_Step2_Label_7: 'Entrez / sélectionnez votre clef privée / JSON.', + OFFLINE_Step3_Title: 'Étape 3 : Envoyer / publier la transaction (ordinateur en ligne)', + OFFLINE_Step3_Label_1: 'Copier ici la transaction signée à l\'étape 2 et cliquez sur le bouton "ENVOYER LA TRANSACTION".', + + /* DAO */ + DAO_bal1: 'au bloc 1.919.999', + DAO_bal2: 'actuel', + DAO_TitleETH: 'Retrait de DAO en ETH', + DAO_TitleETC: 'Retrait de DAO en ETC', + DAO_ETC_Label_1: 'À quelle adresse voulez-vous que les ETC soient envoyés ?', + DAO_ETC_Label_2: 'Le "White Hat Group" a travaillé sans relâche pour vous rendre vos ETC. Vous pouvez les remercier par une donation d\'un pourcentage de votre retrait si vous le souhaitez. ', + DAO_Desc: 'Utilisez cet onglet pour retirer et convertir vos tokens en ETH. Si vous désirez envoyer des tokens DAO, utilisez l\'onglet Envoi de tokens.', + DAO_Inst: 'Oui. Cliquez simplement sur le gros bouton rouge. Vous voyez, c\'est simple.', + DAO_Warning: 'Si vous obtenez une erreur "Montant insuffisant pour le paiement du gaz", vous devez disposer d\'un petit montant en ether sur votre compte pour couvrir le coût en gaz. Ajoutez 0,001 ether sur votre compte et réessayez. ', + DAOModal_Title: 'Juste pour être sûr...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Vous êtes sur le point de retirer', + DAOModal_2: 'tokens DAO vers', + DAOModal_3: 'pour', // "in return for" + + /* Digix */ + DGD_Desc: 'Réclamez vos tokens et vos badges DigixDAO (DGD). Pour ce faire, vous devez avoir participé à la vente de tokens du 30 et 31 mars 2016. Si vous désirez envoyez des DGD, utilisez l\'onglet Envoi de tokens.', + DGD_Label_1: 'Estimation des frais consommés :', + DGD_Label_2: 'Frais maximum fournis :', + DGD_Label_3: 'Prix du gaz :', + DGD_Generate: 'Générer une réclamation', + DGD_Content: 'Vous allez réclamer vos tokens DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Générer le bytecode', + DEP_generated: 'Bytecode généré', + DEP_signtx: 'Signer la transaction', + DEP_interface: 'Interface générée', + + /* My Wallet */ + MYWAL_Nick: 'Nom du portefeuille', + MYWAL_Address: 'Adresse du portefeuille', + MYWAL_Bal: 'Solde', + MYWAL_Edit: 'Modifier', + MYWAL_View: 'Voir', + MYWAL_Remove: 'Supprimer', + MYWAL_RemoveWal: 'Supprimer le portefeuille :', + MYWAL_WatchOnly: 'Vos comptes en affichage uniquement', + MYWAL_Viewing: 'Affichage des portefeuilles : ', + MYWAL_Hide: 'Cacher les informations sur le portefeuille', + MYWAL_Edit_2: 'Modifier le portefeuille : ', + MYWAL_Name: 'Nom du portefeuille', + MYWAL_Content_1: 'Attention ! Vous êtes sur le point de supprimer votre portefeuille: ', + MYWAL_Content_2: 'Assurez-vous d\'avoir bien **sauvegardé la clé privée/ fichier JSON et le mot de passe** associé à ce portefeuille avant de le supprimer.', + MYWAL_Content_3: 'Si vous voulez utiliser ce portefeuille avec MyEtherWallet CX à l\'avenir, vous devrez le rajouter manuellement en utilisant la clé privée/fichier JSON et le mot de passe.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. Vous devrez le faire pour [importer votre compte dans Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Si vous voulez consulter votre solde, nous recommandons d\'utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ceci vous permet de télécharger plusieurs versions des clefs privées et de ré-imprimer votre portefeuille papier. ', + VIEWWALLET_SuccessMsg: 'Succès ! Voici les détails de votre portefeuille.', + + /* Chrome Extension */ + CX_error_1: 'Vous n\'avez pas de portefeuille sauvegardé. Cliquez sur ["Ajout de portefeuille"](/cx-wallet.html#add-wallet) pour en ajouter un !', + CX_quicksend: 'Envoi rapide', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Veuillez entrer un montant valide.', + ERROR_2: 'Votre mot de passe doit faire au moins 9 caractères. Assurez vous qu\'il s\'agisse d\'un mot de passe fort.', + ERROR_3: 'Désolé ! Notre service ne permet pas de gérer ce type de fichier de portefeuille. ', + ERROR_4: 'Ceci n\'est pas un fichier de portefeuille. ', + ERROR_5: 'Cette unité n\'existe pas, merci d\'utiliser une des unités suivantes ', + ERROR_6: 'Adresse invalide. ', + ERROR_7: 'Mot de passe invalide. ', + ERROR_8: 'Montant invalide. ', + ERROR_9: 'Limite de gaz invalide. ', + ERROR_10: 'Valeur des donnnées invalide. ', + ERROR_11: 'Montant de gaz invalide. ', + ERROR_12: 'Nonce invalide. ', + ERROR_13: 'Transaction signée invalide. ', + ERROR_14: 'Un portefeuille avec ce nom existe déjà. ', + ERROR_15: 'Portefeuille non trouvé. ', + ERROR_16: 'Il semble qu\'aucune proposition n\'existe encore avec cet identifiant ou qu\'il y a une erreur lors de la consultation de cette proposition. ', + ERROR_17: 'Un portefeuille avec cette adresse existe déja. Merci de consulter la page listant vos portefeuilles. ', + ERROR_18: 'Il vous faut au moins 0.001 ether sur votre compte pour couvrir les coûts du gaz. Ajoutez des ether et réessayez. ', + ERROR_19: 'Tout le gaz serait consommé lors de cette transaction. Cela signifie que vous avez déjà voté pour cette proposition ou que la période du débat est terminée.', + ERROR_20: 'Symbole invalide', + SUCCESS_1: 'Adresse valide', + SUCCESS_2: 'Portefeuille déchiffré avec succès', + SUCCESS_3: 'Transaction envoyée. Identifiant de transaction : ', + SUCCESS_4: 'Votre portefeuille a été ajouté avec succès : ', + SUCCESS_5: 'Vous avez voté avec succès. Merci d\'être un participant actif à The DAO.', + SUCCESS_6: 'Fichier sélectionné : ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Expéditeur invalide', + GETH_Nonce: 'Nonce trop bas', + GETH_Cheap: 'Prix du gaz trop bas pour être accepté', + GETH_Balance: 'Solde insuffisant', + GETH_NonExistentAccount: 'Compte inexistant ou solde du compte trop bas', + GETH_InsufficientFunds: 'Fonds insuffisants pour gaz * prix + valeur', + GETH_IntrinsicGas: 'Gaz intrinsèque trop bas', + GETH_GasLimit: 'Limite en gaz dépassée', + GETH_NegativeValue: 'Valeur négative', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Simon P](https://www.myetherwallet.com/?gaslimit=21000&to=0x89a18eE46b5aabC62e94b1830881887D04C687f3&value=1.0#send-transaction) · ', + TranslatorAddr_1: '0x89a18eE46b5aabC62e94b1830881887D04C687f3', + /* Translator 1: Translation in French. Début de la traduction, il reste encore du travail... Je continue dès que j'ai un peu de temps :) */ + TranslatorName_2: 'Jean Zundel · ', + TranslatorAddr_2: '', + /* Translator 2: */ + TranslatorName_3: 'girards', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Si vous avez créé un portefeuille -ou- téléchargé le repo avant **le 31 déc. 2015**, merci de vérifier vos portefeuilles / de télécharger une nouvelle version du repo. Cliquez ici pour plus de détails.', + HELP_Desc: 'Il manque quelque chose ? Vous avez d\'autres questions ? [Contactez-nous](mailto:myetherwallet@gmail.com), et non seulement nous allons vous répondre mais aussi mettre à jour cette page afin qu\'elle soit plus utile à tout le monde à l\'avenir !', + HELP_Remind_Title: 'Quelques rappels :', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, et certaines des bibliothèques Javascript sous-jacentes que nous employons sont en cours de développement.** Bien que nous les ayons testés intensivement et que des dizaines de milliez de portefeuilles aient été créés avec succès dans le monde entier, il existe toujours une faible possibilité qu\'un incident se produise conduisant à la perte de vos ETH. N\'investissez pas plus que ce que vous êtes prêt à perdre et soyez prudent. En cas d\'accident, nous en serons désolés mais **nous ne sommes pas responsables d\'une éventuelle perte de cet Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX ne sont pas des "portefeuilles web". Vous ne créez pas un compte, vous ne nous donnez pas votre Ether en dépôt. Aucune donnée ne sort de votre ordinateur ou votre navigateur. Nous vous facilitons la création, la sauvegarde et l\'accès à vos informations ainsi que l\'interaction avec la blockchain.', + HELP_Remind_Desc_3: 'Si vous ne sauvegardez pas votre clef privée et votre mot de passe, il n\'existe aucun moyen de regagner l\'accès à votre portefeuille et aux fonds qu\'il détient. Sauvegardez-les en plusieurs endroits et non uniquement sur votre ordinateur !', + + HELP_0_Title: '0) Je suis nouveau. Que puis-je faire ?', + HELP_0_Desc_1: 'MyEtherWallet vous donne la possibilité de générer de nouveaux portefeuilles pour stocker votre Ether par vous-même et pas sur un *exchange.* Ce processus ne s\'exécute que sur votre ordinateur, pas sur nos serveurs. Quand vous générez un nouveau portefeuille, **il est donc de votre responsabilité de le sauvegarder de manière sécurisée.**', + HELP_0_Desc_2: 'Créez un nouveau portefeuille.', + HELP_0_Desc_3: 'Sauvegardez le portefeuille.', + HELP_0_Desc_4: 'Vérifiez que vous avez accès à ce nouveau portefeuille et que vous avez correctement sauvé toutes les informations nécessaires.', + HELP_0_Desc_5: 'Transférez de l\'Ether vers ce nouveau portefeuille.', + + HELP_1_Title: '1) Comment puis-je créer un nouveau portefeuille ? ', + HELP_1_Desc_1: 'Allez à la page "Génération d\'un portefeuille.', + HELP_1_Desc_2: 'Allez à la page "Ajout de portefeuille" et sélectionnez "Générer un nouveau portefeuille"', + HELP_1_Desc_3: 'Entrez un mot de passe fort. Si vous pensez que vous pouvez l\'oublier, sauvegardez-le dans un endroit sûr. Vous aurez besoin de ce mot de passe pour envoyer des transactions.', + HELP_1_Desc_4: 'Cliquez sur "GÉNÉRER".', + HELP_1_Desc_5: 'Votre portefeuille a maintenant été généré.', + + HELP_2a_Title: '2a) Comment puis-je sauvegarder mon portefeuille ?', + HELP_2a_Desc_1: 'Vous devez toujours sauvegarder votre portefeuille en plusieurs endroits physiques, comme sur une clef USB ou une feuille de papier.', + HELP_2a_Desc_2: 'Sauvegardez l\'adresse. Vous pouvez la garder pour vous-même ou la partager avec d\'autres personnes qui, de cette manière, peuvent vous envoyer de l\'Ether.', + HELP_2a_Desc_3: 'Sauvegardez votre clef privée en plusieurs exemplaires. Ne la partagez avec personne. Votre clef privée est nécessaire pour accéder à votre Ether pour l\'envoyer ! Il existe 3 types de clef privée :', + HELP_2a_Desc_4: 'Placez votre adresse, les exemplaires de la clef privée et la version PDF de votre portefeuille papier dans un dossier. Sauvegardez-le sur votre ordinateur et une clef USB.', + HELP_2a_Desc_5: 'Imprimez votre portefeuille si vous avez une imprimante. Sinon, écrivez votre clef privée et votre adresse usr une feuille de papier. Rangez-la dans un endroit sûr, à part de votre ordinateur et de la clef USB.', + HELP_2a_Desc_6: 'Gardez à l\'esprit qu\'il faut vous préserver de la perte de la clef et du mot de passe en cas de perte de votre disque dur, de votre clef oui de la feuille de papier. Vous devez également vous prémunir contre les catastrophes impactant toute une zone géographique (comme un incendie ou une inondation).', + + HELP_2b_Title: '2b) Comment puis-je gérer en toute sécurité un stockage hors ligne avec MyEtherWallet?', + HELP_2b_Desc_1: 'Allez sur notre Github : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Cliquez sur "Clone or download" > "Download ZIP" en haut à droite.', + HELP_2b_Desc_3: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_2b_Desc_4: 'Dézippez-le et double-cliquez sur `index.html`.', + HELP_2b_Desc_5: 'Générez un portefeuille avec un mot de passe fort.', + HELP_2b_Desc_6: 'Sauvegardez l\'adresse. Sauvegardez les exemplaires de la clef privée. Sauvegardez le mot de passe si vous ne voulez pas devoir vous en souvenir toujours.', + HELP_2b_Desc_7: 'Rangez ces papier et/ou ces clefs USB en des endroits physiquement distants.', + HELP_2b_Desc_8: 'Allez à la page "Visualisation d\'un portefeuille" et entrez votre clef privée et votre mot de passe pour vous assurer de leur validité et pour accéder à votre portefeuille. Vérifiez que l\'adresse que vous avez écrite est la même.', + + HELP_3_Title: '3) Comment puis-je vérifier que j\'ai accès à mon nouveau portefeuille ?', + HELP_3_Desc_1: '**Avant d\'envoyer de l\'Ether à votre portefeuille**, vous devez vous assurer que vous y avez accès.', + HELP_3_Desc_2: 'Naviguez vers la page "Visualisation d\'un portefeuille".', + HELP_3_Desc_3: 'Naviguez vers la page Visualisation d\'un portefeuille" de MyEtherWallet.com.', + HELP_3_Desc_4: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_3_Desc_5: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_3_Desc_6: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_3_Desc_7: 'Les informations sur votre portefeuille doivent apparaître. Trouvez l\'adresse de votre compte près d\'une icône circulaire et colorée. Celle-ci représente visuellement votre adresse. Assurez-vous que cette adresse est celle que vous avez sauvegardée dans votre document texte et qu\'elle se trouve sur votre portefeuille papier.', + HELP_3_Desc_8: 'Si vous désirez détenir une grande quantité d\'Ether, nous recommandons de commencer par envoyer une petite somme depuis le nouveau portefeuille avant d\'y déposer une somme importante. Envoyez 0,001 Ether vers le nouveau portefeuille, accédez-y puis envoyez ces 0,001 Ether vers une autre adresse, et vérifiez que tout a fonctionné sans encombre.', + + HELP_4_Title: '4) Comment puis-je envoyer de l\'Ether d\'un portefeuille vers un autre ?', + HELP_4_Desc_1: 'Si vous désirez transférer une grande quantité d\'Ether, vous devez d\'abord essayer d\'en envoyer d\'abord un petit montant vers votre portefeuille pour vous assurer que tout fonctionne comme prévu.', + HELP_4_Desc_2: 'Naviguez vers la page "Envoi d\'Ether".', + HELP_4_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_4_Desc_4: 'Si le portefeuille est chiffré, une zone texte apparaîtra automatiquement. Entrez le mot de passe.', + HELP_4_Desc_5: 'Cliquez sur le bouton "Déverrouiller votre portefeuille".', + HELP_4_Desc_6: 'Entrez l\'adresse du destinataire dans le champ "Adresse de destination".', + HELP_4_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" si vous voulez envoyer tout le contenu.', + HELP_4_Desc_8: 'Note : Depuis la fin juin 2016, vous devez vous assurer que les ETH et ETC sont bien séparés avant d\'envoyer des ETH. Voir la question n° 6 pour plus d\'informations.', + HELP_4_Desc_9: 'Cliquez sur "Générer la transaction".', + HELP_4_Desc_10: 'Quelques champs supplémentaires apparaîtront. Votre navigateur est en train de générer la transaction.', + HELP_4_Desc_11: 'Cliquez sur le bouton bleu "Envoyer la transaction" en dessous.', + HELP_4_Desc_12: 'Une fenêtre pop-up apparaîtra. Vérifiez que le montant et que l\'adresse de destination sont corrects. Puis cliquez sur "Oui, j\'en suis sûr ! Effectuer la transaction.', + HELP_4_Desc_13: 'La transaction sera soumise. Son identifiant sera affiché. Vous pouvez cliquer sur l\'identifiant pour la voir sur la blockchain.', + + + HELP_4CX_Title: '4) Comment puis-je envoyer de l\'Ether avec MyEtherWallet CX ?', + HELP_4CX_Desc_1: 'D\'abord, vous devez ajouter un portefeuille. Ceci fait, deux possibilités s\'offrent à vous : la fonctionnalité "Envoi rapide" de l\'icône de l\'extension Chrome ou la page "Envoi d\'Ether".', + HELP_4CX_Desc_2: 'Envoi rapide :', + HELP_4CX_Desc_3: 'Cliquez sur l\'icône de l\'extension Chrome.', + HELP_4CX_Desc_4: 'Cliquez sur le bouton "Envoi rapide".', + HELP_4CX_Desc_5: 'Sélectionnez le portefeuille d\'où vous désirez envoyer.', + HELP_4CX_Desc_6: 'Entrez l\'adresse à laquelle vous désirez envoyer dans le champ "Adresse de destination :".', + HELP_4CX_Desc_7: 'Entrez le montant que vous voulez envoyer. Vous pouvez également cliquer sur "Envoyer le solde total" sur vous voulez envoyer tout le contenu.', + HELP_4CX_Desc_8: 'Cliquez sur "Enoyer la transaction". ', + HELP_4CX_Desc_9: 'Vérifiez que l\'adresse et le montant envoyé sont corrects.', + HELP_4CX_Desc_10: 'Entrez le mot de passe de ce portefeuille.', + HELP_4CX_Desc_11: 'Cliquez sur "Envoyez la transaction."', + HELP_4CX_Desc_12: 'Avec la page "Envoi d\'Ether" : ', + + HELP_5_Title: '5) Comment puis-je lancer MyEtherWallet.com hors ligne/localement ? ', + HELP_5_Desc_1: 'Vous pouvez lancer MyEtherWallet.com sur votre ordinateur au lieu de passer par les serveurs GitHub. Vous pouvez générer un portefeuille en restant totalement hors ligne et envoyer des transactions depuis la page "Transaction hors ligne".', + HELP_5_Desc_2: 'Allez sur notre Github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Cliquez sur "Clone or download" > "Download zip" en haut à droite.', + HELP_5_Desc_4: 'Transportez le zip sur un ordinateur hors ligne.', + HELP_5_Desc_5: 'Dézippez-le.', + HELP_5_Desc_6: 'Double-cliquez sur `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com tourne maintenant complètement sur votre ordinateur.', + HELP_5_Desc_8: 'Au cas où cela ne vous soit pas familier, vous devez conserver l\'intégralité du dossier pour faire tourner le site web et non uniquement `index.html`. Ne touchez à rien, ne déplacez rien dans le dossier. Si vous stockez une sauvegarde du repo MyEtherWallet pour l\'avenir, nous vous recommandons ne ne stocker que le ZIP afin d\'être sûr que le contenu du dossier restera intact.', + HELP_5_Desc_9: 'Comme nous améliorons constamment MyEtherWallet.com, nous vous recommandons de mettre régulièrement à jour votre version sauvegardée.', + + HELP_5CX_Title: '5) Comment puis-je installer cette extension depuis le repo au lieu du Chrome Store ? ', + HELP_5CX_Desc_1: 'Allez sur notre Github et cherchez la version la plus récente de l\'extension Chrome : [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Descendez tout en bas et faites un clic droit sur la dernière version. Cliquez sur "Enregistrer le lien en tant que...".', + HELP_5CX_Desc_3: 'Allez dans Google Chrome et trouvez les paramètres (dans le menu en haut à droite).', + HELP_5CX_Desc_4: 'Cliquez sur "Extensions" à gauche.', + HELP_5CX_Desc_5: 'Cliquez sur la case "Mode développeur" en haut de cette page.', + HELP_5CX_Desc_6: 'Cliquez sur le bouton "Chargez l\'extension non empaquetée...".', + HELP_5CX_Desc_7: 'Naviguez vers le dossier que vous avez téléchargé et dézippé auparavant. Cliquez sur "Sélectionner".', + HELP_5CX_Desc_8: 'L\'extension doit maintenant apparaître dans vos extensions et dans la barre des extensions de Chrome.', + + HELP_6_Title: '6) Comment puis-je séparer mes ETH / ETC ? ', + HELP_6_Desc_1: 'Quand le hard fork s\'est produit, à tout ETH que vous possédiez dans votre portefeuille correspond maintenant un montant égal en ETC. Si vous envoyez des ETH par une transaction standard, cela enverra également des ETC et, pour l\'empêcher, il vous faut maintenant "séparer" votre portefeuille d\'origine en deux en vous assurant que seul du ETH va dans le portefeuille ETH et seul du ETC va dans le portefeuille ETC.', + HELP_6_Desc_2: 'Vous pouvez également envoyer tout votre ETH et ETC par une transaction standard vers Kraken ou Poloniex. Ces *exchanges* vont automatiquement séparer vos ETH et ETC. Vous pouvez alors déplacer ces fonds vers de nouveaux portefeuilles ou vendre vos ETH ou vos ETC.', + HELP_6_Desc_3: '[Vous trouverez plus d\'informations sur les portefeuilles et les attaques par réexécution ici](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Générer un nouveau portefeuille ETH post-fork vierge pour vous-même (destination finale du pur ETH).', + HELP_6_Desc_5: 'Générer un nouveau portefeuille ETC post-fork vierge pour vous-même (destination finale du pur ETC).', + HELP_6_Desc_6: 'Sauvegardez ces nouveaux portefeuilles et vérifiez que vous pouvez y accéder. Voir #2a et #3 ci-dessus.', + HELP_6_Desc_7: 'Envoyez 0.1234 ETH à votre nouveau portefeuille ETH en utilisant l\'option "ETH seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_8: 'Envoyez 0.5678 ETC à votre nouveau portefeuille ETC en utilisant l\'option "ETC seulement" sur la page "Envoi d\'Ether".', + HELP_6_Desc_9: 'Vérifiez que seuls les 0.1234 ETH ont bougé sur etherscan.io. Vérifiez que seuls les 0.5678 ETC ont bougé sur gastracker.io.', + HELP_6_Desc_10: 'Envoyez une transaction de 0.0001 ETH depuis votre nouveau portefeuille ETH. Vérifiez sur etherscan.io. Assurez-vous que les 0.0001 ETH ont bougé.', + HELP_6_Desc_11: 'Générez (mais n\'envoyez pas) une transaction de 0.0002 ETC depuis votre nouveau portefeuille ETC. Copiez le champ "Transaction signée". ', + HELP_6_Desc_12: 'Allez sur [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) et copiez cette transaction ETC dans l\'onglet hors ligne de classicetherwallet.com tout en bas et envoyez-la. Vérifiez sur gastracker.io. Assurez-vous que les 0.0002 ETC ont bougé.', + HELP_6_Desc_13: 'Si tout est correctement reçu et envoyé, vous avez gagné.', + HELP_6_Desc_14: 'Envoyez le reste du solde ETH par l\'option "ETH seulement" et répétez l\'opération pour le solde ETC par l\'option "ETC seulement".', + HELP_6_Desc_15: 'Par la suite, vous pourrez utiliser les transactions standard pour ces portefeuilles sans risque d\'attaque par réexécution.', + + + HELP_7_Title: '7) Comment puis-je envoyer des tokens et ajouter des tokens spécifiques ?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) est un excellent moyen d\'explorer les tokens et de trouver les décimales d\'un token.', + HELP_7_Desc_1: 'Naviguez vers la page "Envoi de tokens".', + HELP_7_Desc_2: 'Déverrouillez votre portefeuille.', + HELP_7_Desc_3: 'Entre l\'adresse à laquelle vous désirez faire l\'envoi dans le champ "Adresse de destination".', + HELP_7_Desc_4: 'Entrez le montant que vous désirez envoyer.', + HELP_7_Desc_5: 'Sélectionnez le token que vous désirez envoyer.', + HELP_7_Desc_6: 'Si celui-ci n\'est pas listé :', + HELP_7_Desc_7: 'Cliquez sur "Spécifique".', + HELP_7_Desc_8: 'Entrez l\'adresse, le nom et les décimales du token. Ces informations sont fournies par les développeurs du token et sont également nécessaires quand vous faites "Add a Watch Token" dans Mist.', + HELP_7_Desc_9: 'Cliquez sur "Sauver".', + HELP_7_Desc_10: 'Vous pouvez maintenant envoyer ces tokens ainsi qu\'en voir le solde dans la zone sur le côté.', + HELP_7_Desc_11: 'Cliquez sur "Générer la transaction".', + HELP_7_Desc_12: 'Quelques champs supplémentaires vont apparaître : votre navigateur est en train de générer la transaction.', + HELP_7_Desc_13: 'Cliquez sur le bouton bleu "Envoyer la transation" au dessous.', + HELP_7_Desc_14: 'Une fenêtre pop-up va apparaître. Vérifiez que le montant et que l\'adresse de destination sont corrects puis cliquez sur le bouton "Oui, j\'en suis sûr ! Effectuer la transaction."', + HELP_7_Desc_15: 'La transaction est alors soumise et l\'identifiant de transaction est affiché. Vous pouvez cliquer dessus pour le voir sur la blockchain.', + + HELP_8_Title: '8) Que se passe-t-il si votre site tombe ?', + HELP_8_Desc_1: 'MyEtherWallet n\'est pas un portefeuille sur le web. Vous n\'avez pas de login et rien n\'est jamais stocké sur nos serveurs. Ce n\'est qu\'une interface qui vous permet d\'interagir avec la blockchain.', + HELP_8_Desc_2: 'Si MyEtherWallet.com tombe, vous devrez trouver un autre moyen (comme geth ou Ethereum Wallet / Mist) pour faire la même chose. Mais vous n\'aurez pas à "récupérer" votre Ether depuis MyEtherWallet parce qu\'il ne se trouve pas dans MyEtherWallet. Il est chez vous, dans le portefeuille que vous avez généré par notre site.', + HELP_8_Desc_3: 'Vous pouvez maintenant importer facilement votre clef privée non chiffrée et vos fichiers (chiffrés) au format Geth/Mist, directement dans geth / Ethereum Wallet / Mist. Voir question #12 ci-dessous.', + HELP_8_Desc_4: 'De plus, la probabilité que nous laissions tomber MyEtherWallet approche zéro. Il ne nous coûte presque rien de le maintenir comme nous n\'y stockons aucune information. Si le domaine venait à être perdu, le logiciel sera toujours disponible publiquement sur [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vous pourrez y télécharger le ZIP et le faire tourner localement. ', + + HELP_8CX_Title: '8) Que se passe-t-il si MyEtherWallet CX disparaît ?', + HELP_8CX_Desc_1: 'D\'abord, toutes les données sont sauvegardées sur votre ordinateur et non sur nos serveurs. Cela peut paraître étonnant mais, quand vous regardez sur l\'extension Chrome, ce que vous voyez *ne se trouve pas* sur nos serveurs ; tout est stocké sur votre propre ordinateur.', + HELP_8CX_Desc_2: 'Cela dit, il est **très important** que vous sauvegardiez toutes les données de tous les portefeuilles générés par MyEtherWallet CX. De cette manière, si quoi que ce soit arrivait à MyEtherWallet CX ou à votre ordinateur, vous conserveriez toutes les informations nécessaires pour accéder à votre Ether. Voir #2a pour la sauvegarde de vos portefeuilles.', + HELP_8CX_Desc_3: 'Si, pour une raison quelconque, MyEtherWallet CX disparaissait du Chrome Store, vous pourrez en trouver le source sur Github et le charger manuellement. Voir #5 ci-dessus.', + + HELP_9_Title: '9) La page "Envoi d\'Ether" est-elle hors ligne ?', + HELP_9_Desc_1: 'Non, la page d\'envoi de transaction n\'est pas hors ligne. Elle a besoin de l\'internet pour obtenir le prix actuel du gaz, le nonce de votre compte et pour émettre la transaction (c\'est-à-dire "envoyer"). Cependant, elle n\'envoie que la transaction signée. Votre clef privée reste en sécurité chez vous. Nous fournissons maintenant aussi une page "Transaction hors ligne" pour vous permettre de conserver en permanence vos clefs privées sur une machine hors ligne.', + + HELP_10_Title: '10) Comment puis-je faire une transaction hors ligne ?', + HELP_10_Desc_1: 'Allez à la page "Transaction hors ligne" avec votre ordinateur en ligne.', + HELP_10_Desc_2: 'Entrez l\'"Adresse d\'émission". Attention, c\'est l\'adresse *d\'où* vous envoyez et non celle *vers* laquelle vous envoyez. Ceci va générer ke nonce et le prix du gaz.', + HELP_10_Desc_3: 'Allez sur votre ordinateur hors ligne. Entrez l\'"Adresse de destination" et le "Montant" que vous désirez envoyer.', + HELP_10_Desc_4: 'Entrez le "Prix du gaz" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_5: 'Entrez le "Nonce" tel qu\'il vous a été affiché sur l\'ordinateur en ligne à la première étape.', + HELP_10_Desc_6: 'La "Limite en gaz" a une valeur de 21000 par défaut. Ceci couvre les frais d\'une transaction standard. Si vous envoyez à un contrat ou si vous embarquez des données supplémentaires avec votre transaction vous devrez augmenter la limite de gaz. Tout gaz non consommé vous sera retourné.', + HELP_10_Desc_7: 'Si vous le désirez, entrez des données. Dans ce cas, vous devrez inclure plus que la limite de 21000 par défaut? Toutes les données sont au format hexadécimal.', + HELP_10_Desc_8: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille.', + HELP_10_Desc_9: 'Cliquez sur le bouton "Générer la transaction signée".', + HELP_10_Desc_10: 'Le champ de données sous ce bouton se remplit avec votre transaction signée. Copiez-la et revenez avec elle sur votre ordinateur en ligne. ', + HELP_10_Desc_11: 'Sur votre ordinateur en ligne, collez la transaction signée dans le champ texte et cliquez sur "Envoyez l\'Ether". Ceci émettra votre transaction.', + + HELP_11_Title: '11) Comment puis-je envoyer à un contrat ?', + HELP_11_Desc_1: 'L\'envoi à un contrat vous impose souvent d\'inclure des données ou du gaz supplémentaire, ou les deux.', + HELP_11_Desc_2: 'Allez à la page "Envoi d\'Ether". ', + HELP_11_Desc_3: 'Sélectionnez le fichier de votre portefeuille -ou- votre clef privée et déverrouillez votre portefeuille. ', + HELP_11_Desc_4: 'Entrez une "Adresse de destination" et un "Montant à envoyer".', + HELP_11_Desc_5: 'Cliquez sur le bouton "+Avancé : Ajouter du gaz ou des données supplémentaires" sous le champ du montant. Ceci affiche deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au dessus de la valeur par défaut de 21000 ainsi que d\'ajouter des données à votre transaction.', + + HELP_12_Title: '12) Comment puis-je importer un portefeuille créé par MyEtherWallet dans geth / Ethereum Wallet / Mist ?', + HELP_12_Desc_1: 'Avec un fichier Geth/Mist JSON de MyEtherWallet v2+....', + HELP_12_Desc_2: 'Allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_3: 'Déverrouillez votre portefeuille avec votre clef privée **chiffrée** ou votre fichier JSON. ', + HELP_12_Desc_4: 'Allez à la page "Mes portefeuilles".', + HELP_12_Desc_5: 'Sélectionnez le portefeuille que vous désirez importer dans Mist, cliquez sur l\'icône "View", entrez votre mot de passe et accédez à votre portefeuille. ', + HELP_12_Desc_6: 'Allez à la section "Téléchargez le fichier JSON file - Format Geth/Mist (chiffé)". Cliquez sur le bouton "Télécharger" en dessous. Vous avez maintenant votre fichier *keystore.* ', + HELP_12_Desc_7: 'Ouvrez l\'application Ethereum Wallet. ', + HELP_12_Desc_8: 'Dans la barre de menu, allez sur "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Ceci ouvre votre dossier de keystores. Copiez-y le fichier que vous venez de télécharger (`UTC--2016-04-14......../`) dans ce dossier.', + HELP_12_Desc_10: 'Votre compte doit apparaître immédiatement sous "Accounts."', + HELP_12_Desc_11: 'Avec votre clef privée non chiffrée...', + HELP_12_Desc_12: 'Si vous n\'avez pas déjà votre clef privée non chiffrée, allez à la page "Visualisation d\'un portefeuille".', + HELP_12_Desc_13: 'Sélectionnez le fichier de votre portefeuille -ou- entrez/collez votre clef privée pour déverrouiller votre portefeuille.', + HELP_12_Desc_14: 'Copiez votre clef privée (non chiffrée).', + HELP_12_Desc_15: 'Si vous êtes sur un Mac :', + HELP_12_Desc_15b: 'Si vous êtes sur un PC :', // Strange, already in French, not found in de.js + HELP_12_Desc_16: 'Ouvez Text Edit et collez cette clef privée.', + HELP_12_Desc_17: 'Dans la barre de menu, cliquez sur "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Sauvegardez ce fichier vers votre `Desktop/` en tant que `nothing_special_delete_me.txt`. Assurez-vous qu\'il précise "UTF-8" et "If no extension is provided use .txt" dans le dialogue de sauvegarde.', + HELP_12_Desc_19: 'Ouvrez un terminal et lancez la commande suivante : `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserez dans geth / Ethereum Wallet / Mist à chaque vois que vos enverrez une transaction, donc ne l\'oubliez pas. ', + HELP_12_Desc_21: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + HELP_12_Desc_23: 'Ouvrez Notepad et collez-y la clef privée', + HELP_12_Desc_24: 'Sauvegardez le fichier en tant que `nothing_special_delete_me.txt` sur `C:`', + HELP_12_Desc_25: 'Lancez la commande `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'Ceci vous invitera à choisir un nouveau mot de passe. C\'est celui que vous utiliserz dans geth / Ethereum Wallet / Mist à chaque foiq que vous enverrez une transaction donc ne l\'oubliez pas.', + HELP_12_Desc_27: 'Après que l\'import a réussi, supprimez `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'La prochaine fois que vous ouvrirez l\'application Ethereum Wallet, votre compte sera listé sous "Accounts".', + + HELP_13_Title: '13) Que signigie "Limite de gaz trop basse" ?', + HELP_13_Desc_1: 'Il est très probable que vous essayiez d\'envoyer de l\'Ether à un contrat, ce qui implique un peu plus de données et donc un peu plus de gaz. Sur la page "Envoi d\'Ether", cliquez sur le bouton "+Advancé : Ajouter du gaz ou des données supplémentaire" sous le champ du montant. Ceci fera afficher deux champs additionnels que vous pouvez utiliser pour augmenter le gaz au-dessus de sa valeur par défaut de 21000, ou pour ajouter des données à votre transaction.', + + HELP_14_Title: '14) Certains sites randomisent (initialisent) la génération de clef privée par les mouvements de la sours. Ce n\'est pas le cas de MyEtherWallet.com. La génération de nombres aléatoires de MyEtherWallet est-elle sûre ?', + HELP_14_Desc_1: 'Bien que l\'interception des mouvement de la souris soit jugée attractive par beaucoup, et que nous en comprenions les raisons, la réalité est que window.crypto assure plus d\'entropie que les mouvements de votre souris. L\'utilisation de ces mouvements est sûre mais nous (ainsi que de nombreux projets crypto) avons de bonnes raisons de croire en window.crypto. De plus, MyEtherWallet.com peut être utilisé sur des périphériques tactiles. Voici une [conversation entre un redditor rageur et Vitalik Buterin sur les mouvements de souris et window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) et voici [les spécifications w3 de window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Pourquoi le compte que je viens de créer n\'apparaît-il pas dans l\'explorateur de blockchain ? (i.e. : etherchain, etherscan)', + HELP_15_Desc_1: 'Les comptes n\'apparaissent dans un explorateur de blockchain qu\'après une activité y ait eu lieu comme, par exemple, quand on y a transféré de l\'Ether.', + + HELP_16_Title: '16) Comment puis-je vérifier le solde de mon compte ? ', + HELP_16_Desc_1: 'Vous pouvez utiliser un explorateur de blockchain comme [etherscan.io](http://etherscan.io/). Collez votre adresse dans la barre de recherche et cela récupérera votre solde et l\'historique de vos transactions. Par exemple, voici ce que montre notre [compte de donations](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) sur etherscan.io', + + HELP_17_Title: '17) Pourquoi mon solde n\'apparaît-il pas quand je déverrouille mon portefeuille ? ', + HELP_17_Desc_1: ' C\'est probablement dû au fait que vous vous trouvez derrière un firewall. L\'API que nous utilisons pour obtenir le solde et converir celui-ci est souvent bloquée par des firewalls pour des raisons diverses. Vous êtes toujours capable d\'envoyer des transactions mais il vous faut employer une autre méthode pour voir le solde, comme etherscan.io', + + HELP_18_Title: '18) Où est le fichier de mon portefeuille geth ?', + + HELP_19_Title: '19) Où est le fichier de mon portefeuille Mist ? ', + HELP_19_Desc_1: 'Les fichiers Mist se trouvent généralement aux endroits ci-dessus mais il est beaucoup plus facile d\'ouvrir Mist, de sélectionner "Accounts" dans la barre du haut, puis "Backup" et "Accounts". Cela ouvre le dossier où vos fichiers sont stockés.', + + HELP_20_Title: '20) Où est le fichier de mon portefeuille de *pre-sale* (pré-vente) ?', + HELP_20_Desc_1: 'Là où vous l\'avez mis. ;) Il vous a aussi été envoyé donc allez vérifier vos mails. Cherchez le fichier appelé `"ethereum_wallet_backup.json"` et choisissez ce fichier. Il est chiffré avec un mot de passe que vous avez créé pendant l\'achat au moment de la pré-vente.', + + HELP_21_Title: '21) N\'importe qui ne peut-il pas prendre une clef privée au hasard, chercher un solde et l\'envoyer à sa propre adresse ? ', + HELP_21_Desc_1: 'Version courte : oui, mais trouver un compte avec un solde prendrait plus longtemps que la durée de l\'univers... donc... non.', + HELP_21_Desc_2: 'Version longue : Ethereum est basé sur la [cryptographie à clef publique](https://en.wikipedia.org/wiki/Public-key_cryptography), plus précisément la [cryptographie des courbes elliptiques (ECC)](https://eprint.iacr.org/2013/734.pdf) qui est très couramment employée, pas uniquement dans Ethereum. La plupart des serveurs sont protégés par les ECC. Bitcoin les emploie ainsi que SSH, TLS et bien d\'autres protocoles. Dans le cas spécifique d\'Ethereum, les clefs font 256 bits et sont plus fortes que celles en 128 et 192 bits, encore très employées et toujours considérées comme sûres par les experts.', + HELP_21_Desc_3: 'Vous avez une clef privée et une clef publique. La clef privée peut servir à dériver la clef publique mais l\'inverse est impossible. Le fait que l\'internet et le monde entier utilise ce système cryptographique signifie que, s\'il existait un moyen de dériver la clef privée de la clef publique, le risque que courrait votre Ether serait le moindre des problèmes de tout le monde.', + HELP_21_Desc_4: 'Cela dit, OUI : si quelqu\'un possède votre clef privée, il peut envoyer de l\'Ether depuis votre compte, de même que si une personne a le mot de passe de votre email, elle peut lire des mails ou en envoyer, ou si c\'est le mot de passe de votre compte en banque, elle peut faire des virements. Vous pouvez télécharger la versoin KEystore de votre clef privée qui est la clef privée chiffrée avec un mot de passe. Cela ressemble à avoir un mot de passe protégé par un autre mot de passe.', + HELP_21_Desc_5: 'Et OUI, en théorie, on peut taper une chaîne de 64 caractères hexadécimaux jusqu\'à en trouver un qui correspond. Il est d\'ailleurs possible d\'écrire un programme qui vérifie très rapidement des clefs privée aléatoires. C\'est ce que l\'on appelle utiliser la "brute force" ou miner des clefs privées. Beaucoup de monde y a pensé très fort et très longtemps. Quelques serveurs haut de gamme peuvent vérifier plus de 1 million de clefs par seconde. Pourtant, même ce chiffre ne donnerait pas accès à un compte suffisamment approvisionné pour en valoir la chandelle ; il est bien plus probable que vous, vos enfant et vos petits-enfants mourront avant d\'obtenir une correspondance.', + HELP_21_Desc_6: 'Si vous connaissez un peu Bitcoin, [ceci remettra les choses en perspective :](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Pour illustrer l\'improbabilité de tout ceci : supposons quqe chaque satoshi de chaque bitcoin qui sera jamais produit soit affecté à sa propre clef privée distincte. La probabilité que, parmi ces clefs, s\'en trouvent deux qui correspondent à la même adresse serait d\'environ 1 sur 100 quintillons. ', + HELP_21_Desc_7: '[Si vous voulez un argumentaire un peu plus technique :](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Ces nombres n\'ont rien à voir avec la technologie des systèmes ; ce sont les maximums autorisés par la thermodynamique. Et ils impliquent clairement qu\'une attaque par brute force contre des clefs de 256 bits restera impossible jusqu\'à ce que l\'on construise des ordinateurs avec autre chose que de la matière et qu\'ils occupent autre chose que l\'espace.', + HELP_21_Desc_8: 'Cela suppose bien entendu que les clefs sont générées d\'une manière totalement aléatoire avec suffisamment d\'entropie. C\'est le cas des clefs générées ici, tout comme celles de Jaxx et de Mist/geth. Les portefeuilles Ethereum sont tous assez bons de ce point de vue. Les clefs générées par des cerveaux humains ne le sont pas, car ces derniers ne sont pas capables de partir d\'un nombre parfaitement aléatoire. Il y a eu des cas d\'autres problèmes d\'entropie insuffisante ou de nombres imparfaitement aléatoires dans le monde de Bitcoin mais il s\'agit là d\'un tout autre problème qui peut attendre un peu.', + + HELP_SecCX_Title: 'Securité - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Où cette extension sauve-t-elle mes informations ?', + HELP_SecCX_Desc_2: 'Les informations stockées dans cette extension sont sauvegardée via [chrome.storage](http://chrome.storage/), c\'est à dire au même endroit que vos mots de passe dans Chrome.', + HELP_SecCX_Desc_3: 'Quelles informations sont sauvegardées ? ', + HELP_SecCX_Desc_4: 'L\'adresse, le surnom, la clef privée sont stockés dans chrome.storage. La clef privée est chiffrée par le mot de passe défini à l\'ajout du portefeuille. Le surnom et l\'adresse du portefeuille ne sont pas chiffrés.', + HELP_SecCX_Desc_5: 'Pourquoi le surnom et l\'adresse du portefeuille ne sont-ils pas chiffrés ? ', + HELP_SecCX_Desc_6: 'Si nous devions chiffrer ces informations, il vous faudrait entrer un mot de passe à chaque fois que vous voudriez voir votre solde ou les surnoms. Si cela vous ennuie, nous vous recommandons d\'utiliser MyEtherWallet.com au lieu de cette extension Chrome.', + + HELP_Sec_Title: 'Sécurité', + HELP_Sec_Desc_1: 'Si l\'une des premières questions que vous vous posez est "Pourquoi devrais-je faire confiance à ces gens ?", c\'est une bonne démarche. Nous espérons que ce qui suit va dissiper vos craintes. ', + HELP_Sec_Desc_2: 'Nous avons commencé en août 2015. Si vous recherchez ["myetherwallet" sur reddit](https://www.reddit.com/search?q=myetherwallet), vous pouvez voir qu\'un nombre considérable de personnes nous utilisent sans problème.', + HELP_Sec_Desc_3: 'Nous n\'allons pas prendre votre argent ou voler vos clefs privées. Il n\'y a pas de code malveillant sur ce site. En fait, les pages "Génération d\'un portefeuille" sont totalement côté client. Cela signifie que tout le code s\'éxécute sur **votre ordinateur** et n\'est jamais sauvé et/ou transmis où que ce soit.', + HELP_Sec_Desc_4: 'Vérifiez l\'URL -- Ce site est servi par Github et vous pouvez en voir le code source ici : [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) aux domaines : [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) et [https://www.myetherwallet.com](https://www.myetherwallet.com). Vous pouvez vérifier qu\'il est hébergé chez Github en utilisant [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") ; les deux derniers enregistrements A appartiennent à Github pour leur hébergement de domaines spécifiques.', + HELP_Sec_Desc_5: 'Pour générer les portefeuilles, vous pouvez télécharger le [code source](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Voir #5 ci-dessus.', + HELP_Sec_Desc_6: 'Lancez un test et vérifiez le type d\'activité réseau. La manière la plus simple consiste en un clic droit sur la page, puis "Inspecter". Allez à l\'onglet "Network". Générez un portefeuille de test. Vous verrez qu\'il n\'y a pas d\'activité réseau. Vous pourrez voir quelque chose se produire ressemblant à data:image/gif et data:image/png. Ce sont les QR codes en cours de génération... sur votre ordinateur. Aucun octet n\'a été transféré.', + HELP_Sec_Desc_7: 'Maintenant, pour en être absolument sûr, allez à la page "Resources" (ou "Application"). Vous pouvez y voir tous les éléments qui constituent un site web. Si vous cliquez sur Local Storage, Cookies et Cache, vous verrez que rien n\'y est stocké. Rien n\'y est sauvegardé. Rafraîchissez la page et vous voilà revenu au départ."', + HELP_Sec_Desc_8: 'Si cet outil ne vous plaît pas, alors ne l\'utilisez surtout pas. Nous l\'avons créé pour qu\'il aide les gens à générer des portefeuilles et à effectuer des transactions sans avoir besoin de plonger dans les lignes de commandes ni faire tourner un nœud complet. À nouveau, n\'hésitez pas à nous faire part de vos doutes et nous répondrons aussi rapidement que possible. Merci ! ', + + HELP_FAQ_Title: 'Plus de réponses utiles aux questions fréquentes', + HELP_Contact_Title: 'Moyens de nous contacter' +}; + +module.exports = fr; },{}],44:[function(require,module,exports){ -// Hindi -'use strict'; -var hi = function() {} -hi.code = 'hi'; -hi.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hi; +// Hebrew +'use strict'; +var he = function() {} +he.code = 'he'; +he.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = he; },{}],45:[function(require,module,exports){ -// Hungarian -'use strict'; -var hu = function() {} -hu.code = 'hu'; -hu.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = hu; +// Hindi +'use strict'; +var hi = function() {} +hi.code = 'hi'; +hi.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hi; },{}],46:[function(require,module,exports){ -// Indonesian -'use strict'; -var id = function() {} -id.code = 'id'; -id.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = id; +// Hungarian +'use strict'; +var hu = function() {} +hu.code = 'hu'; +hu.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = hu; },{}],47:[function(require,module,exports){ -// Italian -// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e -'use strict'; -var it = function() {} -it.code = 'it'; -it.data = { - - /* Navigation*/ - NAV_YourWallets: 'I tuoi portafogli', - NAV_AddWallet: 'Aggiungi portafoglio', - NAV_GenerateWallet: 'Genera portafoglio', - NAV_BulkGenerate: 'Generazione multipla', - NAV_SendEther: 'Invia ether', - NAV_SendTokens: 'Invia token', - NAV_Offline: 'Invia offline', - NAV_WithdrawDAO: 'Preleva DAO', - DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', - NAV_ClaimDGD: 'Richiedi DGD', - DGD_TitleLong: 'Richiedi i tuoi token DGD', - NAV_DeployContract: 'Pubblica contratto', - NAV_MyWallets: 'I miei portafogli', - NAV_ViewWallet: 'Informazioni portafoglio', - NAV_Help: 'Aiuto', - NAV_Contact: 'Contatti', - - /* General */ - x_Password: 'Password', - x_Download: 'Download', - x_Address: 'Il tuo indirizzo', - x_Save: 'Salva', - x_Cancel: 'Annulla', - x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', - x_PrivKey: 'Chiave privata (non crittografata)', - x_PrivKey2: 'Chiave privata', - x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', - x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', - x_Keystore2: 'File Keystore / JSON', - x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', - x_Json: 'File JSON (non crittografato)', - x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', - x_PrintShort: 'Stampa', - x_Print: 'Stampa portafoglio cartaceo', - x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', - x_CSV: 'File CSV (non crittografato)', - x_TXT: 'File TXT (non crittografato)', - x_Wallet: 'Portafoglio', - - /* Header */ - MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', - CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', - MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', - CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', - - /* Footer */ - FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', - FOOTER_1b: 'Creato da', - FOOTER_2: 'Donazioni molto apprezzate:', - FOOTER_3: 'Generazione portafogli lato client da parte di', - FOOTER_4: 'Dichiarazione di non responsabilità', - - /* Sidebar */ - sidebar_AccountInfo: 'Informazioni conto: ', - sidebar_AccountAddr: 'Indirizzo conto: ', - sidebar_AccountBal: 'Saldo conto: ', - sidebar_TokenBal: 'Saldo token: ', - sidebar_Equiv: 'Valori equivalenti: ', - sidebar_TransHistory: 'Storico transazioni: ', - sidebar_DGDBal: 'Informazioni crowdsale DGD:', - sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', - sidebar_donate: 'Dona', - sidebar_thanks: 'GRAZIE!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', - decrypt_Title: 'Seleziona il formato della tua chiave privata:', - decrypt_Select: 'Seleziona un portafoglio:', - - /* Add Wallet */ - ADD_Label_1: 'Cosa vuoi fare?', - ADD_Radio_1: 'Genera un nuovo portafoglio', - ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', - ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', - ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', - ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', - ADD_Radio_4: 'Aggiungi un conto da osservare', - ADD_Label_2: 'Crea un nome:', - ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', - ADD_Label_4: 'Aggiungi un conto da osservare', - ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', - ADD_Label_5: 'Inserisci l\'indirizzo: ', - ADD_Label_6: 'Sblocca portafoglio: ', - ADD_Label_6_short: 'Sblocca', - ADD_Label_7: 'Aggiungi conto', - - /* Generate Wallets */ - GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', - GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', - GEN_Placeholder_1: 'NON dimenticarti di salvarla!', - GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', - GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', - GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', - GEN_Label_3: 'Salva il tuo indirizzo.', - GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Numero di portafogli da generare', - BULK_Label_2: 'Genera portafogli', - BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Indirizzo destinatario: ', - SEND_amount: 'Importo da inviare: ', - SEND_amount_short: 'Importo', - SEND_custom: 'Altro', - SEND_gas: 'Gas', - SEND_generate: 'Genera transazione', - SEND_raw: 'Transazione grezza', - SEND_signed: 'Transazione firmata', - SEND_trans: 'Invia transazione', - SEND_TransferTotal: 'Invia l\'intero saldo', - SENDModal_Title: 'Attenzione! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Stai per inviare', - SENDModal_Content_2: 'all\'indirizzo', - SENDModal_Content_3: 'Sei sicuro di volerlo fare?', - SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', - SENDModal_No: 'No, tiratemi fuori da qui!', - SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', - - /* Tokens */ - TOKEN_Addr: 'Indirizzo: ', - TOKEN_Symbol: 'Simbolo del token: ', - TOKEN_Dec: 'Decimali: ', - - /* Send Transaction */ - TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', - TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', - TRANS_standard: 'ETH (transazione standard)', - TRANS_eth: 'Solo ETH', - TRANS_etc: 'Solo ETC', - TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', - TRANS_data: ' Dati: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', - TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', - TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', - TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', - TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', - TRANSModal_Yes: 'Bene, ho capito.', - TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genera & invia una transazione offline', - OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', - OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', - OFFLINE_Step1_Button: 'Genera informazioni', - OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', - OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', - OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', - OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', - OFFLINE_Step2_Label_2: 'Valore / importo da inviare', - OFFLINE_Step2_Label_3: 'Prezzo gas ', - OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_4: 'Limite gas ', - OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', - OFFLINE_Step2_Label_6: 'Dati', - OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', - OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', - OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', - OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', - - /* DAO */ - DAO_bal1: 'al blocco 1.919.999', - DAO_bal2: 'adesso', - DAO_TitleETH: 'Preleva DAO e ricevi ETH', - DAO_TitleETC: 'Preleva DAO e ricevi ETC', - DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', - DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', - DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', - DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', - DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', - DAOModal_Title: 'Tanto per essere sicuri...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Stai per prelevare', - DAOModal_2: 'token DAO inviando a', - DAOModal_3: 'una somma di', // "in return for" - - /* Digix */ - DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', - DGD_Label_1: 'Stima commissione utilizzata:', - DGD_Label_2: 'Commissione massima fornita:', - DGD_Label_3: 'Prezzo gas:', - DGD_Generate: 'Genera richiesta', - DGD_Content: 'Stai per richiedere i tuoi token DGD.', - - /* Deploy Contracts */ - DEP_generate: 'Genera bytecode', - DEP_generated: 'Bytecode generato', - DEP_signtx: 'Firma transazione', - DEP_interface: 'Interfaccia generata', - - /* My Wallet */ - MYWAL_Nick: 'Nome portafoglio', - MYWAL_Address: 'Indirizzo portafoglio', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Modifica', - MYWAL_View: 'Mostra', - MYWAL_Remove: 'Rimuovi', - MYWAL_RemoveWal: 'Rimozione portafoglio:', - MYWAL_WatchOnly: 'I tuoi conti osservati', - MYWAL_Viewing: 'Dettagli portafoglio: ', - MYWAL_Hide: 'Nascondi informazioni portafoglio', - MYWAL_Edit_2: 'Modifica portafoglio: ', - MYWAL_Name: 'Nome portafoglio', - MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', - MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', - MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', - VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', - - /* CX */ - CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', - CX_quicksend: 'Invio rapido', - - /* Error Messages */ - ERROR_1: 'Ti preghiamo di inserire una quantità valida.', - ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', - ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', - ERROR_4: 'Questo non è un file portafoglio valido. ', - ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', - ERROR_6: 'Indirizzo non valido. ', - ERROR_7: 'Password non valida. ', - ERROR_8: 'Numero non valido. ', - ERROR_9: 'Limite gas non valido. ', - ERROR_10: 'Valori dati non validi. ', - ERROR_11: 'Quantità di gas non valida. ', - ERROR_12: 'Nonce non valido. ', - ERROR_13: 'Transazione firmata non valida. ', - ERROR_14: 'Esiste già un portafoglio con questo nome. ', - ERROR_15: 'Portafoglio non trovato. ', - ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', - ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', - ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', - ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', - ERROR_20: 'Simbolo non valido', - SUCCESS_1: 'Indirizzo valido', - SUCCESS_2: 'Portafoglio decodificato correttamente', - SUCCESS_3: 'Transazione inviata. TX ID: ', - SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', - SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', - SUCCESS_6: 'File selezionato: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Mittente non valido', - GETH_Nonce: 'Nonce troppo basso', - GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', - GETH_Balance: 'Saldo insufficiente', - GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', - GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', - GETH_IntrinsicGas: 'Gas intrinseco troppo basso', - GETH_GasLimit: 'Eccede il limite gas per il blocco', - GETH_NegativeValue: 'Valore negativo', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Grazie ai nostri traduttori: ', - TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', - TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', - HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', - HELP_Remind_Title: 'Qualche promemoria', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', - HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', - - HELP_0_Title: '0) Sono nuovo. Cosa faccio?', - HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', - HELP_0_Desc_2: 'Crea un nuovo portafoglio.', - HELP_0_Desc_3: 'Fai un backup del portafoglio.', - HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', - HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', - - HELP_1_Title: '1) Come creo un nuovo portafoglio? ', - HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', - HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', - HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', - HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', - HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', - - HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', - HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', - HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', - HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', - HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', - HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', - HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', - - HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', - HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', - HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', - HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', - HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', - HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', - HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', - HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', - - HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', - HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', - HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', - HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', - HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', - HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', - - HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', - HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', - HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', - HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', - HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', - HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', - HELP_4_Desc_9: 'Fai clic su "Genera transazione".', - HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', - - HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', - HELP_4CX_Desc_2: 'Invio rapido:', - HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', - HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', - HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', - HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', - HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', - HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', - HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', - HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', - HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', - - HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', - HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', - HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', - HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', - HELP_5_Desc_5: 'Decomprimi il file.', - HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', - HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', - HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', - - HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', - HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', - HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', - HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', - HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', - HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', - HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', - HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', - - HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', - HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', - HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', - HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', - HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', - HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', - HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', - HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', - HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', - HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', - HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', - HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', - HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', - HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', - HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', - - HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', - HELP_7_Desc_1: 'Vai alla pagina "Invia token".', - HELP_7_Desc_2: 'Sblocca il portafoglio.', - HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', - HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', - HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', - HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', - HELP_7_Desc_7: 'Fai clic su "Altro".', - HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', - HELP_7_Desc_9: 'Fai clic su "Salva".', - HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', - HELP_7_Desc_11: 'Fai clic su "Genera transazione".', - HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', - HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', - HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', - HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', - - HELP_8_Title: '8) Che succede se il vostro sito va giù?', - HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', - HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', - HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', - HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', - - HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', - HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', - HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', - HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', - - HELP_9_Title: '9) La pagina "Invia ether" è offline?', - HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', - - HELP_10_Title: '10) Come creo una transazione offline?', - HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', - HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', - HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', - HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', - HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', - HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', - HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', - HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', - HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', - HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', - - HELP_11_Title: '11) Come faccio a inviare a un contratto?', - HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', - HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', - HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', - HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', - HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', - HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', - HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', - HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', - HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', - HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', - HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', - HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', - HELP_12_Desc_11: 'Con una chiave privata non crittografata...', - HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', - HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', - HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', - HELP_12_Desc_15: 'Se sei su un Mac:', - HELP_12_Desc_15b: 'Se sei su un PC:', - HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', - HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', - HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', - HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', - HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', - HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', - HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', - HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', - HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', - HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', - HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', - HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', - - HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', - HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', - - HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', - HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', - HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', - - HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', - HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', - - HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', - HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', - - HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', - - HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', - HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', - - HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', - HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', - - HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', - HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', - HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', - HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', - HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', - HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', - HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', - HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', - HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', - - HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', - HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', - HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', - HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', - HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', - HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', - - HELP_Sec_Title: 'Sicurezza', - HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', - HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', - HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', - HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', - HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', - HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', - HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', - HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', - - HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', - HELP_Contact_Title: 'Modi per contattarci (in Inglese)' -}; - -module.exports = it; +// Indonesian +'use strict'; +var id = function() {} +id.code = 'id'; +id.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dompet Anda', /*'Your Wallets'*/ + NAV_AddWallet: 'Tambahkan Dompet', /*'Add Wallet'*/ + NAV_GenerateWallet: 'Buat Dompet', /*'Generate Wallet'*/ + NAV_BulkGenerate: 'Buat Banyak Dompet Sekaligus', /*'Bulk Generate'*/ + NAV_SendEther: 'Kirim Ether', /*'Send Ether'*/ + NAV_SendTokens: 'Kirim Tokens', /*'Send Tokens'*/ + NAV_Offline: 'Kirim Offline', /*'Send Offline'*/ + NAV_WithdrawDAO: 'Ambil DAO', /*'Withdraw DAO'*/ + DAO_TitleLong: 'Ambil ETH dari Token DAO Anda Withdraw Your Dao Tokens For ETH', /*'Withdraw Your Dao Tokens For ETH'*/ + NAV_ClaimDGD: 'Klaim DGD', /*'Claim DGD'*/ + DGD_TitleLong: 'Klaim DGD Token Anda', /*'Claim Your DGD Tokens'*/ + NAV_DeployContract: 'Deploy Contract', /*'Deploy Contract'*/ + NAV_MyWallets: 'Dompet Saya', /*'My Wallets'*/ + NAV_ViewWallet: 'Lihat Info Dompet', /*'View Wallet Info'*/ + NAV_Help: 'Bantuan', /*'Help'*/ + NAV_Contact: 'Kontak', /*'Contact'*/ + + /* General */ + x_Address: 'Alamat Anda', /*'Your Address'*/ + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Batal', /*'Cancel'*/ + x_CSV: 'File CSV (tidak ter-enkripsi)', /*'CSV file (unencrypted)*/ + x_Download: 'Download', + x_Json: 'File JSON File (tidak ter-enkripsi)', /*'JSON File (unencrypted)'*/ + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Dompet Kertas', /*'Print Paper Wallet'*/ + x_PrintDesc: 'ProTip: klik print dan simpan sebagai PDF, meskipun Anda tidak memiliki printer!', /*'ProTip: Click print and save this as a PDF, even if you do not own a printer!'*/ + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (tidak ter-enkripsi)', /*'Private Key (unencrypted)'*/ + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Simpan', /*'Save'*/ + x_TXT: 'File TXT file (tidak ter-enkripsi)', /*'TXT file (unencrypted)'*/ + x_Wallet: 'Dompet', /*'Wallet'*/ + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'Yos Ginting', + TranslatorAddr_1: '0x8F646C5c215be6E0163f02Bd2eB97AFC2DF70e5c', + /* Translator 1: Start translating into Indonesian. Will do it in stages */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = id; },{}],48:[function(require,module,exports){ -// Japanese -'use strict'; -var ja = function() {} -ja.code = 'ja'; -ja.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'あなたのウォレット', - NAV_AddWallet: 'ウォレットを追加', - NAV_GenerateWallet: 'ウォレットを作成', - NAV_BulkGenerate: 'バルク作成', - NAV_SendEther: 'Ether送出', - NAV_SendTokens: 'トークン送出', - NAV_Offline: 'オフライン送出', - NAV_WithdrawDAO: 'DAO払い戻し', - DAO_TitleLong: 'DAOトークンをETHで払い出し', - NAV_ClaimDGD: 'DGD請求', - DGD_TitleLong: 'DGDトークンを請求', - NAV_DeployContract: 'コントラクトをデプロイ', - NAV_MyWallets: '自分のウォレット', - NAV_ViewWallet: 'ウォレット情報を見る', - NAV_Help: 'ヘルプ', - NAV_Contact: '連絡する', - - /* General */ - x_Address: '自分のアドレス', - x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', - x_CSV: 'CSV ファイル (未暗号化)', - x_Cancel: '取り消す', - x_Download: 'ダウンロード', - x_Json: 'JSON ファイル (未暗号化)', - x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', - x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', - x_Keystore2: 'Keystore / JSON ファイル', - x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', - x_Password: 'パスワード', - x_Print: 'ペーパーウォレットを印刷', - x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', - x_PrintShort: '印刷', - x_PrivKey: 'プライベートキー(未暗号化)', - x_PrivKey2: 'プライベートキー', - x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', - x_Save: '保存する', - x_TXT: 'TXT ファイル (未暗号化)', - x_Wallet: 'ウォレット', - - /* Header */ - MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', - CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', - MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', - CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', - - /* Footer */ - FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', - FOOTER_1b: '制作', - FOOTER_2: '御寄付に感謝!:', - FOOTER_3: 'クライアントサイドウォレット制作', - FOOTER_4: '免責事項', - - /* Sidebar */ - sidebar_AccountInfo: 'アカウント情報: ', - sidebar_AccountAddr: 'アカウントアドレス: ', - sidebar_AccountBal: 'アカウント残高: ', - sidebar_TokenBal: 'トークン残高: ', - sidebar_Equiv: '等価: ', - sidebar_TransHistory: 'トランザクション履歴: ', - sidebar_DGDBal: 'DGDクラウドセール情報:', - sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', - sidebar_donate: '寄付する', - sidebar_thanks: '感謝します!!!', - - /* Decrypt Panel */ - decrypt_Access: 'どの方法でウォレットを操作しますか?', - decrypt_Title: 'プライベートキーフォーマットの選択:', - decrypt_Select: 'ウォレットの選択', - - /* Add Wallet */ - ADD_Label_1: 'ご希望の操作をお選びください', - ADD_Radio_1: '新規ウォレットの作成', - ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', - ADD_Radio_2_alt: 'ウォレットファイルの選択: ', - ADD_Radio_2_short: 'ウォレットファイルを選択', - ADD_Radio_3: 'プライベートキーをペースト/タイプ ', - ADD_Radio_4: '監視するアカウントを追加', - ADD_Label_2: 'ニックネームの作成:', - ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', - ADD_Label_4: '監視するアカウントを追加', - ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', - ADD_Label_5: 'アドレスを入力: ', - ADD_Label_6: 'ウォレットをアンロック: ', - ADD_Label_6_short: 'アンロック', - ADD_Label_7: 'アカウントを追加', - - /* Generate Wallets */ - GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', - GEN_Label_1: '強固なパスワードを入力(9文字以上)', - GEN_Placeholder_1: '必ず保存してください!', - GEN_SuccessMsg: '成功!ウォレットが作成されました。', - GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', - GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', - GEN_Label_3: 'アドレスを保存してください。', - GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', - - /* Bulk Generate Wallets */ - BULK_Label_1: '作成するウォレット数', - BULK_Label_2: '複数ウォレットを作成する', - BULK_SuccessMsg: '成功!ウォレットが作成されました。', - - /* Sending Ether and Tokens */ - SEND_addr: '宛先アドレス: ', - SEND_amount: '送出数量: ', - SEND_amount_short: '数量', - SEND_custom: 'カスタム', - SEND_gas: 'ガス', - SEND_TransferTotal: '残高をすべて送出する', - SEND_generate: 'トランザクションを生成', - SEND_raw: '未加工トランザクション', - SEND_signed: '署名済みトランザクション', - SEND_trans: 'トランザクションの送出', - SENDModal_Title: '警告! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: '送出準備が', - SENDModal_Content_2: 'について、アドレス', - SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', - SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', - SENDModal_No: 'いいえ、中断します。', - SENDModal_Yes: 'はい、確かです。処理を実行します。', - - /* Tokens */ - TOKEN_Addr: 'アドレス:', - TOKEN_Symbol: 'トークンシンボル: ', - TOKEN_Dec: 'ケタ数: ', - - /* Send Transaction */ - TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', - TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', - TRANS_standard: 'ETH(標準トランザクション)', - TRANS_eth: 'ETHのみ', - TRANS_etc: 'ETCのみ', - TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', - TRANS_data: ' データ: ', - TRANS_gas: ' ガス: ', - TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', - - /* Send Transaction Modals */ - TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', - TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', - TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', - TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', - TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: '理解しました。', - TRANSModal_No: '理解できません。ヘルプが必要です。', - - /* Offline Transaction */ - OFFLINE_Title: 'オフライントランザクションを作成し送出', - OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', - OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', - OFFLINE_Step1_Button: '情報生成', - OFFLINE_Step1_Label_1: '送出元アドレス: ', - OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', - OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', - OFFLINE_Step2_Label_1: '送出先アドレス: ', - OFFLINE_Step2_Label_2: '送出する値/総量', - OFFLINE_Step2_Label_3: 'ガス価格 ', - OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_4: 'ガスリミット ', - OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', - OFFLINE_Step2_Label_6: 'データ', - OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', - OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', - OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', - OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', - - /* DAO */ - DAO_bal1: 'ブロック 1,919,999', - DAO_bal2: '現在の', - DAO_TitleETH: 'ETHでDAOを払い出し', - DAO_TitleETC: 'ETCでDAOを払い出し', - DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', - DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', - DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', - DAO_Inst: '赤いボタンをクリックしてください。簡単です。', - DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', - DAOModal_Title: '確認中/...', - DAOModal_1: '払い出しを進めます', - DAOModal_2: 'DAOトークンを', - DAOModal_3: 'に対し', // “の代わりに” - - /* Digix */ - DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', - DGD_Label_1: 'フィー消費量概算:', - DGD_Label_2: 'フィー最大消費量:', - DGD_Label_3: 'ガス価格:', - DGD_Generate: '請求の生成', - DGD_Content: 'DGDトークンの請求を進めます', - - /* Deploy Contracts */ - DEP_generate: 'バイトコードを生成する', - DEP_generated: '生成されたバイトコード', - DEP_signtx: 'トランザクションに署名', - DEP_interface: '生成されたインターフェース', - - /* My Wallet */ - MYWAL_Nick: 'ウォレットニックネーム', - MYWAL_Address: 'ウォレットアドレス', - MYWAL_Bal: '残高', - MYWAL_Edit: '編集', - MYWAL_View: '表示', - MYWAL_Remove: '除去', - MYWAL_RemoveWal: 'ウォレットを除去:', - MYWAL_WatchOnly: '自分の監視専用アカウント', - MYWAL_Viewing: 'ウォレットを表示: ', - MYWAL_Hide: 'ウォレット情報を隠す', - MYWAL_Edit_2: 'ウォレットを編集: ', - MYWAL_Name: 'ウォレット名', - MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', - MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', - MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', - VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', - VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', - - /* Chrome Extension */ - CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', - CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: '正しい値を入力してください。', - ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', - ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', - ERROR_4: '正しいウォレットファイルではありません。 ', - ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', - ERROR_6: '無効なアドレスです。 ', - ERROR_7: '無効なパスワードです。 ', - ERROR_8: '無効な総量です。 ', - ERROR_9: '無効なガスリミットです。 ', - ERROR_10: '無効なデータです。 ', - ERROR_11: '無効なガス総量です。 ', - ERROR_12: '無効な nonce です。 ', - ERROR_13: '無効な署名のトランザクションです。 ', - ERROR_14: '同じニックネームのウォレットが既にあります。 ', - ERROR_15: 'ウォレットが見つかりません。 ', - ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', - ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', - ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', - ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  - ERROR_20: '無効なシンボル', - SUCCESS_1: '有効なアドレス', - SUCCESS_2: 'ウォレットは正常に暗号解除されました。', - SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', - SUCCESS_4: 'ウォレットが追加されました:', - SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', - SUCCESS_6: '選択されました: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'トランスレーターに感謝: ', - TranslatorName_1: 'sekisanchi', - TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', - /* Translator 1: Kazunori Seki / 関一典 */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ja; +// Italian +// Last sync with en.js: commit 3ee6e18a0a72587c010a99e5ae015e766f48859e +'use strict'; +var it = function() {} +it.code = 'it'; +it.data = { + + /* Navigation*/ + NAV_YourWallets: 'I tuoi portafogli', + NAV_AddWallet: 'Aggiungi portafoglio', + NAV_GenerateWallet: 'Genera portafoglio', + NAV_BulkGenerate: 'Generazione multipla', + NAV_SendEther: 'Invia ether', + NAV_SendTokens: 'Invia token', + NAV_Offline: 'Invia offline', + NAV_WithdrawDAO: 'Preleva DAO', + DAO_TitleLong: 'Preleva i tuoi token DAO convertendoli in ETH', + NAV_ClaimDGD: 'Richiedi DGD', + DGD_TitleLong: 'Richiedi i tuoi token DGD', + NAV_DeployContract: 'Pubblica contratto', + NAV_MyWallets: 'I miei portafogli', + NAV_ViewWallet: 'Informazioni portafoglio', + NAV_Help: 'Aiuto', + NAV_Contact: 'Contatti', + + /* General */ + x_Password: 'Password', + x_Download: 'Download', + x_Address: 'Il tuo indirizzo', + x_Save: 'Salva', + x_Cancel: 'Annulla', + x_AddessDesc: 'Potresti sentirlo chiamare "Numero di conto" o "Chiave pubblica". È ciò che dai a chi ti vuole inviare degli ether. L\'icona è un modo facile di riconoscere il tuo indirizzo.', + x_PrivKey: 'Chiave privata (non crittografata)', + x_PrivKey2: 'Chiave privata', + x_PrivKeyDesc: 'Questa è la versione testuale non crittografata della tua chiave privata, il che significa che non serve una password. Se qualcuno trovasse la tua chiave privata non crittografata potrebbe avere accesso al tuo portafoglio senza una password. Per questa ragione di solito si consigliano le versioni crittografate.', + x_Keystore: 'File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)', + x_Keystore2: 'File Keystore / JSON', + x_KeystoreDesc: 'Questo file Keystore/JSON è compatibile con il formato usato da Mist e Geth, in modo da poterlo facilmente importare in futuro. È il file consigliato da scaricare e conservare.', + x_Json: 'File JSON (non crittografato)', + x_JsonDesc: 'Questa è la tua chiave privata in formato JSON non crittografato. Significa che non hai bisogno della password, ma chiunque trovi questo file JSON potrà avere accesso al tuo portafoglio e ai tuoi ether senza password.', + x_PrintShort: 'Stampa', + x_Print: 'Stampa portafoglio cartaceo', + x_PrintDesc: 'Suggerimento Pro: Fai clic su stampa e salvalo come PDF, anche se non hai una stampante!', + x_CSV: 'File CSV (non crittografato)', + x_TXT: 'File TXT (non crittografato)', + x_Wallet: 'Portafoglio', + + /* Header */ + MEW_Warning_1: 'Controlla sempre l\'URL prima di accedere al tuo portafoglio o di crearne uno nuovo. Fai attenzione ai siti di phishing!', + CX_Warning_1: 'Assicurati di avere **dei backup esterni** di ogni portafoglio salvato qui. Ci sono molte cose che potrebbero causare la perdita dei dati di questa estensione di Chrome, come la disinstallazione e reinstallazione dell\'estensione. Questa estensione è un mezzo per accedere facilmente ai tuoi portafogli, **non** un modo di salvarli al sicuro.', + MEW_Tagline: 'Portafoglio ether JavaScript lato client Open Source', + CX_Tagline: 'Portafoglio ether JavaScript lato client Open Source (Estensione Chrome)', + + /* Footer */ + FOOTER_1: 'Uno strumento open source, in javascript, lato client per generare portafogli Ethereum e inviare transazioni.', + FOOTER_1b: 'Creato da', + FOOTER_2: 'Donazioni molto apprezzate:', + FOOTER_3: 'Generazione portafogli lato client da parte di', + FOOTER_4: 'Dichiarazione di non responsabilità', + + /* Sidebar */ + sidebar_AccountInfo: 'Informazioni conto: ', + sidebar_AccountAddr: 'Indirizzo conto: ', + sidebar_AccountBal: 'Saldo conto: ', + sidebar_TokenBal: 'Saldo token: ', + sidebar_Equiv: 'Valori equivalenti: ', + sidebar_TransHistory: 'Storico transazioni: ', + sidebar_DGDBal: 'Informazioni crowdsale DGD:', + sidebar_donation: 'MyEtherWallet è un servizio gratuito e open-source votato alla tua privacy e sicurezza. Più donazioni riceviamo, più tempo dedichiamo a creare nuove funzionalità, considerare i tuoi commenti, e darti ciò che vuoi. Siamo solo due persone che provano a cambiare il mondo. Ci aiuti?', + sidebar_donate: 'Dona', + sidebar_thanks: 'GRAZIE!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Come vuoi accedere al tuo portafoglio?', + decrypt_Title: 'Seleziona il formato della tua chiave privata:', + decrypt_Select: 'Seleziona un portafoglio:', + + /* Add Wallet */ + ADD_Label_1: 'Cosa vuoi fare?', + ADD_Radio_1: 'Genera un nuovo portafoglio', + ADD_Radio_2: 'Seleziona il file del tuo portafoglio (Keystore / JSON)', + ADD_Radio_2_alt: 'Seleziona il file del tuo portafoglio: ', + ADD_Radio_2_short: 'SELEZIONA FILE PORTAFOGLIO...', + ADD_Radio_3: 'Incolla/Inserisci la tua chiave privata ', + ADD_Radio_4: 'Aggiungi un conto da osservare', + ADD_Label_2: 'Crea un nome:', + ADD_Label_3: 'Il portafoglio è crittografato. Inserire la password: ', + ADD_Label_4: 'Aggiungi un conto da osservare', + ADD_Warning_1: 'Puoi aggiungere qualunque conto da "osservare" nella scheda dei portafogli senza caricare una chiave privata. Ciò ** non ** significa che avrai accesso a quel portafoglio, né che potrai trasferire gli Ether lì contenuti.', + ADD_Label_5: 'Inserisci l\'indirizzo: ', + ADD_Label_6: 'Sblocca portafoglio: ', + ADD_Label_6_short: 'Sblocca', + ADD_Label_7: 'Aggiungi conto', + + /* Generate Wallets */ + GEN_desc: 'Se vuoi generare più portafogli, puoi farlo qui: ', + GEN_Label_1: 'Inserisci una password robusta (almeno 9 caratteri)', + GEN_Placeholder_1: 'NON dimenticarti di salvarla!', + GEN_SuccessMsg: 'Perfetto! Il tuo portafoglio è stato generato.', + GEN_Warning: '**Avrai bisogno del tuo file Keystore/JSON e della password o della chiave privata** per avere accesso a questo portafoglio in futuro. Ti preghiamo di salvarlo e copiarlo su un supporto esterno! Non c\'è alcun modo per recuperare un portafoglio se non lo salvi. Leggi la [pagina di aiuto](https://www.myetherwallet.com/#help) per le istruzioni.', + GEN_Label_2: 'Salva il tuo file Keystore/JSON o la chiave privata. Non dimenticare la password che hai inserito.', + GEN_Label_3: 'Salva il tuo indirizzo.', + GEN_Label_4: 'Stampa il tuo portafoglio cartaceo, o salva una versione QR code. (facoltativo)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Numero di portafogli da generare', + BULK_Label_2: 'Genera portafogli', + BULK_SuccessMsg: 'Perfetto! I tuoi portafogli sono stati generati.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Indirizzo destinatario: ', + SEND_amount: 'Importo da inviare: ', + SEND_amount_short: 'Importo', + SEND_custom: 'Altro', + SEND_gas: 'Gas', + SEND_generate: 'Genera transazione', + SEND_raw: 'Transazione grezza', + SEND_signed: 'Transazione firmata', + SEND_trans: 'Invia transazione', + SEND_TransferTotal: 'Invia l\'intero saldo', + SENDModal_Title: 'Attenzione! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Stai per inviare', + SENDModal_Content_2: 'all\'indirizzo', + SENDModal_Content_3: 'Sei sicuro di volerlo fare?', + SENDModal_Content_4: 'NOTA: Se ricevi un errore, molto probabilmente dovrai aggiungere ether al tuo conto per coprire il costo del gas necessario ad inviare i token. Il gas si paga in ether.', + SENDModal_No: 'No, tiratemi fuori da qui!', + SENDModal_Yes: 'Sì, sono sicuro! Esegui la transazione.', + + /* Tokens */ + TOKEN_Addr: 'Indirizzo: ', + TOKEN_Symbol: 'Simbolo del token: ', + TOKEN_Dec: 'Decimali: ', + + /* Send Transaction */ + TRANS_desc: 'Se invece volevi inviare dei token, utilizza la pagina "Invia token".', + TRANS_warning: 'Se usi le opzioni "Solo ETH" o "Solo ETC" invierai tramite un contratto. Certi servizi hanno difficoltà ad accettare queste transazioni. Leggi tutto.', + TRANS_standard: 'ETH (transazione standard)', + TRANS_eth: 'Solo ETH', + TRANS_etc: 'Solo ETC', + TRANS_advanced: '+Avanzate: aggiungi più gas o dei dati ', + TRANS_data: ' Dati: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Una transazione standard che utilizza 21000 gas costerà 0,000441 ETH. Utilizziamo un prezzo del gas leggermente al di sopra del minimo pari a 0,000000021 ETH per assicurarci che venga elaborata velocemente. Noi non prendiamo commissioni.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transazioni "Solo ETH" e "Solo ETC"', + TRANSModal_Content_0: 'Una nota sulle varie transazioni e sui vari servizi:', + TRANSModal_Content_1: '**ETH (transazione standard): ** Genera una transazione di default direttamente da un indirizzo ad un altro. La quantità di gas predefinita è 21000. È probabile che ogni ETH inviato con questo metodo sarà replicato sulla catena ETC.', + TRANSModal_Content_2: '**Solo ETH: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETH**.', + TRANSModal_Content_3: '**Solo ETC: ** Invia tramite [il contratto di protezione dalle repliche di Timon Rapp (come consigliato da VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) in modo da inviare solamente sulla catena **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Inviare solamente tramite la transazione standard. Se utilizzi i contratti "Solo XXX", dovrai metterti in contatto con il loro staff di supporto in modo che aggiornino manualmente il tuo saldo o ti rimborsino. [Puoi anche provare lo strumento "split" di Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Nessun problema noto. Usa qualunque opzione.', + TRANSModal_Yes: 'Bene, ho capito.', + TRANSModal_No: 'Oh no, sono ancora più confuso. Aiuto.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genera & invia una transazione offline', + OFFLINE_Desc: 'Per generare transazioni offline sono necessari tre passaggi. Svolgerai i passi 1 e 3 su un computer online, e il passo 2 su un computer offline/*air-gapped*. Questo per assicurarsi che le tue chiavi private non tocchino un dispositivo connesso a Internet.', + OFFLLINE_Step1_Title: 'Passo 1: generazione delle informazioni (computer online)', + OFFLINE_Step1_Button: 'Genera informazioni', + OFFLINE_Step1_Label_1: 'Indirizzo mittente: ', + OFFLINE_Step1_Label_2: 'Nota: Questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Il *nonce* è generato dal conto di origine. Se stessi usando un computer *air-gapped*, sarebbe l\'indirizzo del conto offline.', + OFFLINE_Step2_Title: 'Passo 2: generazione della transazione (computer offline)', + OFFLINE_Step2_Label_1: 'Indirizzo destinatario: ', + OFFLINE_Step2_Label_2: 'Valore / importo da inviare', + OFFLINE_Step2_Label_3: 'Prezzo gas ', + OFFLINE_Step2_Label_3b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_4: 'Limite gas ', + OFFLINE_Step2_Label_4b: '21000 è il limite gas predefinito. Quando invii a contratti o aggiungi dati potresti aver bisogno di un valore maggiore. Eventuale gas non utilizzato ti sarà restituito.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Questo valore è stato mostrato nel passo 1 sul computer online.', + OFFLINE_Step2_Label_6: 'Dati', + OFFLINE_Step2_Label_6b: 'Facoltativo. I dati sono usati spesso nelle transazioni inviate ai contratti.', + OFFLINE_Step2_Label_7: 'Inserisci / seleziona la tua chiave privata o JSON.', + OFFLINE_Step3_Title: 'Passo 3: Invia / pubblica la transazione (computer online)', + OFFLINE_Step3_Label_1: 'Incolla la transazione firmata dal passo 2 qui e premi il pulsante "INVIA TRANSAZIONE".', + + /* DAO */ + DAO_bal1: 'al blocco 1.919.999', + DAO_bal2: 'adesso', + DAO_TitleETH: 'Preleva DAO e ricevi ETH', + DAO_TitleETC: 'Preleva DAO e ricevi ETC', + DAO_ETC_Label_1: 'A che indirizzo vuoi che vengano inviati i tuoi ETC?', + DAO_ETC_Label_2: 'Il gruppo "White Hat" ha lavorato senza sosta per farti riavere i tuoi ETC. Puoi dire "grazie" donando una percentuale della somma che prelevi, se lo desideri. ', + DAO_Desc: 'Usa questa scheda per prelevare i tuoi token DAO e ottenere ETH **& ETC**. Se invece vuoi inviare token DAO, utilizza la scheda "Invia token".', + DAO_Inst: 'Sì. Devi solo premere questo grosso pulsante rosso. È davvero così semplice.', + DAO_Warning: 'Se ricevi l\'errore "Saldo insufficiente per il gas", è perché devi avere una piccola quantità di ether nel tuo conto per coprire i costi del gas. Aggiungi 0,001 ETH a questo conto e riprova. ', + DAOModal_Title: 'Tanto per essere sicuri...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Stai per prelevare', + DAOModal_2: 'token DAO inviando a', + DAOModal_3: 'una somma di', // "in return for" + + /* Digix */ + DGD_Desc: 'Richiedi i tuoi token e le tue medaglie DigixDAO (DGD). Per poterli richiedere devi aver partecipato alla vendita dei token del 30 e 31 marzo 2016. Se invece desideri inviare DGD, utilizza la scheda "Invia token".', + DGD_Label_1: 'Stima commissione utilizzata:', + DGD_Label_2: 'Commissione massima fornita:', + DGD_Label_3: 'Prezzo gas:', + DGD_Generate: 'Genera richiesta', + DGD_Content: 'Stai per richiedere i tuoi token DGD.', + + /* Deploy Contracts */ + DEP_generate: 'Genera bytecode', + DEP_generated: 'Bytecode generato', + DEP_signtx: 'Firma transazione', + DEP_interface: 'Interfaccia generata', + + /* My Wallet */ + MYWAL_Nick: 'Nome portafoglio', + MYWAL_Address: 'Indirizzo portafoglio', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Modifica', + MYWAL_View: 'Mostra', + MYWAL_Remove: 'Rimuovi', + MYWAL_RemoveWal: 'Rimozione portafoglio:', + MYWAL_WatchOnly: 'I tuoi conti osservati', + MYWAL_Viewing: 'Dettagli portafoglio: ', + MYWAL_Hide: 'Nascondi informazioni portafoglio', + MYWAL_Edit_2: 'Modifica portafoglio: ', + MYWAL_Name: 'Nome portafoglio', + MYWAL_Content_1: 'Attenzione! Stai per rimuovere il tuo portafoglio: ', + MYWAL_Content_2: 'Assicurati di aver **salvato la chiave privata e/o il file Keystore e la password** prima di rimuoverlo.', + MYWAL_Content_3: 'Se vorrai utilizzare questo portafoglio con MyEtherWallet CX in futuro, dovrai ri-aggiungerlo manualmente tramite la chiave privata/JSON e password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. Potresti volerlo fare per [importare il tuo conto in Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Se vuoi controllare il tuo saldo, ti consigliamo di utilizzare uno strumento per esplorare la *blockchain* come [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Qui è possibile scaricare diverse versioni delle chiavi private e ristampare il portafoglio cartaceo. ', + VIEWWALLET_SuccessMsg: 'Perfetto! Questi sono i dettagli del tuo portafoglio.', + + /* CX */ + CX_error_1: 'Non c\'è nessun portafoglio. Fai clic su ["Aggiungi portafoglio"](/cx-wallet.html#add-wallet) per aggiungerne uno!', + CX_quicksend: 'Invio rapido', + + /* Error Messages */ + ERROR_1: 'Ti preghiamo di inserire una quantità valida.', + ERROR_2: 'La password deve essere di almeno 9 caratteri. Assicurati che sia robusta. ', + ERROR_3: 'Siamo spiacenti! Non riconosciamo questo tipo di file portafoglio. ', + ERROR_4: 'Questo non è un file portafoglio valido. ', + ERROR_5: 'Questa unità non esiste, ti preghiamo di usare una delle seguenti unità ', + ERROR_6: 'Indirizzo non valido. ', + ERROR_7: 'Password non valida. ', + ERROR_8: 'Numero non valido. ', + ERROR_9: 'Limite gas non valido. ', + ERROR_10: 'Valori dati non validi. ', + ERROR_11: 'Quantità di gas non valida. ', + ERROR_12: 'Nonce non valido. ', + ERROR_13: 'Transazione firmata non valida. ', + ERROR_14: 'Esiste già un portafoglio con questo nome. ', + ERROR_15: 'Portafoglio non trovato. ', + ERROR_16: 'Sembra che non esista ancora una proposta con questo ID o c\'è un errore nella lettura della proposta. ', + ERROR_17: 'C\'è già un portafoglio con questo indirizzo fra quelli salvati. Controlla la pagina dei tuoi portafogli. ', + ERROR_18: 'Devi avere almeno 0,001 ETH nel conto per coprire i costi del gas. Aggiungi un po\' di ether e riprova. ', + ERROR_19: 'Questa transazione consumerebbe tutto il gas. Ciò significa che hai già votato questa proposta o che il periodo di discussione è terminato.', + ERROR_20: 'Simbolo non valido', + SUCCESS_1: 'Indirizzo valido', + SUCCESS_2: 'Portafoglio decodificato correttamente', + SUCCESS_3: 'Transazione inviata. TX ID: ', + SUCCESS_4: 'Il portafoglio è stato aggiunto correttamente: ', + SUCCESS_5: 'Hai votato con successo. Grazie per essere un partecipante attivo in The DAO.', + SUCCESS_6: 'File selezionato: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Mittente non valido', + GETH_Nonce: 'Nonce troppo basso', + GETH_Cheap: 'Prezzo del gas troppo basso per essere accettato', + GETH_Balance: 'Saldo insufficiente', + GETH_NonExistentAccount: 'Il conto non esiste o il saldo è insufficiente', + GETH_InsufficientFunds: 'Fondi insufficienti per gas * prezzo + valore', + GETH_IntrinsicGas: 'Gas intrinseco troppo basso', + GETH_GasLimit: 'Eccede il limite gas per il blocco', + GETH_NegativeValue: 'Valore negativo', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Grazie ai nostri traduttori: ', + TranslatorName_1: '[ugilio](https://www.myetherwallet.com/?gaslimit=21000&to=0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa&value=1.0#send-transaction)', + TranslatorAddr_1: '0x07932bc1c68c8ff188f4225e892178ab6d8c4eaa', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Se hai creato un portafoglio -oppure- hai scaricato il repository prima del **31 Dicembre 2015**, controlla i tuoi portafogli e scarica una nuova versione del repository. Fai clic qui per i dettagli.', + HELP_Desc: 'Vedi che manca qualcosa? Hai un\'altra domanda? [Mettiti in contatto con noi](mailto:myetherwallet@gmail.com), e non solo risponderemo alla tua domanda, ma aggiorneremo anche questa pagina in modo che sia più utile ad altri in futuro!', + HELP_Remind_Title: 'Qualche promemoria', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, e alcune delle librerie Javascript che utilizziamo sono in continuo sviluppo.** Anche se abbiamo testato approfonditamente e persone di tutto il mondo hanno correttamente creato decine di migliaia di portafogli, c\'è sempre la remota possibilità che accada qualcosa di imprevisto che provochi la perdita dei tuoi ETH. Ti preghiamo di non investire più di quello che sei disposto a perdere, e di fare attenzione. Se dovesse capitare qualcosa, ci dispiace, ma **non siamo responsabili per gli ether perduti**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX non sono "portafogli web". Non stai creando un account né ci stai dando i tuoi ether da custodire. Tutti i dati non lasciano mai il tuo computer/il tuo browser. Quello che facciamo è renderti facile creare, salvare, e accedere alle tue informazioni e interagire con la *blockchain*.', + HELP_Remind_Desc_3: 'Se non salvi la tua chiave privata e la password, non c\'è modo di recuperare l\'accesso al tuo portafoglio o ai fondi che contiene. Salvali in molti luoghi fisici diversi e non solo sul tuo computer!', + + HELP_0_Title: '0) Sono nuovo. Cosa faccio?', + HELP_0_Desc_1: 'MyEtherWallet ti dà la possibilità di generare nuovi portafogli in modo da poter conservare i tuoi ether da solo, invece di usare una piattaforma di scambio. Questo processo avviene interamente sul tuo computer, non sui nostri server. Quindi, quando generi un nuovo portafoglio, **sei responsabile del suo salvataggio in maniera sicura**.', + HELP_0_Desc_2: 'Crea un nuovo portafoglio.', + HELP_0_Desc_3: 'Fai un backup del portafoglio.', + HELP_0_Desc_4: 'Verifica di avere accesso a questo nuovo portafoglio e di avere salvato correttamente tutte le informazioni necessarie.', + HELP_0_Desc_5: 'Trasferisci degli ether in questo nuovo portafoglio.', + + HELP_1_Title: '1) Come creo un nuovo portafoglio? ', + HELP_1_Desc_1: 'Vai alla pagina "Genera portafoglio".', + HELP_1_Desc_2: 'Vai alla pagina "Aggiungi portafoglio" e seleziona "Genera un nuovo portafoglio"', + HELP_1_Desc_3: 'Inserisci una password robusta. Se pensi di poterla dimenticare, salvala in un posto sicuro. Avrai bisogno di questa password per inviare transazioni.', + HELP_1_Desc_4: 'Fai clic su "GENERA PORTAFOGLIO".', + HELP_1_Desc_5: 'Il tuo portafoglio è stato appena generato.', + + HELP_2a_Title: '2a) Come salvo o faccio il backup del mio portafoglio?', + HELP_2a_Desc_1: 'Dovresti sempre fare dei backup esterni in diversi luoghi fisici - come su una penna USB e/o su un pezzo di carta.', + HELP_2a_Desc_2: 'Salva l\'indirizzo. Puoi tenerlo per te o condividerlo. In questo modo gli altri possono inviarti degli ether.', + HELP_2a_Desc_3: 'Salva delle versioni della chiave privata. Non condividerla con nessuno. La tua chiave privata è necessaria quando vuoi accedere ai tuoi ether per trasferirli! Ci sono 3 tipi di chiave privata:', + HELP_2a_Desc_4: 'Metti il tuo indirizzo, le versioni della chiave privata, e la versione PDF del tuo portafoglio cartaceo in una cartella. Salvala sul tuo computer e su una penna USB.', + HELP_2a_Desc_5: 'Stampa il portafoglio se hai una stampante. In alternativa, trascrivi la tua chiave privata e l\'indirizzo su un pezzo di carta. Conserva questo foglio in un posto sicuro, separato dal tuo computer e dalla penna USB.', + HELP_2a_Desc_6: 'Ricorda, devi evitare la perdita delle chiavi e della password in caso di smarrimento o malfunzionamento del tuo hard disk, penna USB, o pezzo di carta. Devi anche considerare la perdita fisica o il danneggiamento di una intera area (pensa a incendi o inondazioni).', + + HELP_2b_Title: '2b) Come implemento un portafoglio offline in maniera sicura con MyEtherWallet?', + HELP_2b_Desc_1: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Fai clic su "download zip" in alto a destra.', + HELP_2b_Desc_3: 'Sposta il file zip su un computer *air-gapped*.', + HELP_2b_Desc_4: 'Decomprimilo e fai doppio clic su `index.html`.', + HELP_2b_Desc_5: 'Genera un portafoglio con una password robusta.', + HELP_2b_Desc_6: 'Salva l\'indirizzo. Salva delle versioni della chiave privata. Salva la password se potresti non ricordarla per sempre.', + HELP_2b_Desc_7: 'Conserva questi fogli / penne USB in diversi luoghi fisici separati.', + HELP_2b_Desc_8: 'Vai alla pagina "Informazioni portafoglio" e digita la tua chiave privata / password per assicurarti che siano corrette e per accedere al portafoglio. Controlla che l\'indirizzo che hai trascritto sia lo stesso.', + + HELP_3_Title: '3) Come verifico di aver accesso al mio nuovo portafoglio?', + HELP_3_Desc_1: '**Prima di inviare degli ether al tuo nuovo portafoglio**, dovresti assicurarti di poterci accedere.', + HELP_3_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_3_Desc_3: 'Vai alla pagina "Informazioni portafoglio" su MyEtherWallet.com.', + HELP_3_Desc_4: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_3_Desc_5: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_3_Desc_6: 'Fai clic sul pulsante "Sblocca".', + HELP_3_Desc_7: 'Dovrebbero comparire le informazioni sul tuo portafoglio. Individua l\'indirizzo del tuo conto, accanto all\'icona rotonda e colorata. Questa icona rappresenta visivamente il tuo indirizzo. Assicurati che l\'indirizzo sia quello che hai salvato nel tuo file di testo e che sia presente sul tuo portafoglio cartaceo.', + HELP_3_Desc_8: 'Se stai pensando di conservare una grande quantità di ether, ti consigliamo di provare a inviare una piccola somma di ether dal nuovo portafoglio prima di depositarci un grosso importo. Invia 0,001 ether al nuovo portafoglio, accedici, e invia quegli 0,001 ether a un altro indirizzo, e assicurati che tutto funzioni agevolmente.', + + HELP_4_Title: '4) Come invio degli ether da un portafoglio a un altro?', + HELP_4_Desc_1: 'Se stai pensando di spostare una grande quantità di ether, dovresti prima provare ad inviare una piccola somma al tuo portafoglio per assicurarti che tutto vada come previsto.', + HELP_4_Desc_2: 'Vai alla pagina "Invia ether".', + HELP_4_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_4_Desc_4: 'Se il portafoglio è crittografato, comparirà automaticamente una casella di testo. Inserisci la password.', + HELP_4_Desc_5: 'Fai clic sul pulsante "Sblocca".', + HELP_4_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4_Desc_8: 'Nota: A partire dalla fine di giugno 2016 dovrai assicurarti di separare i tuoi ETH/ETC prima di inviare ether come avresti fatto normalmente. Vedi la domanda n. 6 qui sotto per ulteriori informazioni.', + HELP_4_Desc_9: 'Fai clic su "Genera transazione".', + HELP_4_Desc_10: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_4_Desc_11: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_4_Desc_12: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_4_Desc_13: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*. ', + + HELP_4CX_Title: '4) Come invio degli ether utilizzando MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Innanzitutto devi aggiungere un portafoglio. Dopo averlo fatto hai 2 opzioni: la funzionalità "Invio rapido" dall\'icona dell\'estensione di Chrome o la pagina "Invia ether".', + HELP_4CX_Desc_2: 'Invio rapido:', + HELP_4CX_Desc_3: 'Fai clic sull\'icona dell\'estensione di Chrome.', + HELP_4CX_Desc_4: 'Fai clic sul pulsante "Invio rapido".', + HELP_4CX_Desc_5: 'Seleziona il portafoglio dal quale desideri inviare.', + HELP_4CX_Desc_6: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_4CX_Desc_7: 'Inserisci l\'importo che vuoi inviare. Puoi anche fare clic sul link "Invia l\'intero saldo" se desideri trasferire l\'intero saldo.', + HELP_4CX_Desc_8: 'Fai clic su "Invia transazione". ', + HELP_4CX_Desc_9: 'Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti.', + HELP_4CX_Desc_10: 'Inserisci la password del portafoglio.', + HELP_4CX_Desc_11: 'Fai clic su "Invia transazione."', + HELP_4CX_Desc_12: 'Tramite la pagina "Invia ether": ', + + HELP_5_Title: '5) Come faccio ad eseguire MyEtherWallet.com offline/in locale? ', + HELP_5_Desc_1: 'Puoi eseguire MyEtherWallet.com sul tuo computer invece che dai server di GitHub. Puoi generare un portafoglio completamente offline e inviare transazioni dalla pagina "Invia Offline".', + HELP_5_Desc_2: 'Vai sul nostro github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Fai clic su "download zip" in alto a destra.', + HELP_5_Desc_4: 'Sposta il file zip su un computer *air-gapped*.', + HELP_5_Desc_5: 'Decomprimi il file.', + HELP_5_Desc_6: 'Fai doppio clic su `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com è ora in esecuzione completamente sul tuo computer.', + HELP_5_Desc_8: 'In caso tu non abbia molta confidenza, ti serve l\'intera cartella per poter eseguire il sito web, non solo `index.html`. Non toccare né spostare nulla del contenuto della cartella. Se stai conservando un backup del repository MyEtherWallet per il futuro, ti consigliamo di conservare soltanto il file ZIP in modo da assicurarti che i contenuti della cartella rimangano intatti.', + HELP_5_Desc_9: 'Dal momento che stiamo costantemente aggiornando MyEtherWallet.com, ti consigliamo di aggiornare periodicamente la tua versione locale del repository.', + + HELP_5CX_Title: '5) Come posso installare questa estensione dal repository invece che dal Chrome Store? ', + HELP_5CX_Desc_1: 'Vai sul nostro github e individua la release più recente dell\'estensione di Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scorri alla fine della pagina e fai clic destro sull\'ultima release. Fai clic su "Salva link con nome".', + HELP_5CX_Desc_3: 'In Google Chrome, fai clic su Impostazioni (dal menu in alto a destra).', + HELP_5CX_Desc_4: 'Fai clic su "Estensioni" sulla sinistra.', + HELP_5CX_Desc_5: 'Seleziona la casella "Modalità sviluppatore" all\'inizio della pagina.', + HELP_5CX_Desc_6: 'Fai clic sul pulsante "Carica estensione non pacchettizzata...".', + HELP_5CX_Desc_7: 'Vai alla cartella che hai precedentemente scaricato e decompresso. Fai clic su "Seleziona".', + HELP_5CX_Desc_8: 'L\'estensione dovrebbe ora comparire fra le tue estensioni e nella barra delle estensioni di Chrome.', + + HELP_6_Title: '6) Come faccio a separare i miei ETH / ETC? ', + HELP_6_Desc_1: 'Come conseguenza della *hard fork*, a qualunque quantità di ETH precedentemente presente nel tuo portafoglio corrisponde ora una uguale quantità di ETC. Se invii degli ETH tramite una transazione standard, verranno anche inviati degli ETC. Per evitarlo, devi "separare" il tuo portafoglio originale in due portafogli. Dopodiché, ti devi assicurare che solamente gli ETH finiscano nel tuo portafoglio ETH e solamente gli ETC finiscano nel tuo portafoglio ETC.', + HELP_6_Desc_2: 'Puoi anche inviare tutti i tuoi ETH & ETC utilizzando una transazione standard a Kraken o Poloniex. Queste piattaforme di scambio separeranno automaticamente i tuoi ETH ed ETC. Potrai quindi spostare questi fondi in nuovi portafogli, o vendere i tuoi ETC o ETH.', + HELP_6_Desc_3: '[Qui puoi trovare ulteriori informazioni su portafogli e *reply attack*](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genera un nuovo portafoglio ETH *post-fork* pulito per te (che sarà la destinazione finale degli ETH e nient\'altro).', + HELP_6_Desc_5: 'Genera un nuovo portafoglio ETC *post-fork* pulito per te (che sarà la destinazione finale degli ETC e nient\'altro).', + HELP_6_Desc_6: 'Fai un backup di questi nuovi portafogli e verifica di poterci accedere. Vedi domande n. 2a e n. 3 qui sopra.', + HELP_6_Desc_7: 'Invia 0,1234 ETH al nuovo portafoglio "ETH" utilizzando l\'opzione "Solo ETH" nella pagina "Invia ether".', + HELP_6_Desc_8: 'Invia 0,5678 ETC al nuovo portafoglio "ETC" utilizzando l\'opzione "Solo ETC" nella pagina "Invia ether".', + HELP_6_Desc_9: 'Controlla che si siano spostati solamente gli 0,1234 ETH su etherscan.io. Controlla che si siano spostati solamente gli 0,5678 ETC su gastracker.io.', + HELP_6_Desc_10: 'Esegui una transazione di 0,0001 ETH dal tuo nuovo portafoglio ETH. Controlla etherscan.io. Assicurati che gli 0,0001 ETH siano stati inviati.', + HELP_6_Desc_11: 'Genera (ma non inviare) una transazione di 0,0002 ETC dal tuo nuovo portafoglio ETC. Copia il campo "Transazione firmata". ', + HELP_6_Desc_12: 'Vai su [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) e incolla la transazione ETC nella scheda "Invia offline" di classicetherwallet.com, alla fine della pagina, e invia. Controlla gastracker.io. Assicurati che gli 0,0002 ETC siano stati inviati.', + HELP_6_Desc_13: 'Se tutto è stato ricevuto ed inviato correttamente allora sei a posto.', + HELP_6_Desc_14: 'Invia tutto il saldo ETH rimanente utilizzando l\'opzione "Solo ETH" e ripeti per il saldo ETC utilizzando "Solo ETC".', + HELP_6_Desc_15: 'Adesso puoi usare le transazioni standard per questi nuovi portafogli senza rischio di *replay attack*. ', + + HELP_7_Title: '7) Come invio token e come aggiungo token personalizzati?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) è un ottimo modo di esplorare i token e trovarne i decimali.', + HELP_7_Desc_1: 'Vai alla pagina "Invia token".', + HELP_7_Desc_2: 'Sblocca il portafoglio.', + HELP_7_Desc_3: 'Inserisci l\'indirizzo al quale vuoi inviare nel campo "Indirizzo destinatario:".', + HELP_7_Desc_4: 'Inserisci l\'importo che vuoi inviare.', + HELP_7_Desc_5: 'Seleziona il token che vuoi inviare.', + HELP_7_Desc_6: 'Se non vedi il token nell\'elenco:', + HELP_7_Desc_7: 'Fai clic su "Altro".', + HELP_7_Desc_8: 'Inserisci l\'indirizzo, il nome, e i decimali del token. Questi valori sono forniti dagli sviluppatori del token e sono necessari anche quando aggiungi il token in Mist per osservarlo.', + HELP_7_Desc_9: 'Fai clic su "Salva".', + HELP_7_Desc_10: 'Ora puoi inviare il token e anche vederne il saldo nella barra laterale.', + HELP_7_Desc_11: 'Fai clic su "Genera transazione".', + HELP_7_Desc_12: 'Compariranno un paio di ulteriori campi. È perché il tuo browser ha generato la transazione.', + HELP_7_Desc_13: 'Fai clic sul pulsante azzurro "Invia transazione" in basso.', + HELP_7_Desc_14: 'Comparirà un pop-up. Verifica che l\'importo e l\'indirizzo a cui stai inviando siano corretti. Quindi fai clic sul pulsante "Sì, sono sicuro! Esegui la transazione.".', + HELP_7_Desc_15: 'La transazione verrà inviata. Verrà mostrato l\'ID della transazione (*TX ID*). Puoi fare clic sul TX ID per vederla sulla *blockchain*.', + + HELP_8_Title: '8) Che succede se il vostro sito va giù?', + HELP_8_Desc_1: 'MyEtherWallet non è un portafoglio web. Non hai un login e niente viene mai salvato nei nostri server. È semplicemente un\'interfaccia che ti consente di interagire con la *blockchain*.', + HELP_8_Desc_2: 'Se MyEtherWallet.com va giù, dovrai trovare un altro modo (come geth o Ethereum Wallet / Mist) per fare quello che facciamo noi. Ma non dovrai "tirare fuori" i tuoi ether da MyEtherWallet perché non si trovano in MyEtherWallet. Sono in qualunque portafoglio tu abbia generato tramite il nostro sito.', + HELP_8_Desc_3: 'Ora puoi importare direttamente e molto facilmente in geth / Ethereum Wallet / Mist la tua chiave privata non crittografata e i tuoi file in formato Geth/Mist (crittografati). Vedi la domanda n. 12 qui sotto.', + HELP_8_Desc_4: 'Inoltre, la probabilità che tiriamo giù MyEtherWallet è prossima allo zero. Non ci costa praticamente nulla mantenerlo dal momento che non stiamo memorizzando alcuna informazione. Se anche disattivassimo il dominio, è ancora, e sarà sempre, disponibile pubblicamente su [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Puoi scaricare lo ZIP da lì ed eseguirlo in locale. ', + + HELP_8CX_Title: '8) Che succede se MyEtherWallet CX sparisce?', + HELP_8CX_Desc_1: 'Innanzitutto, tutti i dati sono salvati sul tuo computer, non sui nostri server. So che può essere disorientante, ma quando utilizzi l\'estensione Chrome NON stai guardando qualcosa che è salvato da qualche parte sui nostri server - è tutto salvato sul tuo computer.', + HELP_8CX_Desc_2: 'Detto ciò, è **molto importante** che tu faccia un backup di tutte le informazioni relative a ogni nuovo portafoglio generato con MyEtherWallet CX. In questo modo se succede qualcosa a MyEtherWallet CX or al tuo computer avrai ancora tutte le informazioni necessarie ad accedere ai tuoi ether. Vedi la domanda n. 2a per come salvare i tuoi portafogli.', + HELP_8CX_Desc_3: 'Se per qualche ragione MyEtherWallet CX sparisce dal Chrome Store, puoi trovare i sorgenti su Github e caricare l\'estensione manualmente. Vedi la domanda n. 5 qui sopra.', + + HELP_9_Title: '9) La pagina "Invia ether" è offline?', + HELP_9_Desc_1: ' No, la pagina in cui si invia la transazione non è offline. Ha bisogno di Internet per poter ottenere il prezzo corrente del gas, il *nonce* del tuo conto, e per trasmettere la transazione (cioè per inviarla). Tuttavia, si limita ad inviare la transazione firmata. La tua chiave privata rimane al sicuro con te. Ora abbiamo inserito anche una pagina "Invia offline" così che ti possa assicurare che le tue chiavi private rimangano sempre su un computer offline/*air-gapped*.', + + HELP_10_Title: '10) Come creo una transazione offline?', + HELP_10_Desc_1: 'Vai alla pagina "Invia offline" con il tuo computer online.', + HELP_10_Desc_2: 'Inserisci l\'"Indirizzo mittente". Ti preghiamo di notare che questo è l\'indirizzo MITTENTE, non l\'indirizzo DESTINATARIO. Da questo indirizzo si genera il *nonce* e il prezzo del gas.', + HELP_10_Desc_3: 'Spostati sul tuo computer offline. Inserisci l\'"INDIRIZZO DESTINATARIO" e l\'"IMPORTO" che desideri inviare.', + HELP_10_Desc_4: 'Inserisci il "PREZZO GAS" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_5: 'Inserisci il "NONCE" così come visualizzato sul tuo computer online nel passo n. 1.', + HELP_10_Desc_6: 'Il "LIMITE GAS" ha un valore predefinito di 21000. Questo valore è sufficiente per una transazione standard. Se desideri inviare ad un contratto o se includi nella transazione dati aggiuntivi avrai bisogno di aumentare il limite gas. Eventuale gas in eccesso ti sarà restituito.', + HELP_10_Desc_7: 'Se lo desideri, inserisci dei dati. Se lo fai, dovrai aumentare il limite gas a un valore superiore al limite predefinito di 21000. Tutti i dati sono in formato HEX.', + HELP_10_Desc_8: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio.', + HELP_10_Desc_9: 'Premi il pulsante "GENERA TRANSAZIONE".', + HELP_10_Desc_10: 'I campi sotto il pulsante saranno riempiti con la transazione firmata. Copiala e ritorna al tuo computer online. ', + HELP_10_Desc_11: 'Sul tuo computer online, incolla la transazione firmata nel campo di testo nel passo n. 3 e fai clic su "Invia transazione". In questo modo la transazione verrà trasmessa.', + + HELP_11_Title: '11) Come faccio a inviare a un contratto?', + HELP_11_Desc_1: 'Inviare a un contratto richiede spesso l\'aggiunta di dati o di ulteriore gas o di entrambi', + HELP_11_Desc_2: 'Vai alla pagina "Invia ether". ', + HELP_11_Desc_3: 'Seleziona il file del tuo portafoglio -oppure- la tua chiave privata e sblocca il portafoglio. ', + HELP_11_Desc_4: 'Inserisci un "Indirizzo destinatario" e un "Importo da inviare"', + HELP_11_Desc_5: 'Fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Verranno mostrati due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_12_Title: '12) Come faccio a importare un portafoglio creato con MyEtherWallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Con un file JSON Geth/Mist generato da MyEtherWallet v2+....', + HELP_12_Desc_2: 'Vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_3: 'Sblocca il portafoglio usando la tua chiave privata **crittografata** o il file JSON. ', + HELP_12_Desc_4: 'Vai alla pagina "I miei portafogli".', + HELP_12_Desc_5: 'Seleziona il portafoglio che vuoi importare in Mist, fai clic sull\'icona "Mostra", inserisci la password, e accedi al portafoglio. ', + HELP_12_Desc_6: 'Individua la sezione "File Keystore/JSON (Consigliato · Crittografato · Formato Mist/Geth)". Premi il pulsante "Download" al di sotto. Ora hai il file keystore.', + HELP_12_Desc_7: 'Apri l\'applicazione Ethereum Wallet. ', + HELP_12_Desc_8: 'Nella barra dei menu, vai su "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Si aprirà la tua cartella keystore. Copia il file che hai appena scaricato (`UTC--2016-04-14........`) dentro questa cartella.', + HELP_12_Desc_10: 'Il tuo conto dovrebbe comparire immediatamente sotto "Accounts."', + HELP_12_Desc_11: 'Con una chiave privata non crittografata...', + HELP_12_Desc_12: 'Se non hai già la chiave private non crittografata, vai alla pagina "Informazioni portafoglio".', + HELP_12_Desc_13: 'Seleziona il file del tuo portafoglio -oppure- inserisci/incolla la tua chiave privata per sbloccare il portafoglio.', + HELP_12_Desc_14: 'Copia la tua chiave privata (non crittografata).', + HELP_12_Desc_15: 'Se sei su un Mac:', + HELP_12_Desc_15b: 'Se sei su un PC:', + HELP_12_Desc_16: 'Apri TextEdit e incolla la chiave privata.', + HELP_12_Desc_17: 'Vai sulla barra dei menu e fai clic su "Formato" -> "Converti in formato Solo testo".', + HELP_12_Desc_18: 'Salva questo file sulla tua `Scrivania` come `niente_di_speciale_cancellami.txt`. Assicurati che siano selezionati "UTF-8" e "Se non è indicata nessuna estensione, usa .”txt”" nella finestra di salvataggio.', + HELP_12_Desc_19: 'Apri il terminale ed esegui il seguente comando: `geth account import ~/Desktop/niente_di_speciale_cancellami.txt`', + HELP_12_Desc_20: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla. ', + HELP_12_Desc_21: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_22: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts".', + HELP_12_Desc_23: 'Apri Blocco note e incolla la chiave privata', + HELP_12_Desc_24: 'Salva il file come `niente_di_speciale_cancellami.txt` in `C:\\`', + HELP_12_Desc_25: 'Esegui il comando `geth account import C:\\niente_di_speciale_cancellami.txt`', + HELP_12_Desc_26: 'Ti verrà chiesto di creare una nuova password. È la password che userai in geth / Ethereum Wallet / Mist ogni volta che invierai una transazione, quindi non dimenticarla.', + HELP_12_Desc_27: 'A importazione conclusa positivamente, cancella `niente_di_speciale_cancellami.txt`', + HELP_12_Desc_28: 'Alla prossima apertura dell\'applicazione Ethereum Wallet, il tuo conto sarà mostrato sotto "Accounts". ', + + HELP_13_Title: '13) Cosa significa "Limite gas troppo basso"?', + HELP_13_Desc_1: 'Molto probabilmente significa che stai tentando di inviare ether a un contratto. Inviare a un contratto richiede un po\' più di dati e quindi un po\' più di gas. Sulla pagina "Invia ether", fai clic sul pulsante "+Avanzate: aggiungi più gas o dei dati" sotto al campo dell\'importo. Compariranno due ulteriori campi che puoi utilizzare per aumentare il gas sopra al valore predefinito di 21000, o per aggiungere dati alla transazione.', + + HELP_14_Title: '14) Certi siti inizializzano il generatore di numeri casuali per la generazione della chiave privata tramite i movimenti del mouse. MyEtherWallet.com non lo fa. La generazione di numeri casuali di MyEtherWallet è sicura?', + HELP_14_Desc_1: 'Sebbene usare i movimenti del mouse sia ingegnoso, e comprendiamo perché piaccia, la realtà è che window.crypto assicura maggiore entropia rispetto ai tuoi movimenti del mouse. Non che i movimenti del mouse siano insicuri, è solo che noi (e un sacco di altri critto-esperimenti) crediamo in window.crypto. Oltretutto, MyEtherWallet.com può essere utilizzato su dispositivi touch. Qui c\'è una [conversazione fra un utente di reddit arrabbiato e Vitalik Buterin su movimenti del mouse contro window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) e qui c\'è [la specifica del w3 di window.crypto](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Perché il conto che ho appena creato non risulta nello strumento per esplorare la *blockchain*? (es: etherchain, etherscan)', + HELP_15_Desc_1: 'I conti vengono mostrati in quegli strumenti solamente dopo che c\'è stata un\'attività sul conto in questione—ad esempio, dopo che ci hai trasferito degli ether.', + + HELP_16_Title: '16) Come faccio a controllare il saldo del mio conto? ', + HELP_16_Desc_1: 'Puoi usare uno strumento per l\'esplorazione della *blockchain* come [etherscan.io](http://etherscan.io/). Incolla il tuo indirizzo nella barra di ricerca e vedrai il tuo indirizzo e lo storico delle transazioni. Ad esempio, questo è come si presenta il nostro [conto donazioni](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) su etherscan.io', + + HELP_17_Title: '17) Perché non viene mostrato il saldo quando sblocco il mio portafoglio? ', + HELP_17_Desc_1: ' Probabilmente perché sei dietro a un firewall. Le API che utilizziamo per ottenere il saldo e convertirlo sono spesso bloccate dai firewall per qualche ragione. Sarai ancora in grado di inviare transazioni, dovrai solo usare un metodo diverso per vedere il tuo saldo, come etherscan.io', + + HELP_18_Title: '18) Dov\'è il mio file portafoglio di geth?', + + HELP_19_Title: '19) Dov\'è il mio file portafoglio di Mist? ', + HELP_19_Desc_1: 'I file di Mist si trovano di solito nelle posizioni qui sopra, ma è molto più facile aprire Mist, selezionare "Accounts" nella barra dei menu, selezionare "Backup", e selezionare "Accounts". Si aprirà la cartella in cui sono memorizzati i tuoi file.', + + HELP_20_Title: '20) Dov\'è il mio file portafoglio della prevendita?', + HELP_20_Desc_1: 'Dove l\'hai salvato. ;) Ti è anche stato spedito in mail, quindi controllala. Cerca un file chiamato `"ethereum_wallet_backup.json"` e selezionalo. Questo portafoglio sarà crittografato con la password che hai creato durante l\'acquisto della prevendita.', + + HELP_21_Title: '21) Non basta inserire chiavi private casuali, cercare un saldo, e poi inviarselo al proprio indirizzo? ', + HELP_21_Desc_1: 'Versione corta: sì, ma trovare un conto con un saldo richiederebbe più tempo dell\'età dell\'universo... quindi no.', + HELP_21_Desc_2: 'Versione lunga in termini semplici: Ethereum si basa sulla [Crittografia a chiave pubblica](https://it.wikipedia.org/wiki/Crittografia_a_chiave_pubblica), nello specifico [Crittografia a curva ellittica](https://eprint.iacr.org/2013/734.pdf) (ECC) che è ampiamente utilizzata, non solo in Ethereum. La maggior parte dei server sono protetti tramite ECC. Anche Bitcoin la usa, oltre a SSH e TLS e a un sacco di altra roba. Le chiavi di Ethereum nello specifico sono di 256 bit, che sono più robuste di 128 bit e 192 bit, che sono anch\'esse ampiamente utilizzate e sono tuttora considerate sicure dagli esperti.', + HELP_21_Desc_3: 'In tutto ciò tu hai una chiave privata e una chiave pubblica. Dalla chiave privata si può derivare la chiave pubblica, ma dalla chiave pubblica non si può risalire alla chiave privata. Il fatto che Internet e i segreti del mondo usino questa crittografia significa che se ci fosse un modo per ottenere una chiave privata da una chiave pubblica, i tuoi ether persi sarebbero l\'ultimo dei problemi.', + HELP_21_Desc_4: 'Ora, detto ciò, SÌ se qualcun altro ha la tua chiave privata allora può effettivamente inviare ether dal tuo conto. Proprio come se qualcuno ha la password della tua mail può leggere e spedire la tua mail, o se ha la password del tuo conto bancario potrebbe fare dei trasferimenti. Potresti scaricare la versione Keystore della tua chiave privata che è la chiave privata crittografata con una password. È come avere una password che è a sua volta protetta da un\'altra password.', + HELP_21_Desc_5: 'E SÌ, in teoria potresti semplicemente digitare stringhe di 64 caratteri esadecimali fino a trovarne una che corrisponda. Infatti, persone intelligenti potrebbero scrivere un programma per controllare molto rapidamente chiavi private casuali. Questo procedimento è conosciuto come *"attacco a forza bruta"* o *"mining"* delle chiavi private. Ci hanno pensato molto e a lungo. Con qualche server di altissimo livello potrebbero essere in grado di controllare più di 1 milione di chiavi al secondo. Però nemmeno controllarne così tante al secondo porterebbe all\'accesso in una maniera tale da rendere il costo dell\'utilizzo di quei server vagamente vicino all\'essere proficuo - è più probabile che tu, e i tuoi pronipoti, moriate prima di trovare una corrispondenza.', + HELP_21_Desc_6: 'Se sai qualcosa di Bitcoin, [questo ti darà un\'idea:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *"Per illustrare quanto ciò sia improbabile: supponi che ogni satoshi di ogni bitcoin che sarà mai generato sia inviato a una sua chiave privata unica. La probabilità che fra queste chiavi ce ne possano essere due che corrispondano allo stesso indirizzo è circa di uno in 100 trilioni"*.', + HELP_21_Desc_7: '[Se preferisci qualcosa di un po\' più tecnico:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *"Questi numeri non hanno niente a che fare con la tecnologia dei dispositivi; sono i massimi che la termodinamica consente. E implicano fortemente che gli attacchi a forza bruta contro le chiavi a 256 bit saranno impraticabili almeno fino a quando i computer non saranno costruiti con qualcosa di diverso dalla materia e non occuperanno qualcosa di diverso dallo spazio."*', + HELP_21_Desc_8: 'Certo, tutto ciò assume che le chiavi siano generate in una maniera veramente casuale e con sufficiente entropia. Le chiavi generate qui soddisfano questi criteri, come anche Jaxx e Mist/geth. I portafogli Ethereum sono tutti piuttosto buoni. Le chiavi generate dai *brainwallet* non lo sono, dal momento che il cervello di una persona non è capace di creare un seme veramente casuale. Ci sono stati un numero di altri problemi relativi alla mancanza di entropia o a semi non generati in maniera veramente casuale nel mondo di Bitcoin, ma quella è un\'altra questione di cui non parleremo oggi.', + + HELP_SecCX_Title: 'Sicurezza - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Dov\'è che questa estensione salva le mie informazioni?', + HELP_SecCX_Desc_2: 'Le informazioni che memorizzi in questa estensione di Chrome sono salvate tramite [chrome.storage](http://chrome.storage/). - è lo stesso posto in cui vengono salvate le tue password quando le salvi in Chrome.', + HELP_SecCX_Desc_3: 'Che informazioni sono salvate? ', + HELP_SecCX_Desc_4: 'L\'indirizzo, nome, e la chiave privata sono memorizzati in chrome.storage. La chiave privata è crittografata utilizzando la password che hai impostato quando hai aggiunto il portafoglio. Il nome e l\'indirizzo del portafoglio non sono crittografati.', + HELP_SecCX_Desc_5: 'Perché il nome e l\'indirizzo del portafoglio non sono crittografati? ', + HELP_SecCX_Desc_6: 'Se crittografassimo questi elementi dovresti inserire una password ogni volta in cui volessi vedere il saldo del tuo conto o i nomi dei portafogli. Se ciò ti preoccupa, ti consigliamo di usare MyEtherWallet.com invece di questa estensione di Chrome.', + + HELP_Sec_Title: 'Sicurezza', + HELP_Sec_Desc_1: 'Se una delle prime domande che ti poni è "Perché dovrei fidarmi di questa gente?", è una cosa buona. Quanto segue dovrebbe aiutarti a calmare i tuoi timori. ', + HELP_Sec_Desc_2: 'Siamo attivi da agosto 2015. Se cerchi ["myetherwallet" su reddit](https://www.reddit.com/search?q=myetherwallet), puoi vedere che molte persone ci utilizzano con grande successo.', + HELP_Sec_Desc_3: 'Non prenderemo i tuoi soldi né ruberemo le tue chiavi private. Non c\'è codice malevolo su questo sito. Infatti le pagine "Genera portafoglio" sono completamente lato client. Ciò significa che tutto il codice è eseguito sul ** tuo computer** e non viene mai salvato e trasmesso da nessuna parte.', + HELP_Sec_Desc_4: 'Controlla l\'URL -- Questo sito viene servito attraverso GitHub e puoi vederne il codice sorgente qui: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) sui domini: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) e [https://www.myetherwallet.com](https://www.myetherwallet.com). Puoi verificare che sia ospitato su GitHub utilizzando [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - gli IP degli ultimi due record A sono posseduti da GitHub per il loro hosting dei domini personalizzati.', + HELP_Sec_Desc_5: 'Per la generazione dei portafogli, puoi scaricare il [codice sorgente](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Vedi la domanda 5 qui sopra.', + HELP_Sec_Desc_6: 'Fai una prova e controlla che attività di rete sono in corso. Il modo più facile e fare clic destro sulla pagina e scegliere "Analizza elemento". Vai sulla scheda "Rete". Genera un portafoglio di prova. Vedrai che non c\'è attività di rete. Potresti vedere accadere qualcosa che assomiglia a data:image/gif e data:image/png. Sono i QR code che vengono generati...sul tuo computer...dal tuo computer. Non sono stati trasferiti byte.', + HELP_Sec_Desc_7: 'Ora, per essere sicuro, vai alla scheda "Archiviazione". Qui puoi vedere tutti i diversi elementi che costituiscono un sito web. Se controlli Archiviazione locale, Cookie, e Archiviazione cache, vedrai che non c\'è nulla che viene memorizzato. Non viene salvato niente. Se ricarichi la pagina ricominci da capo.', + HELP_Sec_Desc_8: 'Se non ti senti a tuo agio a usare questo strumento, allora certo, non usarlo. Abbiamo creato questo strumento per aiutare la gente a generare portafogli ed eseguire transazioni senza bisogno di usare la riga di comando o far girare un nodo completo. Di nuovo, sentiti libero di contattarci se hai dubbi e ti risponderemo appena possibile. Grazie! ', + + HELP_FAQ_Title: 'Risposte più utili alle domande frequenti (in Inglese)', + HELP_Contact_Title: 'Modi per contattarci (in Inglese)' +}; + +module.exports = it; },{}],49:[function(require,module,exports){ -// Korean -'use strict'; -var ko = function() {} -ko.code = 'ko'; -ko.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ko; +// Japanese +'use strict'; +var ja = function() {} +ja.code = 'ja'; +ja.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'あなたのウォレット', + NAV_AddWallet: 'ウォレットを追加', + NAV_GenerateWallet: 'ウォレットを作成', + NAV_BulkGenerate: 'バルク作成', + NAV_SendEther: 'Ether送出', + NAV_SendTokens: 'トークン送出', + NAV_Offline: 'オフライン送出', + NAV_WithdrawDAO: 'DAO払い戻し', + DAO_TitleLong: 'DAOトークンをETHで払い出し', + NAV_ClaimDGD: 'DGD請求', + DGD_TitleLong: 'DGDトークンを請求', + NAV_DeployContract: 'コントラクトをデプロイ', + NAV_MyWallets: '自分のウォレット', + NAV_ViewWallet: 'ウォレット情報を見る', + NAV_Help: 'ヘルプ', + NAV_Contact: '連絡する', + + /* General */ + x_Address: '自分のアドレス', + x_AddessDesc: 'これはあなたのアカウント番号とパブリックキーになります。ETHを送信するために必要な情報です。アイコンはあなたのアドレスを識別するものです。', + x_CSV: 'CSV ファイル (未暗号化)', + x_Cancel: '取り消す', + x_Download: 'ダウンロード', + x_Json: 'JSON ファイル (未暗号化)', + x_JsonDesc: 'これはパスワードが不要な暗号化されていないJSONフォーマットのプライベートキーです。この暗号化されていないJSONフォーマットのプライベートキーを使えば、誰でもパスワードを使わずにあなたのウォレットとEtherにアクセスできます。', + x_Keystore: 'Keystore/JSON ファイル (推奨 · 暗号化 · Mist/Geth フォーマット)', + x_Keystore2: 'Keystore / JSON ファイル', + x_KeystoreDesc: 'この Keystore / JSON ファイルは、後で容易にインポートするため、Mist & Gethで使われているフォーマットと一致させる必要があります。ダウンロードしてバックアップを取ることをおすすめします。', + x_Password: 'パスワード', + x_Print: 'ペーパーウォレットを印刷', + x_PrintDesc: 'ProTip: プリンターが接続されていなくても、「印刷」をクリックしてPDFで保存できます。', + x_PrintShort: '印刷', + x_PrivKey: 'プライベートキー(未暗号化)', + x_PrivKey2: 'プライベートキー', + x_PrivKeyDesc: 'これはパスワードが不要な暗号化されていないプライベートキーです。この暗号化されていないプライベートキーを使えば、誰でもパスワードなしであなたのウォレットにアクセスできます。従って、暗号化されたものの利用をおすすめします。', + x_Save: '保存する', + x_TXT: 'TXT ファイル (未暗号化)', + x_Wallet: 'ウォレット', + + /* Header */ + MEW_Warning_1: 'ウォレットを操作したり新しいウォレットを作成する前に、必ずURLを確認してください。詐欺サイトに御注意ください!', + CX_Warning_1: '必ずここに保管するすべてのウォレットの「外部バックアップ」を作成してください。このChrome Extensionでは、再導入などで、データが保存されずの消失することが頻繁に起こります。このエクステンションは容易な操作を提供するのみで、「バックアップ」は行いません。', + MEW_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット', + CX_Tagline: 'オープンソース JavaScript クライアントサイド Ether ウォレット Chrome Extension', + + /* Footer */ + FOOTER_1: 'イサリアムウォレットの作成とトランザクション実行のためのオープンソース、javascript、 クライアントサイドツール。', + FOOTER_1b: '制作', + FOOTER_2: '御寄付に感謝!:', + FOOTER_3: 'クライアントサイドウォレット制作', + FOOTER_4: '免責事項', + + /* Sidebar */ + sidebar_AccountInfo: 'アカウント情報: ', + sidebar_AccountAddr: 'アカウントアドレス: ', + sidebar_AccountBal: 'アカウント残高: ', + sidebar_TokenBal: 'トークン残高: ', + sidebar_Equiv: '等価: ', + sidebar_TransHistory: 'トランザクション履歴: ', + sidebar_DGDBal: 'DGDクラウドセール情報:', + sidebar_donation: 'MyEtherWalletは、プライバシーとセキュリティのための無料のオープンソースサービスです。 寄付が増えることによって、新機能やフィードバックの反映を行い、よりユーザーの皆様のご希望に沿った制作の時間を増やす事が可能になります。私たちは、たった二人で世界を変えようとしています。お手伝いいただけますか?', + sidebar_donate: '寄付する', + sidebar_thanks: '感謝します!!!', + + /* Decrypt Panel */ + decrypt_Access: 'どの方法でウォレットを操作しますか?', + decrypt_Title: 'プライベートキーフォーマットの選択:', + decrypt_Select: 'ウォレットの選択', + + /* Add Wallet */ + ADD_Label_1: 'ご希望の操作をお選びください', + ADD_Radio_1: '新規ウォレットの作成', + ADD_Radio_2: 'ウォレットファイルの選択 (Keystore / JSON)', + ADD_Radio_2_alt: 'ウォレットファイルの選択: ', + ADD_Radio_2_short: 'ウォレットファイルを選択', + ADD_Radio_3: 'プライベートキーをペースト/タイプ ', + ADD_Radio_4: '監視するアカウントを追加', + ADD_Label_2: 'ニックネームの作成:', + ADD_Label_3: 'ウォレットが暗号化されました。パスワードを入力してください: ', + ADD_Label_4: '監視するアカウントを追加', + ADD_Warning_1: 'ウォレットタブには、プライベートキーをアップロードせずに任意の監視するアカウントを追加する事ができます。これによってウォレットのアクセスや、ETHERの移動が可能になるわけではありません。', + ADD_Label_5: 'アドレスを入力: ', + ADD_Label_6: 'ウォレットをアンロック: ', + ADD_Label_6_short: 'アンロック', + ADD_Label_7: 'アカウントを追加', + + /* Generate Wallets */ + GEN_desc: '複数のウォレットの作成をこちらで行う事ができます:', + GEN_Label_1: '強固なパスワードを入力(9文字以上)', + GEN_Placeholder_1: '必ず保存してください!', + GEN_SuccessMsg: '成功!ウォレットが作成されました。', + GEN_Warning: 'ウォレットを操作するためには**Keystore/JSONとパスワードかプライベートキーが必要** 保存してから、外部バックアップしてください!ここで保存しないとウォレットが使用できなくなります。詳細はヘルプページを参照してください。(https://www.myetherwallet.com/#help)', + GEN_Label_2: 'Keystore/JSON あるいはプライベートキーを保存してください。パスワードを絶対に忘れないようにしてください。', + GEN_Label_3: 'アドレスを保存してください。', + GEN_Label_4: '必要であれば、ペーパーウォレット、あるいはQRコードを印刷してください。', + + /* Bulk Generate Wallets */ + BULK_Label_1: '作成するウォレット数', + BULK_Label_2: '複数ウォレットを作成する', + BULK_SuccessMsg: '成功!ウォレットが作成されました。', + + /* Sending Ether and Tokens */ + SEND_addr: '宛先アドレス: ', + SEND_amount: '送出数量: ', + SEND_amount_short: '数量', + SEND_custom: 'カスタム', + SEND_gas: 'ガス', + SEND_TransferTotal: '残高をすべて送出する', + SEND_generate: 'トランザクションを生成', + SEND_raw: '未加工トランザクション', + SEND_signed: '署名済みトランザクション', + SEND_trans: 'トランザクションの送出', + SENDModal_Title: '警告! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: '送出準備が', + SENDModal_Content_2: 'について、アドレス', + SENDModal_Content_3: 'に対し完了。本当に送出してよろしいですか?', + SENDModal_Content_4: 'ノート:最も起こりやすいエラーの原因は、送出のためのガス不足で、その場合には、ETHを追加する必要があります。ガスはETHで支払われます。', + SENDModal_No: 'いいえ、中断します。', + SENDModal_Yes: 'はい、確かです。処理を実行します。', + + /* Tokens */ + TOKEN_Addr: 'アドレス:', + TOKEN_Symbol: 'トークンシンボル: ', + TOKEN_Dec: 'ケタ数: ', + + /* Send Transaction */ + TRANS_desc: 'トークンを送出するには「トークン送出」のタブを選択してください。', + TRANS_warning: 'コントラクト上で、「ETHのみ」あるいは「ETCのみ」の送出を行う場合、受け入れサービスによって、これらのトランザクションに問題を生ずる場合があります。以下参照。', + TRANS_standard: 'ETH(標準トランザクション)', + TRANS_eth: 'ETHのみ', + TRANS_etc: 'ETCのみ', + TRANS_advanced: '+Advanced: ガスあるいはデータを追加してください ', + TRANS_data: ' データ: ', + TRANS_gas: ' ガス: ', + TRANS_sendInfo: '21000ガスを使用する標準トランザクションは、0.000441 ETHを消費します。迅速な処理を行うために、若干最小量よりも多めの0.000000021 ETHのガスを使用します。当サービスでは、トランザクション料金は徴収いたしません。', + + /* Send Transaction Modals */ + TRANSModal_Title: '「ETHのみ」と「ETCのみ」トランザクション', + TRANSModal_Content_0: '異なるトランザクションと異なるサービスの注釈:', + TRANSModal_Content_1: '**ETH(標準トランザクション): ** これは、アドレス間移動のデファルトのトランザクションを生成します。デフォルトガス値は21000です。このメソッドで送出されたETHは、高い可能性でETCチェーンでリプレイされます。', + TRANSModal_Content_2: '**ETHのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETH**チェーンのみに送出します。', + TRANSModal_Content_3: '**ETCのみ: ** [Timon Rappのリプレイコントラクト(VB推奨)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) を使用して、**ETC**チェーンのみに送出します。 ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** スタンダードトランザクションのみで送出します。どちらかのみのコントラクトで送出する場合には、サポートスタッフに連絡して、手動で残高に追加したり払い戻しをする必要があります。[Shapeshiftの「スプリット」ツールも使用可能です。(https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: '理解しました。', + TRANSModal_No: '理解できません。ヘルプが必要です。', + + /* Offline Transaction */ + OFFLINE_Title: 'オフライントランザクションを作成し送出', + OFFLINE_Desc: 'オフライントランザクションの作成は、3ステップで行う事ができます。ステップ1と3はオンラインのコンピューター上で行い、ステップ2は、オフライン、あるいは物理的にネットワークと切断されたコンピューターを用います。これにより、プライベートキーが、インターネットに接続したデバイスと接触する事を避ける事ができます。', + OFFLLINE_Step1_Title: 'ステップ1: 情報生成 (オンラインコンピューター)', + OFFLINE_Step1_Button: '情報生成', + OFFLINE_Step1_Label_1: '送出元アドレス: ', + OFFLINE_Step1_Label_2: 'ノート:これは、送出元アドレスであって、送出先アドレスではありません。操作元アカウントからは「Nonce」が生成されます。切断されたコンピューターを使用する場合に、このアドレスはコールドストレージのアカウントのものになります。', + OFFLINE_Step2_Title: 'ステップ2: 情報生成 (オフラインコンピューター)', + OFFLINE_Step2_Label_1: '送出先アドレス: ', + OFFLINE_Step2_Label_2: '送出する値/総量', + OFFLINE_Step2_Label_3: 'ガス価格 ', + OFFLINE_Step2_Label_3b: 'これは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_4: 'ガスリミット ', + OFFLINE_Step2_Label_4b: 'デフォルトガスリミット値は21000です。コントラクトや付加データーを送出する場合には、これらの値は 異なるものにする必要があります。使用されなかったガスは全て返却されます。', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'これらは、ステップ1でオンラインコンピューターに表示されたものです。', + OFFLINE_Step2_Label_6: 'データ', + OFFLINE_Step2_Label_6b: 'これは、任意の付加データです。コントラクトに対してトランザクションを送出する際などでよく使われます。', + OFFLINE_Step2_Label_7: 'プライベートキー/JSONの入力/選択', + OFFLINE_Step3_Title: 'ステップ3: トランザクションの送出/公開(オンラインコンピューター)', + OFFLINE_Step3_Label_1: 'ステップ2で署名されたトランザクションをここにペーストして「トランザクションの送出」ボタンをクリックする。', + + /* DAO */ + DAO_bal1: 'ブロック 1,919,999', + DAO_bal2: '現在の', + DAO_TitleETH: 'ETHでDAOを払い出し', + DAO_TitleETC: 'ETCでDAOを払い出し', + DAO_ETC_Label_1: 'どのアドレスにETCを送りますか?', + DAO_ETC_Label_2: 'ホワイトハックグループは日夜ETCを取り戻すべために働いています。希望すれば、払い戻しの何パーセントかを感謝をこめて贈る事ができます。', + DAO_Desc: 'このタブ上で、DAOトークンから、ETH **& ETC**の払い戻してください。DAOトークンの送るためには、トークン送出タブを選んでください。', + DAO_Inst: '赤いボタンをクリックしてください。簡単です。', + DAO_Warning: '「ガス残高不足」エラーの時は、アカウントにガスを供給するためにに少量のEtherが必要です。このアカウントに0.01 ETHを追加して、再度操作してください。', + DAOModal_Title: '確認中/...', + DAOModal_1: '払い出しを進めます', + DAOModal_2: 'DAOトークンを', + DAOModal_3: 'に対し', // “の代わりに” + + /* Digix */ + DGD_Desc: 'DigixDAO (DGD) トークンとバッジを請求してください。3月30/31日に行われた、トークンセールに参加した場合にのみ請求可能です。DGDを送出するためには「トークン送出」のタブ を使用してください。', + DGD_Label_1: 'フィー消費量概算:', + DGD_Label_2: 'フィー最大消費量:', + DGD_Label_3: 'ガス価格:', + DGD_Generate: '請求の生成', + DGD_Content: 'DGDトークンの請求を進めます', + + /* Deploy Contracts */ + DEP_generate: 'バイトコードを生成する', + DEP_generated: '生成されたバイトコード', + DEP_signtx: 'トランザクションに署名', + DEP_interface: '生成されたインターフェース', + + /* My Wallet */ + MYWAL_Nick: 'ウォレットニックネーム', + MYWAL_Address: 'ウォレットアドレス', + MYWAL_Bal: '残高', + MYWAL_Edit: '編集', + MYWAL_View: '表示', + MYWAL_Remove: '除去', + MYWAL_RemoveWal: 'ウォレットを除去:', + MYWAL_WatchOnly: '自分の監視専用アカウント', + MYWAL_Viewing: 'ウォレットを表示: ', + MYWAL_Hide: 'ウォレット情報を隠す', + MYWAL_Edit_2: 'ウォレットを編集: ', + MYWAL_Name: 'ウォレット名', + MYWAL_Content_1: '警告! ウォレットを除去しようとしています: ', + MYWAL_Content_2: '**プライベートキーとキーストアファイル及びパスワード**が保管されているか確認してください。', + MYWAL_Content_3: 'MyEtherWallet CXでこのウォレットを使用するためには、プライベートキーあるいはJSONとパスワードを手動で追加する必要があります。', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。[import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/)する時に必要です。残高をチェックするためには、[etherscan.io](http://etherscan.io/)のようなブロックチェーンエクスプローラーサービスを使う事をおすすめします。', + VIEWWALLET_Subtitle_Short: '異なったバージョンのプライベートキーをダウンロードしたり、ペーパーウォレットを再印刷することができます。', + VIEWWALLET_SuccessMsg: '成功! ウォレットの詳細は以下の通りです。', + + /* Chrome Extension */ + CX_error_1: 'ウォレットが保存されていません。["Add Wallet"](/cx-wallet.html#add-wallet)をクリックして追加してください。', + CX_quicksend: '簡易送信', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: '正しい値を入力してください。', + ERROR_2: 'パスワードは少なくとも9文字が必要です。強固なパスワードであることをお確かめください。 ', + ERROR_3: '申し訳ございませんが、このタイプのウォレットファイルは認識できません。 ', + ERROR_4: '正しいウォレットファイルではありません。 ', + ERROR_5: 'この単位は存在しませんので、下記の中からお選びください。 ', + ERROR_6: '無効なアドレスです。 ', + ERROR_7: '無効なパスワードです。 ', + ERROR_8: '無効な総量です。 ', + ERROR_9: '無効なガスリミットです。 ', + ERROR_10: '無効なデータです。 ', + ERROR_11: '無効なガス総量です。 ', + ERROR_12: '無効な nonce です。 ', + ERROR_13: '無効な署名のトランザクションです。 ', + ERROR_14: '同じニックネームのウォレットが既にあります。 ', + ERROR_15: 'ウォレットが見つかりません。 ', + ERROR_16: 'このIDのプロポーサルは存在しない、あるいは正常に読み込みできません。 ', + ERROR_17: '同じアドレスのウォレットが既に存在します。ウォレットのページをご確認ください。', + ERROR_18: 'ガスとして使われるために、少なくとも0.001 etherがウォレット上に必要です。 ', + ERROR_19: '全てのガスがこのトランザクションにより消費されます。これは、既に投票を行ったか、あるいはディベート期間が終了したためです。',  + ERROR_20: '無効なシンボル', + SUCCESS_1: '有効なアドレス', + SUCCESS_2: 'ウォレットは正常に暗号解除されました。', + SUCCESS_3: 'トランザクションが送出されました。 TX ID: ', + SUCCESS_4: 'ウォレットが追加されました:', + SUCCESS_5: '投票が完了しました。The DAO への積極的な参加に感謝いたします。', + SUCCESS_6: '選択されました: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'トランスレーターに感謝: ', + TranslatorName_1: 'sekisanchi', + TranslatorAddr_1: '0xf991119Eea62Eee1a6fdaA7f621e91A42f325FcE', + /* Translator 1: Kazunori Seki / 関一典 */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ja; },{}],50:[function(require,module,exports){ -// Dutch -'use strict'; -var nl = function() {} -nl.code = 'nl'; -nl.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Jouw Wallets', - NAV_AddWallet: 'Wallet Toevoegen', - NAV_GenerateWallet: 'Genereer Wallet', - NAV_BulkGenerate: 'Bulk Genereren', - NAV_SendEther: 'Verzend Ether', - NAV_SendTokens: 'Verzend Tokens', - NAV_Offline: 'Verzend Offline', - NAV_WithdrawDAO: 'DAO Opnemen', - DAO_TitleLong: 'DAO Token in ETH omzetten', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim je DGD Tokens', - NAV_DeployContract: 'Verspreid Contract', - NAV_MyWallets: 'Mijn Wallets', - NAV_ViewWallet: 'Bekijk Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Wallet: 'Wallet', - x_Password: 'Wachtwoord', - x_Download: 'Download', - x_Address: 'Je Adres', - x_Save: 'x_Opslaan', - x_Cancel: 'x_Annuleren', - x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', - x_PrivKey: 'Prive Sleutel (onversleuteld)', - x_PrivKey2: 'Prive Sleutel', - x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', - x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', - x_Keystore2: 'Keystore/JSON Bestand', - x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', - x_Json: 'JSON Bestand (onversleuteld)', - x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', - x_PrintShort: 'Afdrukken', - x_Print: 'Druk je papieren wallet af', - x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', - x_CSV: 'CSV bestand (onverlseuteld)', - x_TXT: 'TXT bestand (onverlseuteld)', - - /* Header */ - MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', - CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', - - /* Footer */ - FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', - FOOTER_1b: 'Gemaakt door', - FOOTER_2: 'Donaties worden zeer gewaardeerd:', - FOOTER_3: 'Client-side wallet genereren door', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Informatie: ', - sidebar_AccountAddr: 'Account Adres: ', - sidebar_AccountBal: 'Account Saldo: ', - sidebar_TokenBal: 'Token Saldo: ', - sidebar_Equiv: 'Equivalente Waarde: ', - sidebar_TransHistory: 'Transactie Geschiedenis: ', - sidebar_DGDBal: 'DGD Crowdsale Informatie:', - sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', - sidebar_donate: 'Doneer', - sidebar_thanks: 'BEDANKT!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hoe wil je toegang tot je wallet?', - decrypt_Title: 'Selecteer het formaat van je prive sleutel:', - decrypt_Select: 'Selecteer een Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'Wat wil je doen?', - ADD_Radio_1: 'Genereer nieuwe wallet', - ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', - ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', - ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', - ADD_Radio_3: 'Plak/Type je prive sleutel ', - ADD_Radio_4: 'Voeg een te bekijken account toe', - ADD_Label_2: 'Verzin een Nickname:', - ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', - ADD_Label_4: 'Voeg een te bekijken account toe', - ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', - ADD_Label_5: 'Voor het Adres in: ', - ADD_Label_6: 'Ontsleutel je wallet: ', - ADD_Label_6_short: 'Ontsleutel', - ADD_Label_7: 'Voeg account toe', - - /* Generate Wallets */ - GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', - GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', - GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', - GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', - GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', - GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', - GEN_Label_3: 'Sla je adres op.', - GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Aantal te genereren wallets', - BULK_Label_2: 'Genereer Wallets', - BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Aan Adres: ', - SEND_amount: 'Te verzenden bedrag: ', - SEND_amount_short: 'Bedrag', - SEND_custom: 'Aangepast', - SEND_gas: 'Gas', - SEND_generate: 'Genereer Transactie', - SEND_raw: 'Raw Transactie', - SEND_signed: 'Gesigneerde Transactie', - SEND_trans: 'Verzend Transactie', - SEND_TransferTotal: 'Verzend volledig saldo', - SENDModal_Title: 'Waarschuwing! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', - SENDModal_Content_2: 'aan adres', - SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', - SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', - SENDModal_No: 'Nee, haal me hier weg!', - SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token Symbool: ', - TOKEN_Dec: 'Decimalen: ', - - /* Send Transaction */ - TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', - TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', - TRANS_standard: 'ETH (Standaard Transactie)', - TRANS_eth: 'Enkel ETH', - TRANS_etc: 'Enkel ETC', - TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', - TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', - TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', - TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', - TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', - TRANSModal_Yes: 'Mooi, nu begrijp ik het.', - TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', - OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', - OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', - OFFLINE_Step1_Button: 'Genereer Informatie', - OFFLINE_Step1_Label_1: 'Van Adres: ', - OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', - OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', - OFFLINE_Step2_Label_1: 'Aan Adres: ', - OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', - OFFLINE_Step2_Label_3: 'Gas Prijs ', - OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_4: 'Gas Limiet ', - OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', - OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', - OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', - OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', - - /* DAO */ - DAO_bal1: 'bij blok 1.919.999', - DAO_bal2: 'momenteel', - DAO_TitleETH: 'DAO voor ETH opnemen', - DAO_TitleETC: 'DAO voor ETC opnemen', - DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', - DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', - DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', - DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', - DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', - DAOModal_Title: 'Voor de zekerheid...', - // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Je staat op het punt om', - DAOModal_2: 'DAO Tokens op te nemen voor', - DAOModal_3: 'voor', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', - DGD_Label_1: 'Geschatte transactie kosten:', - DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', - DGD_Label_3: 'Gas Prijs:', - DGD_Generate: 'Genereer Claim', - DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', - - /* Deploy Contracts */ - DEP_generate: 'Genereer Bytecode', - DEP_generated: 'Gegenereerde Bytecode', - DEP_signtx: 'Onderteken Transactie', - DEP_interface: 'Gegenereerde Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Adres', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Bewerken', - MYWAL_View: 'Bekijken', - MYWAL_Remove: 'Verwijderen', - MYWAL_RemoveWal: 'Verwijder Wallet:', - MYWAL_WatchOnly: 'Je Watch-Only Accounts', - MYWAL_Viewing: 'Te Bekijken Wallet: ', - MYWAL_Hide: 'Verberg Wallet Info', - MYWAL_Edit_2: 'Bewerk Wallet: ', - MYWAL_Name: 'Wallet Naam', - MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', - MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', - MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', - VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', - CX_quicksend: 'VerzendSnel', - - /* Error Messages */ - ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', - ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', - ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', - ERROR_4: 'Dit is geen geldig Wallet bestand. ', - ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', - ERROR_6: 'Ongeldig adres. ', - ERROR_7: 'Ongeldig wachtwoord. ', - ERROR_8: 'Ongeldig bedrag. ', - ERROR_9: 'Ongeldige gas limiet. ', - ERROR_10: 'Ongeldige data waarde. ', - ERROR_11: 'Ongeldige gas bedrag. ', - ERROR_12: 'Ongeldige nonce. ', - ERROR_13: 'Ongeldige gesigneerde transactie. ', - ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', - ERROR_15: 'Wallet niet gevonden. ', - ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', - ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', - ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', - ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', - ERROR_20: 'Ongeldig symbol', - SUCCESS_1: 'Geldig adres', - SUCCESS_2: 'Wallet succesvol ontsleuteld', - SUCCESS_3: 'Transactie verzonden. TX ID: ', - SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', - SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', - SUCCESS_6: 'Bestand Geselecteerd: ', - - /* Translation Info */ - translate_version: '0.3', - Translator_Desc: 'Veel dank voor onze vertalers: ', - TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', - TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', - HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', - HELP_Remind_Title: 'Enkele herinneringen', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', - HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', - - HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', - HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', - HELP_0_Desc_2: 'Creer een nieuwe wallet.', - HELP_0_Desc_3: 'Maak een wallet back-up.', - HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', - HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', - - HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', - HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', - HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', - HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', - HELP_1_Desc_4: 'klik "GENENEREER".', - HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', - - HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', - HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', - HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', - HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', - HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', - HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', - HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', - - HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', - HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', - HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', - HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', - HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', - HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', - HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', - - HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', - HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', - HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', - HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', - HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', - HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', - HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', - HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', - HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', - - HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', - HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', - HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', - HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', - HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', - HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', - HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', - HELP_4_Desc_9: 'Klik "Genereer Transactie".', - HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', - HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', - - HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', - HELP_4CX_Desc_2: 'VerzendSnel:', - HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', - HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', - HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', - HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', - HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', - HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', - HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', - HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', - HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', - - HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', - HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', - HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', - HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', - HELP_5_Desc_5: 'Unzip het.', - HELP_5_Desc_6: 'Dubbel-klik `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', - HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', - HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', - - HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', - HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', - HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', - HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', - HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', - HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', - HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', - HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', - - HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', - HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', - HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', - HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', - HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', - HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', - HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', - HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', - HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', - HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', - HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', - HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', - HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', - HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', - - HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', - HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', - HELP_7_Desc_2: 'Ontsleutel je wallet.', - HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', - HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', - HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', - HELP_7_Desc_6: 'Als het token niet wordt vermeld:', - HELP_7_Desc_7: 'Klik op "Aangepast".', - HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', - HELP_7_Desc_9: 'Klik op "Opslaan".', - HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', - HELP_7_Desc_11: 'Klik "Genereer Transactie".', - HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', - HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', - HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', - HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', - - HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', - HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', - HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', - HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', - HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', - - HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', - HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', - HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', - HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', - - HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', - HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', - - HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', - HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', - HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', - HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', - HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', - HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', - HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', - HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', - HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', - HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', - HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', - - HELP_11_Title: '11) Hoe verstuur ik naar een contract?', - HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', - HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', - HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', - HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', - HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', - - HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', - HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', - HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', - HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', - HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', - HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', - HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', - HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', - HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', - HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', - HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', - HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', - HELP_12_Desc_15: 'Als je op een Mac werkt:', - HELP_12_Desc_15b: 'Als je op een PC werkt:', - HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', - HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', - HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', - HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', - HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', - HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C://`', - HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:/niets_bijzonders_verwijder_mij.txt`', - HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', - HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', - HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', - - HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', - - HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', - HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', - HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', - - HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', - HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', - - HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', - HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', - - HELP_18_Title: '18) Waar is mijn geth wallet bestand?', - - HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', - HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', - - HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', - HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', - - HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', - HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', - HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', - HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', - HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', - HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', - HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', - - HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', - HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', - HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', - HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', - HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', - HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', - - HELP_Sec_Title: 'Beveiliging', - HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', - HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', - HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', - HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', - HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', - HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', - HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', - HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', - - HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', - HELP_Contact_Title: 'Manieren om in contact te komen' -}; - -module.exports = nl; +// Korean +'use strict'; +var ko = function() {} +ko.code = 'ko'; +ko.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ko; },{}],51:[function(require,module,exports){ -// Norwegian -'use strict'; -var no = function() {} -no.code = 'no'; -no.data = { - - /* Navigation*/ - NAV_YourWallets: 'Dine lommebøker', - NAV_AddWallet: 'Legg til lommebok', - NAV_GenerateWallet: 'Opprett lommebok', - NAV_BulkGenerate: 'Opprett flere lommebøker', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Token', - NAV_Offline: 'Send Frakoblet', - NAV_WithdrawDAO: 'Ta ut DAO', - DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', - NAV_ClaimDGD: 'Gjør krav på DGD', - DGD_TitleLong: 'Gjør krav på dine DGD-token', - NAV_DeployContract: 'Utplasser kontrakt', - NAV_MyWallets: 'Mine lommebøker', - NAV_ViewWallet: 'Vis lommebok-info', - NAV_Help: 'Hjelp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Passord', - x_Download: 'Last ned', - x_Address: 'Din adresse', - x_Save: 'x_Save', - x_Cancel: 'x_Cancel', - x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', - x_PrivKey: 'Privat nøkkel (ukryptert)', - x_PrivKey2: 'Privat nøkkel', - x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', - x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', - x_Keystore2: 'Keystore/JSON-fil', - x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', - x_Json: 'JSON-fil (ukryptert)', - x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', - x_PrintShort: 'Skriv ut', - x_Print: 'Skriv ut papirlommebok', - x_PrintDesc: 'ProTips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', - x_CSV: 'CSV-fil (ukryptert)', - x_TXT: 'TXT-fil (ukryptert)', - x_Wallet: 'Lommebok', - - /* Header */ - MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', - CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ - - /* Footer */ - FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', - FOOTER_1b: 'Skapt av', - FOOTER_2: 'Donasjoner mottas med takk:', - FOOTER_3: 'Klient-side lommebok-oppretting av', - FOOTER_4: 'Ansvarsfraskrivelse', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformasjon: ', - sidebar_AccountAddr: 'Kontoadresse: ', - sidebar_AccountBal: 'Saldo på konto: ', - sidebar_TokenBal: 'Token-saldo: ', - sidebar_Equiv: 'Tilsvarende verdier: ', - sidebar_TransHistory: 'Transaksjonshistorikk: ', - sidebar_DGDBal: 'DGD Crowdsale informasjon:', - sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', - sidebar_donate: 'Doner', - sidebar_thanks: 'TAKK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', - decrypt_Title: 'Velg formatet på din private nøkkel:', - decrypt_Select: 'Velg en lommebok:', - - /* Add Wallet */ - ADD_Label_1: 'Hva ønsker du å gjøre?', - ADD_Radio_1: 'Opprett ny lommebok', - ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', - ADD_Radio_2_alt: 'Velg lommebok-fil: ', - ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', - ADD_Radio_3: 'Lim/skriv inn din private nøkkel', - ADD_Radio_4: 'Legg til en konto for overvåkning', - ADD_Label_2: 'Lag et kallenavn:', - ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', - ADD_Label_4: 'Legg til en konto for overvåkning', - ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', - ADD_Label_5: 'Oppgi adressen: ', - ADD_Label_6: 'Lås opp lommeboen din', - ADD_Label_6_short: 'Lås opp', - ADD_Label_7: 'Legg til konto', - - /* Generate Wallets */ - GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', - GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', - GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', - GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', - GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', - GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', - GEN_Label_3: 'Lagre adressen din.', - GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antall lommebøker som skal opprettes', - BULK_Label_2: 'Opprett lommebøker', - BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Til-adresse: ', - SEND_amount: 'Beløp som skal sendes: ', - SEND_amount_short: 'Beløp', - SEND_custom: 'Tilpasning', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' - SEND_generate: 'Generer transaksjon', - SEND_raw: 'Rå-transaksjon', - SEND_signed: 'Signert transaksjon', - SEND_trans: 'Send transaksjon', - SENDModal_Title: 'Advarsel! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Du er i ferd med å sende', - SENDModal_Content_2: 'til adressen', - SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', - SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', - SENDModal_No: 'Nei, få meg ut herfra!', - SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', - - /* Tokens */ - TOKEN_Addr: 'Adresse: ', - TOKEN_Symbol: 'Token-symbol: ', - TOKEN_Dec: 'Desimaler: ', - - /* Send Transaction */ - TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', - TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', - TRANS_standard: 'ETH (Standard transaksjon)', - TRANS_eth: 'Kun ETH', - TRANS_etc: 'Kun ETC', - TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', - TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', - TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', - TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', - TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', - TRANSModal_Yes: 'Flott, jeg skjønner det nå.', - TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generer & send frakoblet (offline) transaksjon', - OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', - OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', - OFFLINE_Step1_Button: 'Generer informasjon', - OFFLINE_Step1_Label_1: 'Fra-adresse: ', - OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', - OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', - OFFLINE_Step2_Label_1: 'Til-adresse: ', - OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', - OFFLINE_Step2_Label_3: 'Gas-pris ', - OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_4: 'Gas-grense ', - OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', - OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', - OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', - OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', - - /* DAO */ - DAO_bal1: 'ved blokk 1,919,999', - DAO_bal2: 'nåværende', - DAO_TitleETH: 'Veksle inn DAO mot ETH', - DAO_TitleETC: 'Veksle inn DAO mot ETC', - DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', - DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', - DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-poletter, vennligst bruk "Send Token"-siden.', - DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', - DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', - DAOModal_Title: 'Bare for å være sikker...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - // note: this may be a bit rough in Norwegian. - DAOModal_1: 'Du er i ferd med å veksle inn ', - DAOModal_2: 'DAO-tokens til ', - DAOModal_3: 'i bytte mot', - - /* Digix */ - DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', - DGD_Label_1: 'Estimert avgiftsforbruk:', - DGD_Label_2: 'Oppgitt maksimal avgift:', - DGD_Label_3: 'Gas-pris:', - DGD_Generate: 'Opprett krav', - DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', - - /* Deploy Contracts */ - DEP_generate: 'Generer Bytecode', - DEP_generated: 'Generert Bytecode', - DEP_signtx: 'Signer transaksjon', - DEP_interface: 'Generer grensesnitt', - - /* My Wallet */ - MYWAL_Nick: 'Lommebok-kallenavn', - MYWAL_Address: 'Lommebok-adresse', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Rediger', - MYWAL_View: 'Se på', - MYWAL_Remove: 'Fjern', - MYWAL_RemoveWal: 'Fjern lommebok:', - MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', - MYWAL_Viewing: 'Viser lommebok: ', - MYWAL_Hide: 'Skjul lommebok-info', - MYWAL_Edit_2: 'Rediger lommebok: ', - MYWAL_Name: 'Lommeboknavn', - MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', - MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', - MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', - VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', - - /* Chrome Extension */ - CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', - CX_quicksend: 'Send', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vennligst oppgi et gyldig beløp.', - ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', - ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', - ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', - ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', - ERROR_6: 'Ugyldig adresse. ', - ERROR_7: 'Ugyldig passord. ', - ERROR_8: 'Ugyldig beløp. ', - ERROR_9: 'Ugyldig gas-grense. ', - ERROR_10: 'Ugyldig dataverdi. ', - ERROR_11: 'Ugyldig gas-mengde. ', - ERROR_12: 'Ugyldig nonce. ', - ERROR_13: 'Ugyldig signert transaksjon. ', - ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', - ERROR_15: 'Lommebok ikke funnet. ', - ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', - ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', - ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', - ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', - ERROR_20: 'Ugyldig symbol', - SUCCESS_1: 'Gyldig adresse', - SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', - SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', - SUCCESS_4: 'Lommeboken din ble lagt til: ', - SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', - SUCCESS_6: 'Valgt fil: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Feil på avsender', - GETH_Nonce: 'Nonce for liten', - GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', - GETH_Balance: 'Utilstrekkelig saldo', - GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', - GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', - GETH_IntrinsicGas: 'Gas-egenverdi for lav', - GETH_GasLimit: 'Overskrider blokkens gas-grense', - GETH_NegativeValue: 'Negativ verdi', - - /* Tranlsation Info */ - translate_version: '0.4', - Translator_Desc: 'Takk til oversetterne våre: ', - TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', - HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', - HELP_Remind_Title: 'Noen påminnelser', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', - HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', - - HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', - HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', - HELP_0_Desc_2: 'Opprett en ny lommebok.', - HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', - HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', - HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', - - HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', - HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', - HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', - HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', - HELP_1_Desc_4: 'Klikk "OPPRETT".', - HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', - - HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', - HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', - HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', - HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', - HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', - HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', - HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', - - HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', - HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', - HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', - HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', - HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', - HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', - HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', - - HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', - HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', - HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', - HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', - HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', - HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', - HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', - HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', - - HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', - HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', - HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', - HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', - HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', - HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', - HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', - HELP_4_Desc_9: 'Klikk "Generer transaksjon".', - HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', - - HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', - HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', - HELP_4CX_Desc_2: 'Send:', - HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', - HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', - HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', - HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', - HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', - HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', - HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', - HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', - HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', - HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', - - HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', - HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send frakoblet"-siden.', - HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', - HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', - HELP_5_Desc_5: 'Pakk ut zip-fila.', - HELP_5_Desc_6: 'Dobbelklikk `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', - HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', - HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', - - HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', - HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', - HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', - HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', - HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', - HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', - HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', - HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', - - HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', - HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', - HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', - HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', - HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', - HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', - HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', - HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', - HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', - HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', - HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', - HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', - HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', - HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', - HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', - - HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', - HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', - HELP_7_Desc_2: 'Lås opp lommeboken din.', - HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', - HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', - HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', - HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', - HELP_7_Desc_7: 'Klikk "Tilpasning".', - HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// - HELP_7_Desc_9: 'Klikk "Lagre".', - HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', - HELP_7_Desc_11: 'Klikk "Generer transaksjon".', - HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', - HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', - HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', - HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', - - HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', - HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', - HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', - HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', - HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', - - HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', - HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', - HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', - HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', - - HELP_9_Title: '9) Er "Send ether"-siden offline?', - HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Frakoblet transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', - - HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', - HELP_10_Desc_1: 'Naviger til "Send Frakoblet"-siden via din internettilknyttede datamaskin.', - HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', - HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', - HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', - HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', - HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', - HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', - HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', - HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', - HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', - - HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', - HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', - HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', - HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', - HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', - HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', - HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', - HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', - HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', - HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', - HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', - HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', - HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', - HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', - HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', - HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', - HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', - HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', - HELP_12_Desc_15: 'Hvis du er på en Mac:', - HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', - HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt/`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', - HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', - HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', - HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', - HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C://`', - HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:/ikke_noe_spesielt_slett_meg.txt`', - HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', - HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt/`', - HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', - - HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', - HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', - - HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', - HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', - - HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', - HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', - - HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', - HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', - - HELP_18_Title: '18) Hvor er min geth lommebok-fil', - - HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', - HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', - - HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', - HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', - - HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', - HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', - HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', - HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', - HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', - HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', - HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', - HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', - HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', - - HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', - HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', - HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', - HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', - HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', - HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', - HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', - - HELP_Sec_Title: 'Sikring', - HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', - HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', - HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', - HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', - HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', - HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', - HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', - HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', - - HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', - HELP_Contact_Title: 'Måter å ta kontakt på' -}; - -module.exports = no; +// Dutch +'use strict'; +var nl = function() {} +nl.code = 'nl'; +nl.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Jouw Wallets', + NAV_AddWallet: 'Wallet Toevoegen', + NAV_GenerateWallet: 'Genereer Wallet', + NAV_BulkGenerate: 'Bulk Genereren', + NAV_SendEther: 'Verzend Ether', + NAV_SendTokens: 'Verzend Tokens', + NAV_Offline: 'Verzend Offline', + NAV_WithdrawDAO: 'DAO Opnemen', + DAO_TitleLong: 'DAO Token in ETH omzetten', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim je DGD Tokens', + NAV_DeployContract: 'Verspreid Contract', + NAV_MyWallets: 'Mijn Wallets', + NAV_ViewWallet: 'Bekijk Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Wallet: 'Wallet', + x_Password: 'Wachtwoord', + x_Download: 'Download', + x_Address: 'Je Adres', + x_Save: 'x_Opslaan', + x_Cancel: 'x_Annuleren', + x_AddessDesc: 'Dit is je "Account #" ofwel je "Publieke Sleutel". Maak dit bekend aan anderen zodat ze je ether kunnen sturen. Dit icoon is een makkelijke manier om je adres te herkennen.', + x_PrivKey: 'Prive Sleutel (onversleuteld)', + x_PrivKey2: 'Prive Sleutel', + x_PrivKeyDesc: 'Dit is een onversleutelde tekst versie van je prive sleutel waarbij geen wachtwoord benodigd is. Mocht iemand deze unversleutelde prive sleutel vinden, kunnen zij zonder wachtwoord bij je account. Om deze reden zijn versleutelde versies aanbevolen.', + x_Keystore: 'Keystore/JSON Bestand (Aangeraden · versleuteld · Mist/Geth Formaat)', + x_Keystore2: 'Keystore/JSON Bestand', + x_KeystoreDesc: 'Dit Keystore / JSON bestand voldoen aan het formaat zoals gebruikt door Mist & Geth waardoor je het gemakkelijk kunt importeren in de toekomst. Dit is de aanbevolen methode voor download en back up.', + x_Json: 'JSON Bestand (onversleuteld)', + x_JsonDesc: 'Dit is het onversleutelde, JSON formaat van je prive sleutel. Dit betekend dat je het wachtwoord niet nodig hebt, maar ook dat een ieder die je JSON bestand vind toegang heeft tot je wallet & Ether zonder wachtwoord.', + x_PrintShort: 'Afdrukken', + x_Print: 'Druk je papieren wallet af', + x_PrintDesc: 'ProTip: Klik Afdrukken en sla deze pagina op als PDF, zelfs als je geen printer hebt!', + x_CSV: 'CSV bestand (onverlseuteld)', + x_TXT: 'TXT bestand (onverlseuteld)', + + /* Header */ + MEW_Warning_1: 'Check altijd de URL voordat je jouw wallet opent of een nieuwe wallet genereert. Pas op voor phishing sites!', + CX_Warning_1: 'Zorg voor **externe backups** van alle wallets die je hier opslaat. Er kan kunnen diverse dingen gebeuren die ervoor kunnen zorgen dat je gegevens in deze Chrome Extensie verloren gaan, inclusief het deinstalleren en installeren van de extensie. Deze extensie is een manier om je wallet gemakkelijk toegankelijk te maken, **geen** manier om ze te backuppen.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extensie', + + /* Footer */ + FOOTER_1: 'Een open source, javascript, client-side tool om Ethereum Wallets te genereren & transacties te verzenden.', + FOOTER_1b: 'Gemaakt door', + FOOTER_2: 'Donaties worden zeer gewaardeerd:', + FOOTER_3: 'Client-side wallet genereren door', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Informatie: ', + sidebar_AccountAddr: 'Account Adres: ', + sidebar_AccountBal: 'Account Saldo: ', + sidebar_TokenBal: 'Token Saldo: ', + sidebar_Equiv: 'Equivalente Waarde: ', + sidebar_TransHistory: 'Transactie Geschiedenis: ', + sidebar_DGDBal: 'DGD Crowdsale Informatie:', + sidebar_donation: 'MyEtherWallet is een gratis, open-source service toegewijd aan jouw privacy en beveiliging. Des te meer donaties we ontvangen, des te meer tijd we zullen spenderen aan nieuwe functies, aan de hand van jouw terugkoppeling, en we je kunnen geven wat jij wilt. Wij zijn slechts twee mensen die de wereld een stukje beter willen maken. Help jij mee?', + sidebar_donate: 'Doneer', + sidebar_thanks: 'BEDANKT!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hoe wil je toegang tot je wallet?', + decrypt_Title: 'Selecteer het formaat van je prive sleutel:', + decrypt_Select: 'Selecteer een Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'Wat wil je doen?', + ADD_Radio_1: 'Genereer nieuwe wallet', + ADD_Radio_2: 'Selecteer Je wallet bestand (Keystore / JSON)', + ADD_Radio_2_alt: 'Selecteer Je wallet bestand: ', + ADD_Radio_2_short: 'SELECTEER WALLET BESTAND...', + ADD_Radio_3: 'Plak/Type je prive sleutel ', + ADD_Radio_4: 'Voeg een te bekijken account toe', + ADD_Label_2: 'Verzin een Nickname:', + ADD_Label_3: 'Je wallet is versleuteld. Geef je wachtwoord: ', + ADD_Label_4: 'Voeg een te bekijken account toe', + ADD_Warning_1: 'Je kunt elk account toevoegen als "bekijken" in het wallets tabblad zonder de prive sleutel te uploaden. Dit betekend ** niet ** dat je toegang hebt tot deze wallet, noch dat je er Ether vanuit kunt versturen.', + ADD_Label_5: 'Voor het Adres in: ', + ADD_Label_6: 'Ontsleutel je wallet: ', + ADD_Label_6_short: 'Ontsleutel', + ADD_Label_7: 'Voeg account toe', + + /* Generate Wallets */ + GEN_desc: 'Als je meerdere wallets wilt gererenen, kun je dat hier doen: ', + GEN_Label_1: 'Geef een sterk wachtwoord (ten minste 9 karakters)', + GEN_Placeholder_1: 'Vergeet NIET om dit op te slaan!', + GEN_SuccessMsg: 'Gelukt! Je wallet is gegenereerd.', + GEN_Warning: '**Je hebt je Keystore/JSON Bestand & wachtwoord of prive sleutel nodig** om toegang tot deze wallet te verkrijgen in de toekomst. Sla het op & maak een externe back-up! Er is geen enkele manier om je wallet te herstellen als je het nu niet opslaat. Lees ook de help pagina (https://www.myetherwallet.com/#help) voor instructies.', + GEN_Label_2: 'Sla je Keystore/JSON of Prive Sleutel op. Vergeet je wachtwoord hierboven niet.', + GEN_Label_3: 'Sla je adres op.', + GEN_Label_4: 'Druk je papieren wallet af, of bewaar hem als QR code. (optioneel)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Aantal te genereren wallets', + BULK_Label_2: 'Genereer Wallets', + BULK_SuccessMsg: 'Gelukt! Je wallets zijn gegenereerd.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Aan Adres: ', + SEND_amount: 'Te verzenden bedrag: ', + SEND_amount_short: 'Bedrag', + SEND_custom: 'Aangepast', + SEND_gas: 'Gas', + SEND_generate: 'Genereer Transactie', + SEND_raw: 'Raw Transactie', + SEND_signed: 'Gesigneerde Transactie', + SEND_trans: 'Verzend Transactie', + SEND_TransferTotal: 'Verzend volledig saldo', + SENDModal_Title: 'Waarschuwing! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Je staat op het punt om het volgende bedrag over te maken: ', + SENDModal_Content_2: 'aan adres', + SENDModal_Content_3: 'Weet je zeker dat je dit wilt doen?', + SENDModal_Content_4: 'OPMERKING: Als je een fout bent tegengekomen, zul je waarschijnlijk ether aan je account moeten toevoegen om de gas kosten voor het verzenden van deze transactie te betalen. Gas wordt betaald in ether.', + SENDModal_No: 'Nee, haal me hier weg!', + SENDModal_Yes: 'Ja, ik weet het zeker! Maak de transactie.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token Symbool: ', + TOKEN_Dec: 'Decimalen: ', + + /* Send Transaction */ + TRANS_desc: 'Als je Tokens wilt versturen, gebruik dan de "Verzend Token" pagina i.p.v. deze pagina.', + TRANS_warning: 'Als je gebruik maakt van de "Enkel ETH" of "Enkel ETC" functies zul je de transactie uitvoeren via een contract. Sommige diensten hebben problemen met het accepteren van deze transacties. Lees meer.', + TRANS_standard: 'ETH (Standaard Transactie)', + TRANS_eth: 'Enkel ETH', + TRANS_etc: 'Enkel ETC', + TRANS_advanced: '+Geavanceerd: Voeg meer Gas of Data toe ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'Een standaard transactie met 21000 gas zal 0.000441 ETH kosten. Wij gebruiken een iets-boven-minimum gas prijs van 0.000000021 ETH om te garranderen dat de transactie snel uitgevoerd zal worden. Wij zijn niet verantwoordelijk voor je transactie kosten.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Enkel ETH" en "Enkel ETC" Transacties', + TRANSModal_Content_0: 'Een opmerking met betrekking tot de verschillende typen transacties en diensten:', + TRANSModal_Content_1: '**ETH (Standaard Transactie): ** Hiermee genereer je een standaard transactie, direct van een adres naar een ander. Het verbruikt de standaard hoeveelheid gas van 21000. Het is waarschijnlijk dat elke verzonden ETH met deze methode zal worden nagespeeld (replayed) op de ETC blockchain.', + TRANSModal_Content_2: '**Enkel ETH: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETH** blockchain.', + TRANSModal_Content_3: '**Enkel ETC: ** Hiermee verstuur je via [Timon Rapp\'s "replay protection contract" (zoals aanbevolen door VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) zodat je enkel verstuurd op de **ETC** blockchain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Verstuur enkel via standaard transacties. Als je via de "Enkel" contracten hebt verstuurd zul je contact moeten opnemen met hun helpdesk zodat ze je kunnen restitueren [Je kunt ook Shapeshift\'s "split" tool uitproberen.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Geen problemen bekend. Gebruik wat je voorkeur heeft.', + TRANSModal_Yes: 'Mooi, nu begrijp ik het.', + TRANSModal_No: 'Oh jee, nu snap ik er nog niets van. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Genereer & Verzend een Offline Transactie', + OFFLINE_Desc: 'Een offline transactie doe je in drie stappen. Stap 1 en 3 doe je op een online computer, terwijl je stap 2 uitvoert op een offline/afgeschermde computer. Dit zorgt ervoor dat je prive sleutel niet in aanraking komt met een met internet verbonden computer.', + OFFLINE_Step1_Title: 'Stap 1: Genereer Informatie (Online Computer)', + OFFLINE_Step1_Button: 'Genereer Informatie', + OFFLINE_Step1_Label_1: 'Van Adres: ', + OFFLINE_Step1_Label_2: 'Opmerking: Dit is het VAN adress, niet het AAN adres. De Nonce wordt generenereerd van het oorspronkelijke account. Als je een afgeschermde (airgapped) computer gebruikt, zal dit het adres van het cold-storage account zijn.', + OFFLINE_Step2_Title: 'Stap 2: Genereer Transactie (Offline Computer)', + OFFLINE_Step2_Label_1: 'Aan Adres: ', + OFFLINE_Step2_Label_2: 'Waarde / Te Verzenden Bedrag', + OFFLINE_Step2_Label_3: 'Gas Prijs ', + OFFLINE_Step2_Label_3b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_4: 'Gas Limiet ', + OFFLINE_Step2_Label_4b: '21000 is de standaard gas limiet. Als je (naar) een contract verstuurd of data toegoegd, zou je dit anders moeten instellen. Alle onbenutte gas zal aan je worden teruggestuurd.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dit werd weergegeven in Stap 1 op je online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dit is optioneel. Data wordt vaak gebruikt als je transacties naar contracten verstuurd.', + OFFLINE_Step2_Label_7: 'Selecteer en geef je Prive Sleutel / JSON in.', + OFFLINE_Step3_Title: 'Stap 3: Verstuur / Publiceer Transactie (Online Computer)', + OFFLINE_Step3_Label_1: 'Plak de gesigneerde transactie van Stap 2 hier en click de "Verzend Transactie" knop.', + + /* DAO */ + DAO_bal1: 'bij blok 1.919.999', + DAO_bal2: 'momenteel', + DAO_TitleETH: 'DAO voor ETH opnemen', + DAO_TitleETC: 'DAO voor ETC opnemen', + DAO_ETC_Label_1: 'Naar welk adres wil je je ETC verzenden?', + DAO_ETC_Label_2: 'De "White Hat Group" is onvermoeibaar aan het werk geweest om jouw ETC terug bij jouw te krijgen. Je kunt ze bedankten door een percentage van je opname te doneren, als je daarvoor kiest. ', + DAO_Desc: 'Gebruik dit tab om je DAO Tokens om te zitten in ether. Als je DOA Tokens wilt versturen, gebruik dan het Verzend Tokens Tab.', + DAO_Inst: 'Ja. Klik simpelweg op de grote rode knop. Zo makkelijk is het.', + DAO_Warning: 'Als je een "Insufficient balance for gas" fout krijgt, zul je een kleine hoeveelheid ETH in je account moeten storten om de gas kosten voor deze actie te betalen. Voeg 0.01 ETH toe aan je account en probeer het opnieuw. ', + DAOModal_Title: 'Voor de zekerheid...', + // full sentance is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Je staat op het punt om', + DAOModal_2: 'DAO Tokens op te nemen voor', + DAOModal_3: 'voor', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim je DigixDAO (DGD) tokens & badges. Om te claimen zul je meegedaan moeten hebben met de token sale van 30/31 maart 2016. Als je DGD wilt versturen, gebruik dan het Verzend Tokens Tab.', + DGD_Label_1: 'Geschatte transactie kosten:', + DGD_Label_2: 'Gegeven Maximum Transactie Kosten:', + DGD_Label_3: 'Gas Prijs:', + DGD_Generate: 'Genereer Claim', + DGD_Content: 'Je staat op het punt om je DGD Tokens te claimen.', + + /* Deploy Contracts */ + DEP_generate: 'Genereer Bytecode', + DEP_generated: 'Gegenereerde Bytecode', + DEP_signtx: 'Onderteken Transactie', + DEP_interface: 'Gegenereerde Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Adres', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Bewerken', + MYWAL_View: 'Bekijken', + MYWAL_Remove: 'Verwijderen', + MYWAL_RemoveWal: 'Verwijder Wallet:', + MYWAL_WatchOnly: 'Je Watch-Only Accounts', + MYWAL_Viewing: 'Te Bekijken Wallet: ', + MYWAL_Hide: 'Verberg Wallet Info', + MYWAL_Edit_2: 'Bewerk Wallet: ', + MYWAL_Name: 'Wallet Naam', + MYWAL_Content_1: 'Waarschuwing! Je staat op het punt om je Wallet te verwijderen: ', + MYWAL_Content_2: 'Wees er zeker van dat je **de prive sleutel/JSON bestand en het wachtwoord opgeslagen hebt** van deze Wallet voordat je het verwijderd.', + MYWAL_Content_3: 'Als je deze Wallet in de toekomst nog wilt gebruiken met MyEtherWallet CX, zul je het met de hand moeten toevoegen door gebruik te maken van de prive sleutel/JSON en wachtwoord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. Je zou dit kunnen doen om [je account in Geth/Mist te importeren](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Als je enkel je saldo wilt checken adviseren we je om gebruik te maken van een blockchain explorer zoals [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Hiermee kun je verschillende versies van je prive sleutels downloaden en je papieren Wallet opnieuw afdrukken. ', + VIEWWALLET_SuccessMsg: 'Gelukt! Hier zijn je Wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Je hebt nog geen enkele wallets opgeslagen. Klik ["Voeg wallet toe"](/cx-wallet.html#add-wallet) om er een toe te voegen!', + CX_quicksend: 'VerzendSnel', + + /* Error Messages */ + ERROR_1: 'Geef alsjeblieft een geldig bedrag in.', + ERROR_2: 'Je wachtwoord dient minimaal 9 karakters lang te zijn. Zorg voor een sterk wachtwoord. ', + ERROR_3: 'Sorry! We herkennen dit type Wallet bestand niet. ', + ERROR_4: 'Dit is geen geldig Wallet bestand. ', + ERROR_5: 'Deze eenheid bestaat niet, kies alsjeblieft een van de volgende eenheden ', + ERROR_6: 'Ongeldig adres. ', + ERROR_7: 'Ongeldig wachtwoord. ', + ERROR_8: 'Ongeldig bedrag. ', + ERROR_9: 'Ongeldige gas limiet. ', + ERROR_10: 'Ongeldige data waarde. ', + ERROR_11: 'Ongeldige gas bedrag. ', + ERROR_12: 'Ongeldige nonce. ', + ERROR_13: 'Ongeldige gesigneerde transactie. ', + ERROR_14: 'Een wallet met deze nickname bestaat reeds. ', + ERROR_15: 'Wallet niet gevonden. ', + ERROR_16: 'Het ziet er niet naar uit dat een proposal met dit ID bestaat of dat er een fout is opgetreden bij het lezenvan dit proposal. ', + ERROR_17: 'Een wallet met dit adres bestaat reeds. Check alsjeblileft je wallet pagina. ', + ERROR_18: 'Je hebt mininaal 0.001 ether in je account nodig om de in de gas kosten te voorzien. Voeg alsjeblieft wat ether toe en probeer het opnieuw. ', + ERROR_19: 'Alle gas zou worden verbruikt op deze transactie. Dit betekend dat je al gestemd hebt op dit proposal of dat de debateerperiode is verstreken.', + ERROR_20: 'Ongeldig symbol', + SUCCESS_1: 'Geldig adres', + SUCCESS_2: 'Wallet succesvol ontsleuteld', + SUCCESS_3: 'Transactie verzonden. TX ID: ', + SUCCESS_4: 'Je Wallet is succesvol toegevoegd: ', + SUCCESS_5: 'Je hebt succesvol gestemd. Fijn dat je een actief participerend DAO deelnemer bent.', + SUCCESS_6: 'Bestand Geselecteerd: ', + + /* Translation Info */ + translate_version: '0.3', + Translator_Desc: 'Veel dank voor onze vertalers: ', + TranslatorName_1: '[h3ll0fr13nd](https://www.myetherwallet.com/?gaslimit=21000&to=0xB5FbCE123F12347206c881cae73A3046BA1A90bA&value=1.0#send-transaction)', + TranslatorAddr_1: '0xB5FbCE123F12347206c881cae73A3046BA1A90bA', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Als je een wallet aanmaakt -of- repo hebt gedownload voor **31 december 2015**, check dan alsjebieft je wallets en download een nieuwe versie van de repo. Klik voor detais.', + HELP_Desc: 'Zie je dat er iets mist? Of heb je een andere vraag? [Neem contact met ons op](mailto:myetherwallet@gmail.com), en we zullen niet alleen je vraag beantwoorden, maar ook deze pagina updated zodat deze nog nuttiger wordt for the mensen in de toekomst!', + HELP_Remind_Title: 'Enkele herinneringen', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, en enkele onderliggende Javascript libraries waar we gebruik van maken zijn onderheving aan active ontwikkeling.** Hoewel we grondig testen & er inmiddels tienduizenden wallets succesvol zijn aangemaakt door mensen over de hele wereld, blijft er altijd een geringe kans dat iets er onverwachts optreedt waardoor je je ETH kunt verliezen. Investeer alsjeblieft niet meer dan dat je bereid bent om te verliezen, en wees voorzichtig. Zou er onverhoopt toch iets gebeuren vinden we dat zeer spijtig, echter **zullen wij nooit verantwoordelijk zijn voor de verloren Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX zijn geen "web wallets". Je maakt bij ons geen account aan noch geef je ooit je Ether aan ons in bezit. Alle gegevens verlaten nooit je computer/je browser. We helpen je alleen gemakkelijk toegang te verkrijgen tot de blockchain zodat je er informatie in kunt opslaan en kunt uitlezen.', + HELP_Remind_Desc_3: 'Als je je prive sleutel en wachtwoord niet opslaat, is er geen enkele manier om toegang tot je wallet te verkrijgen of het saldo dat er in zit. Maak back-up`s en bewaar deze op meerdere fysieke lokaties en dus niet alleen op je eigen computer!', + + HELP_0_Title: '0) Ik ben nieuw. Waar begin ik?', + HELP_0_Desc_1: 'MyEtherWallet geeft je de mogelijkheid om nieuwe wallets te genereren zodat je daarin je Ether kunt bewaren in plaat van op een exchange. Dit process vind volledig lokaal plaats, op je eigen computer en niet op onze servers. Daarom **ben je volledig zelf verantwoordelijk voor het veilig opslaan** van je via deze website aangemaakte wallets.', + HELP_0_Desc_2: 'Creer een nieuwe wallet.', + HELP_0_Desc_3: 'Maak een wallet back-up.', + HELP_0_Desc_4: 'Verrifieer dat je toegang hebt tot dit nieuwe wallet en dat je alle noodzakelijke informatie correct hebt opgeslagen.', + HELP_0_Desc_5: 'Verzend Ether naar dit nieuwe wallet.', + + HELP_1_Title: '1) Hoe creer ik een nieuw wallet ', + HELP_1_Desc_1: 'Ga naar de "Genereer Wallet" pagina.', + HELP_1_Desc_2: 'Ga naar de "Wallet Toevoegen" pagina & selecteer "Genereer Nieuw Wallet"', + HELP_1_Desc_3: 'Voer een sterk wachtwoord in. Als je denkt dat je het misschien gaat vergeten, bewaar het dan op een veilige plek. Je zult dit wachtwoord nodig hebben om transacties te versturen.', + HELP_1_Desc_4: 'klik "GENENEREER".', + HELP_1_Desc_5: 'Je wallet is nu gegenereerd.', + + HELP_2a_Title: '2a) Hoe bewaar/back-up ik mijn wallet?', + HELP_2a_Desc_1: 'Zorg altijd voor een goede back-up van je wallet op meerdere fysiek verschillende lokaties - bijvoorbeeld op een USB drive en/of op een vel papier.', + HELP_2a_Desc_2: 'Bewaar het adres. Je kunt het voor jezelf bewaren of met anderen delen. Op die manier kunnen anderen ether naar je versturen.', + HELP_2a_Desc_3: 'Bewaar versies van je prive sleutel. Deel deze niet met anderen. Je prive sleutel heb je nodig wanneer je toegang tot je ETH wilt om het te versturen! Er zijn drie soorten prive sleutels:', + HELP_2a_Desc_4: 'Plaats je adres, versies van je prive sleutel, en de PDF versie van je papieren wallet in een map. Bewaar deze op je computer en een USB drive.', + HELP_2a_Desc_5: 'Druk je wallet af als je een printer hebt. Zo niet, schrijf dan je prive sleutel en adres op een vel papier. Bewaar dit op een veilige lokatie, ergens anders dan je computer en de USB drive.', + HELP_2a_Desc_6: 'Houd in gedachte dat je moet voorkomen dan je je sleutels en wachtwoord kwijt raakt door een defect of verlies van je harde schijf, USB drive, of vel papier. Denk ook aan het fysieke verlies / schade van een complete ruimte (denk aan brand of overstroming).', + + HELP_2b_Title: '2b) Hoe doe ik veilig / offline / cold storage met MyEtherWallet?', + HELP_2b_Desc_1: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klik download zip in de rechterbovenhoek.', + HELP_2b_Desc_3: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_2b_Desc_4: 'Unzip het en dubbel-klik `index.html`.', + HELP_2b_Desc_5: 'Genereer een wallet met een sterk wachtwoord.', + HELP_2b_Desc_6: 'Bewaar het adres. Bewaar versies van de prive sleutel. Bewaar het wachtwoord als je het je niet voor altijd kunt herinneren.', + HELP_2b_Desc_7: 'Bewaar deze papieren / USB drives op verschillende fysiek verschillende lokaties.', + HELP_2b_Desc_8: 'Ga naar de "Bekijk Wallet Info" pagina en voer je prive sleutel / wachtwoord in om zeker te stellen dat ze correct zijn en dat je toegang hebt tot je wallet. Controleer dat het adres wat je opgeschreven hebt gelijk is.', + + HELP_3_Title: '3) Hoe verifieer ik dat ik toegang hebt tot mijn nieuwe wallets?', + HELP_3_Desc_1: 'Zorg **voordat je enige Ether naar je wallet verstuurd** dan je controleerd dat je er toegang toe hebt.', + HELP_3_Desc_2: 'Navigeer naar de "Bekijk Wallet Info" pagina.', + HELP_3_Desc_3: 'Navigeer naar de MyEtherWallet.com "Bekijk Wallet Info" pagina.', + HELP_3_Desc_4: 'Selecteer je wallet bestand -of- je prive sleutel en open je wallet.', + HELP_3_Desc_5: 'Als je wallet is versleuteld (encrypted) zal er een automatisch een extra invoerveld verschijnen. Voer je wachtwoord in.', + HELP_3_Desc_6: 'Klik op de "Ontsleutel je Wallet" knop.', + HELP_3_Desc_7: 'Informatie over je wallet zal verschijnen. Zoek je account adres, naast een kleurrijk, cirkelvormig icoon. Dit icoon is een visuele voorstelling van je address. Zorg ervoor dat je zeker weet dat dit adres het adres is wat je opgeslagen hebt in je tekst document en op je papieren wallet.', + HELP_3_Desc_8: 'Als je van plan bent om er een grote hoeveelheid ether op na te houden, raden we je aan om eerst een kleine hoeveelheid ether naar je nieuwe wallet te versturen voordat je er een grotere hoeveelheid ether naar stuurt. Stuur bijvoorbeeld 0.001 ether naar je nieuwe wallet, verkrijg vervolgens toegang tot dit wallet, stuur die zelfde 0.001 ether naar een ander adres, en controleer dat alles soepel verloopt.', + + HELP_4_Title: '4) Hoe stuur ik Ether van het ene wallet naar het ander?', + HELP_4_Desc_1: 'Als je van plan ben om een grote hoeveelheid ether te versturen/ontvangen, raden we je aan om eerst te testen met een klein bedrag om er zeker van te zijn dat alles gaat zoals je verwacht.', + HELP_4_Desc_2: 'Navigeer naar de "Verzend Ether" pagina.', + HELP_4_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontgrendel je wallet.', + HELP_4_Desc_4: 'Als je wallet gecodeerd (encrypted) is, zal er automatisch een extra invoer veld verschijnen. Voer je wachtwoord in.', + HELP_4_Desc_5: 'Klik op de "Ontsleutel Wallet" knop.', + HELP_4_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Verzend volledig saldo" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4_Desc_8: 'Opmerking: Sinds eind juni 2016 moet je ervoor zorgen dat je ETH/ETC is gesplitst voordat je ether verstuurd zoals je normaliter zou doen. Zie onderstaande vraag #6 voor meer informatie.', + HELP_4_Desc_9: 'Klik "Genereer Transactie".', + HELP_4_Desc_10: 'Enkele extra nieuwe invoer velden zullen verschijnen. Dit is jouw browser die de transactie genereert.', + HELP_4_Desc_11: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_4_Desc_12: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_4_Desc_13: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken. ', + + HELP_4CX_Title: '4) Hoe verzend ik Ether met MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Ten eerste heb je een wallet nodig. Zodra je die hebt, heb je 2 opties: De "VerzendSnel" functionalitiet vanuit het Chrome Extensie icoon of de "Verzend Ether" pagina.', + HELP_4CX_Desc_2: 'VerzendSnel:', + HELP_4CX_Desc_3: 'Klik op het Chrome Extensie icoon.', + HELP_4CX_Desc_4: 'Klik op de "VerzendSnel" knop.', + HELP_4CX_Desc_5: 'Selecteer het wallet waar vanuit je wilt verzenden.', + HELP_4CX_Desc_6: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_4CX_Desc_7: 'Voer het te verzenden bedrag in. Je kunt ook klikken op de "Transfer total available balance" link als je het totaal beschikbare saldo wilt overmaken.', + HELP_4CX_Desc_8: 'Klik "Verzend Transactie". ', + HELP_4CX_Desc_9: 'Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn.', + HELP_4CX_Desc_10: 'Voer het wachtwoord van je wallet in.', + HELP_4CX_Desc_11: 'Klik "Verzend Transactie."', + HELP_4CX_Desc_12: 'Maak gebruik van de "Verzend Ether" Pagina: ', + + HELP_5_Title: '5) Hoe voer ik MyEtherWallet.com offline/lokaal uit? ', + HELP_5_Desc_1: 'Je kunt MyEtherWallet.com uitvoeren op je eigen computer in plaats van op de GitHub servers. Je kunt een wallet volledig offline genereren en transacties versturen met behulp van de "Offline Transactie" pagina.', + HELP_5_Desc_2: 'Ga naar onze github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klik download zip in de rechterbovenhoek.', + HELP_5_Desc_4: 'Verplaats de zip naar een offline (airgapped) computer.', + HELP_5_Desc_5: 'Unzip het.', + HELP_5_Desc_6: 'Dubbel-klik `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com draait nu volledig op jouw computer.', + HELP_5_Desc_8: 'Voor het geval dat je er niet bekend mee bent: je hebt de volledige map nodig om de site lokaal te draaien, niet alleen het `index.html` bestand. Laat alle bestanden in de map met rust en ga ze niet verplaatsen. Als je een back-up wilt bewaren van de MyEtherWallet repo voor de toekomst, raden we je aan om alleen de ZIP te bewaren zodat je zeker weet dat de inhoud intact blijft.', + HELP_5_Desc_9: 'Gezien we MyEtherWallet.com continu updaten, raden we je aan om regelmatig je opgeslagen versie van de repo bij te werken.', + + HELP_5CX_Title: '5) Hoe installeer ik deze extensie vanuit de repo in plaats van de Chrome Store? ', + HELP_5CX_Desc_1: 'Ga naar onze github en zoek de meest actuele versie van de Chrome Extensie: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll helemaal naar beneden en klik met de rechter muisknop op de laatste versie. Klik "link opslaan als".', + HELP_5CX_Desc_3: 'Ga naar Google Chrome zoek je instellingen op (in het menu in de rechterbovenhoek).', + HELP_5CX_Desc_4: 'Klik "Extensies" aan de linkerkant.', + HELP_5CX_Desc_5: 'Vink de "Ontwikkelaarmodus" aan bovenaan op de pagina.', + HELP_5CX_Desc_6: 'Klik op de "Uitgepakte extensie laden..." knop.', + HELP_5CX_Desc_7: 'Navigeer naar de nu ge-unzipte map die je eerder hebt gedownload. Klik "selecteer".', + HELP_5CX_Desc_8: 'De extensie zou nu moeten verschijnen in je extensies en in je Chrome Extensie balk.', + + HELP_6_Title: '6) Hoe splits ik mijn ETH / ETC?', + HELP_6_Desc_1: 'Indien je op het moment dat de hard fork plaats vond ETH in je account had, heb je nu een even zo grote hoeveelheid ETC. Als je ETH heb verstuurd door gebruik te maken van een standaard transactie, verstuur je ook ETC. Om dit te voorkomen, dien je je originele account te splitsen ("split") in twee accounts. Bij nieuwe transacties moet je er zeker van zijn dat ETH enkel naar je ETH account gaan en ETC enkel naar je ETC account.', + HELP_6_Desc_2: 'Je kunt ook al je ETH & ETC met een standaard transactie versturen naar Kraken or Poloniex. Deze wisselkantoren zullen je ETH and ETC automatisch splitsen. Vervolgens kun je deze saldi naar nieuwe wallets sturen, of je ETC of ETH verkopen.', + HELP_6_Desc_3: '[Meer informatie met betrekking tot wallets en `reply attacks` is hier te vinden](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Genereer een nieuw `clean` post-fork ETH adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETH).', + HELP_6_Desc_5: 'Genereer een nieuw `clean` post-fork ETC adres voor jezelf (dit zal de uiteindelijke bestemming zijn van je pure ETC).', + HELP_6_Desc_6: 'Maak een back-up van deze wallets en verifieer dat je er toegang tot hebt. Zie #2a en #3 bovenstaand.', + HELP_6_Desc_7: 'Verstuur 0.1234 ETH naar je nieuwe "ETH" adres door gebruik te maken van de "Enkel ETH" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_8: 'Verstuur 0.5678 ETC naar je nieuwe "ETC" adres door gebruik te maken van de "Enkel ETC" optie op de "Verzend Ether" pagina.', + HELP_6_Desc_9: 'Controleer dat enkel de 0.1234 ETH zich heeft verplaatst op etherscan.io. Controleer dan enkel de 0.5678 ETC zich heeft verplaatst op gastracker.io.', + HELP_6_Desc_10: 'Verstuur een 0.0001 ETH transactie vanuit je nieuwe ETH wallet. Controleer deze op etherscan.io. Controleer dat de 0.0001 ETH zich heeft verplaatst.', + HELP_6_Desc_11: ' Genereer (maar verstuur niet) een 0.0002 ETC transactie vanuit je nieuwe ETC wallet. Kopier het "Gesigneerde Transactie" veld. ', + HELP_6_Desc_12: 'Ga naar [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) en plak deze ETC TX in classicetherwallet.com\'s offline tab helemaal beneden op de pagina en verstuur. Ga naar gastracker.io encontroleer dat de 0.0002 ETC zich verplaatst heeft.', + HELP_6_Desc_13: 'Als alles correct ontvangen en verstuurd is zit je goed.', + HELP_6_Desc_14: 'Verstuur het volledige resterende ETH saldo door gebruik te maken van de "Enkel ETH" optie en herhaal voor het ETC saldo met gebruik van de "Enkel ETC" optie.', + HELP_6_Desc_15: ' Vanaf nu kun je gebruik maken van de standaard transactie optie voor deze nieuwe accounts zonder het risico op `replay attacks`. ', + + HELP_7_Title: '7) Hoe verzend ik Tokens & voeg ik alternatieve tokens toe?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a goede manier om tokens te verkenen en de getallen omtrent het token op te zoeken.', + HELP_7_Desc_1: 'Navigeer naar de "Verzend Token" pagina.', + HELP_7_Desc_2: 'Ontsleutel je wallet.', + HELP_7_Desc_3: 'Voer het adres in waar naar je wilt versturen in het "Aan adres:" veld.', + HELP_7_Desc_4: 'Voer de te verzenden hoeveelheid in.', + HELP_7_Desc_5: 'Selecteer welk token je zou willen verzenden', + HELP_7_Desc_6: 'Als het token niet wordt vermeld:', + HELP_7_Desc_7: 'Klik op "Aangepast".', + HELP_7_Desc_8: 'Voer het adres, naam, en decimalen van het token in. Deze worden verschaft door de ontwikkelaars van het token en zijn tevens benodigd wanneer je een "Add a Watch Token" aan Mist toevoegd.', + HELP_7_Desc_9: 'Klik op "Opslaan".', + HELP_7_Desc_10: 'Je kunt nu dit token verzenden en tevens zul je het saldo kunnen zien in the zijbalk.', + HELP_7_Desc_11: 'Klik "Genereer Transactie".', + HELP_7_Desc_12: 'Enkele extra velden zullen verschijnen. Dit is je browser die de transactie genereert.', + HELP_7_Desc_13: 'Klik op de blauwe "Verzend Transactie" knop eronder.', + HELP_7_Desc_14: 'Een pop-up zal verschijnen. Controleer dat het bedrag en het adres waarnaar je gaat verzenden correct zijn. Klik vervolgens op de "Ja, ik weet het zeker! Maak de transactie." knop.', + HELP_7_Desc_15: 'De transactie zal worden verstuurt. Het TX ID zal worden weergegeven. Je kunt op dit TX ID klikken om het in de blockchain te bekijken.', + + HELP_8_Title: '8) Wat gebeurd er als deze website stopt?', + HELP_8_Desc_1: 'MyEtherWallet is geen web wallet. Je hoeft niet in te loggen en er zal nooit iets van je op onze servers worden bewaard. Onze website is enkel een interface om toegang te verkrijgen tot de blockchain.', + HELP_8_Desc_2: 'Als MyEtherWallet.com er mee stopt, zul je een andere manier moeten zien te vinden (zoals geth of Ethereum Wallet / Mist) om te doen wat wij doen. Maar wat je niet zult hoeven te doen is je Ether uit MyEtherWallet halen omdat het niet in MyEtherWallet zit. Je Ether zit in in welk wallet dan ook je op onze site hebt gegenereerd.', + HELP_8_Desc_3: 'Je kunt je onversleutelde (unencrypted) prive sleutel en je Geth/Mist Formaat (encrypted) bestanden heel gemakkelijk en direct in geth / Ethereum Wallet / Mist importeren. Zie onderstaande vraag #12.', + HELP_8_Desc_4: 'Daarnaast is de kans dat wij MyEtherWallet offline halen is miniem tot onmogelijk. Het kost ons vrijwel niets om de site in stand te houden omdat we geen informatie opslaan. Als we toch het domijn offline halen, is het ook altijd nog publiekelijk beschikbaar op [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Je kunt daar de ZIP downloaden en het lokaal draaien. ', + + HELP_8CX_Title: '8) Wat gebeurd er als MyEtherWallet CX verdwijnt?', + HELP_8CX_Desc_1: 'Ten eerste is alle je data op jouw computer opgeslagen, niet op onze servers. We snappen dat het verwarrend kan zijn, maar als je naar de Chrome Extensie kijkt, kijk je NIET naar dingen die ergens op onze servers staan opgeslagen - alles is bewaard op je eigen computer.', + HELP_8CX_Desc_2: 'Dat gezegd hebbende, is het dan ook **erg belangrijk** dat je een back-up maakt van je wallets die met MyEtherWallet CX zijn gegenereerd. Als er iets met MyEtherWallet CX of jouw computer gebeurd blijft op die manier je wallet bewaard, en heb alle noodzakelijke informatie bij de hand om toegang tot je Ether te verkrijgen. Zie vraag #2a om te leren hoe een back-up van je wallet kunt maken.', + HELP_8CX_Desc_3: 'Als om wat voor reden dan ook MyEtherWallet CX verdwijnt van de Chrome Store, kunt je het altijd nog handmatig laden met de broncode van Github. Zie #5 hierboven.', + + HELP_9_Title: '9) Is de "Verzend Ether" pagina offline?', + HELP_9_Desc_1: ' Nee, verstuur transactie pagina is niet offline. De pagina heeft een internet verbinding nodig voor het bepalen van de actuele gas prijs, nonce van je account, en het versturen (broadcasten) van de transactie. Echter, het enige wat verstuurd wordt is je ondertekende transactie. Je prive sleutel blijft veilig bij je. We hebben nu ook een "Offline Transactie" pagina zodat je ervoor kunt zorgen dat je prive sleutels ten alle tijden op een offline/airgapped computer blijven.', + + HELP_10_Title: '10) Hoe voer ik een offline transactie uit?', + HELP_10_Desc_1: 'Navigeer naar de "Offline Transactie" pagina met je online computer.', + HELP_10_Desc_2: 'Voer het "Van Adres" in. Let hierbij op dat dit het adres is waar VAN je zal gaan versturen; VAN, en niet AAN. Dit genereert de nonce en gas prijs.', + HELP_10_Desc_3: 'Ga vervolgens naar je offline computer. Voor het "AAN ADRES" en het te verzenden "BEDRAG" in.', + HELP_10_Desc_4: 'Voer de "GAS PRIJS" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_5: 'Voer de "NONCE" in zoals werd weergegeven op je online computer in stap #1.', + HELP_10_Desc_6: 'De "GAS LIMIET" heeft een standaard waarde van 21000. Dit zal een standaard transactie dekken. Indien je naar een contract verstuurd of als je extra data aan je transactie wilt toevoegen, zil je de gas limiet moeten verhogen. Al het teveel aan gas zal aan je geretourneerd worden.', + HELP_10_Desc_7: 'Als je dat wenst, kun je extra data invoeren. Als je extra data toevoegd, zul je meer dan de standaard 21000 gas limiet moeten instellen. Alle data is in HEX formaat.', + HELP_10_Desc_8: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet.', + HELP_10_Desc_9: 'Druk op de "GENEREREER ONDERTEKENDE TRANSACTIE" knop.', + HELP_10_Desc_10: 'Het data veld eronder zal worden ingevuld met je ondertekende transactie. Kopier dit veld en neem het mee terug naar je online computer. ', + HELP_10_Desc_11: 'Plak de ondertekende transactie op je online computer in het tekst veld van stap #3 em klik "Verzend Ether". Dit zal je transactie publiceren op de blockchain (broadcasten).', + + HELP_11_Title: '11) Hoe verstuur ik naar een contract?', + HELP_11_Desc_1: 'Versturen naar een contract vereist vaak dat je data, extra gas, of beide dient toe te voegen.', + HELP_11_Desc_2: 'Navigeer naar de "Verzend Ether" pagina. ', + HELP_11_Desc_3: 'Selecteer je wallet bestand -of- je prive sleutel en ontsleutel je wallet. ', + HELP_11_Desc_4: 'Voer een "Aan Adres" en een "Te Verzenden Bedrag" in.', + HELP_11_Desc_5: 'Klik op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Er verschijnen nu twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhoren bovenop de standaard 21000, of om extra data aan je transactie toe te voegen.', + + HELP_12_Title: '12) Hoe importeer ik een MyEtherWallet wallet in geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Door gebruik te maken van een Geth/Mist JSON bestand van MyEtherWallet v2+....', + HELP_12_Desc_2: 'Ga naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_3: 'Ontsleutel je wallet met je **versleutelde** prive sleutel of JSON bestand. ', + HELP_12_Desc_4: 'Ga naar de "Mijn Wallets" pagina.', + HELP_12_Desc_5: 'Selecteer het wallet dat je wilt importeren in Mist, klik op het "Bekijken" icoon, voer je wachtwoord in, en verkrijg toegang tot je wallet. ', + HELP_12_Desc_6: 'Zoek naar de "Download JSON bestand - Geth/Mist Formaat (encrypted)" sectie. Druk op de "Download" knop eronder. Je hebt nu je keystore bestand.', + HELP_12_Desc_7: 'Open de Ethereum Wallet applicatie. ', + HELP_12_Desc_8: 'In de menu balk, ga naar "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Hiermee open je de keystore map. Kopier het bestand wat je zojuist hebt gedownload (`UTC--2016-04-14......../`) naar deze keystore map.', + HELP_12_Desc_10: 'Je account zou nu direct moeten verschijnen onder "Accounts."', + HELP_12_Desc_11: 'Door gebruik te maken van je onversleutelde prive sleutel...', + HELP_12_Desc_12: 'Indien je nog geen unversleutelde (unencrypted) prive sleutel van je wallet hebt, navigeer je naar de "Bekijk Wallet Info" pagina.', + HELP_12_Desc_13: 'Selecteer je wallet bestand -of- voer je prive sleutel in om je wallet te ontsleutelen.', + HELP_12_Desc_14: 'Kopier je prive sleutel (onversleuteld/unencrypted).', + HELP_12_Desc_15: 'Als je op een Mac werkt:', + HELP_12_Desc_15b: 'Als je op een PC werkt:', + HELP_12_Desc_16: 'Open Tekst Editor en plak deze prive sleutel.', + HELP_12_Desc_17: 'Ga naar de menu balk en klik "Formaat" -> "Maak Platte Tekst".', + HELP_12_Desc_18: 'Sla dit bestand op op je bureaublad als `niets_bijzonders_verwijder_mij.txt`. Controleer dat de opties "UTF-8" en "If no extension is provided use .txt" gekozen zijn in het dialog.', + HELP_12_Desc_19: 'Open terminal en voer het volgende commando uit: `geth account import ~/Desktop/niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_20: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_21: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_22: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts".', + HELP_12_Desc_23: 'Open Kladblok (Notepad) & plak de prive seutel', + HELP_12_Desc_24: 'Sla het bestand op als `niets_bijzonders_verwijder_mij.txt` in `C:`', + HELP_12_Desc_25: 'Open de command prompt en voer het volgende commando uit: `geth account import C:\\niets_bijzonders_verwijder_mij.txt`', + HELP_12_Desc_26: 'Je zal gevraagd worden om een nieuw wachtwoord. Dit is het wachtwoord wat je zult gebruiken in geth / Ethereum Wallet / Mist elke keer als je een transactie verzend, dus zorg dat je dit niet vergeet. ', + HELP_12_Desc_27: 'Verwijder het bestand `niets_bijzonders_verwijder_mij.txt` na een geslaagde import.', + HELP_12_Desc_28: 'De volgende keer dat je de Ethereum Wallet applicatie opent, zal je account worden vermeld onder "Accounts". ', + + HELP_13_Title: '13) Wat betekend "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Meestal betekend dit dat je probeerd om Ether naar een contract te verzenden. Naar een contract verzenden vereist iets meer data en dus ook iets meer gas. Op de "Verzend Ether" pagina kun je klikken op de "+Geavanceerd: Voeg meer Gas of Data toe" knop onder het bedrag veld. Hiermee verschijnen er twee extra velden die je kunt gebruiken om de hoeveelheid gas te verhogen boven de standaard 21000, of om data aan je transactie toe te voegen.', + + HELP_14_Title: '14) Sommige sites zorgen voor een willekeurigheid (seed) bij het genereren van de prive sleutel via muis bewegingen. MyEtherWallet.com doet dit niet. Is de wikkeleurigheid (random number generation) van MyEtherWallet wel veilig?', + HELP_14_Desc_1: 'Hoewel het bewegen van de muis een slimme truck is en we begrijpen waarom mensen dit een goed idee vinden, is de werkelijkheid dat "window.crypto" een grotere willekeurigheid (hogere entropie) zeker stelt dan je muisbewegingen. De muisbewegingen zijn niet onveilig, echter wij (en enorm veel andere crypto experimenten) geloven in "window.crypto". Bovendien kan MyEtherWallet.com gebruikt worden op touchscreen apparaten. Hier vind je een [conversatie tussen een boze redditor en Vitalik Buterin over de muisbewegingen v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hoe komt het dat het wallet wat ik zojuist heb aangemaakt niet in de blockchain explorer terug te vinden is? (bijvoorbeeld: etherchain, etherscan)', + HELP_15_Desc_1: 'Adresen zullen enkel in een blockchain explorer worden weergegeven zodra er activiteit op een account heeft plaats gevonden. Bijvoorbeeld, zodra je er wat Ether naar toe verzonden hebt.', + + HELP_16_Title: '16) Hoe check ik het saldo van mijn account? ', + HELP_16_Desc_1: 'Je kunt hiervoor een blockchain explorer gebruiken zoals bijvoorbeeld [etherscan.io](http://etherscan.io/). Plak daar je adres in de zoekbalk en je adres en transactie geschiedenis zullen worden getoond. Bekijk bijvoobeeld hoe ons [donatie account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) eruit ziet op etherscan.io', + + HELP_17_Title: '17) Waarom wordt mijn saldo niet weergegeven nadat ik mijn wallet heb ontsleuteld? ', + HELP_17_Desc_1: ' Dit wordt zeer waarschijnlijk veroorzaakt door het feit dat je achter een firwall zit. De API waarvan we gebruik maken om je saldo op te halen en te converteren wordt vaak geblokkeerd door firewalls om wat voor reden dan ook. Het is nog steeds mogelijk om transacties te verzenden, je hebt enkel een andere methode nodig om je saldo the checken, zoals bijvoorbeeld etherscan.io', + + HELP_18_Title: '18) Waar is mijn geth wallet bestand?', + + HELP_19_Title: '19) Waar is mijn Mist wallet bestand? ', + HELP_19_Desc_1: 'Mist bestanden zijn normaliter te vinden op de bovenstaande bestandslocaties, maar het volgende is veel makkelijker: open Mist, selecteer "Accounts" in de top balk, selecteer "Backup", en selecteer "Accounts". Hiermee open je de map waar je bestanden worden bewaard.', + + HELP_20_Title: '20) Waar is mijn pre-sale wallet bestand?', + HELP_20_Desc_1: 'Waat jij het opgeslagen hebt. ;) Het was ook naar je gemailed, dus kijk ook daar. Zoek naar het bestand genaamd "ethereum_wallet_backup.json" en selecteer dit bestand. Dit wallet bestand zal versleuteld (encrypted) zijn met een wachtwoord dat je aangemaakt hebt tijdens de aankoop van de pre-sale.', + + HELP_21_Title: '21) Kan iedereen niet simpelweg willekeurige prive sleutels invoeren, zoeken naar een saldo, dit naar hun eigen adres versturen? ', + HELP_21_Desc_1: 'De korte versie: ja, echter het vinden van een account met saldo gaat je langer duren dan het universum...dus...nee.', + HELP_21_Desc_2: 'De lange ELI5 versie: Ethereum is gebasserd op [Publieke Sleutel Cryptografie](https://en.wikipedia.org/wiki/Public-key_cryptography), en meer specifiek op [Elliptische curve cryptografie](https://eprint.iacr.org/2013/734.pdf) wat op grote schaal gebruikt wordt, niet alleen in Ethereum. De meeste van onze servers zijn beveiligd via ECC. Bitcoin maakt hier ook gebruik van, net als SSH, TLS en vele andere dingen. De specifieke Ethereum sleutels zijn 256-bit sleutels, welke sterker zijn dan 128-bit en 192-bit, terwijl die ook op grote schaal gebruikt worden en no steeds als veilig worden beschouwd door experts.', + HELP_21_Desc_3: 'Hierbij heb je een prive sleutel en een publieke sleutel. Vanuit de prive sleutel kan de publieke sleutel afgeleid worden, maar de publieke sleutel kan niet terug omgezet worden in de prive sleutel. Het feit dat het internet en ’s werelds geheimen gebruik maken van deze cryptografie betekend dat indien er een manier is om van publieke sleutel naar prive sleutel te gaan, dat jouw verloren ether wel het minste van een ieders probleem is.', + HELP_21_Desc_4: 'Nu we dat duidelijk hebben: JA, als iemand anders je prive sleutel heeft kunnen ze inderdaad ether vanuit jouw account versturen. Net zoals dat iemand die je wachtwoord van je email heeft, je email kan lezen en sturen, of met het wachtwoord van je bank rekening geld kunnen overmaken. Je zou de Keystore versie van je prive sleutel kunnen downloaden, dat is je prive sleutel die is versleuteld (encrypted) met een wachtwoord. Dit is alsof je een wachtwoord hebt want je vervolgens nog eens beveiligd met een ander wachtwoord.', + HELP_21_Desc_5: 'En JA, in theorie zou je een serie van 64 hexadecimale karakters kunnen intypen tot je er een hebt die matched. Sterker nog, een slim persoon zou een programma kunnen schrijven om heel snel willekeurige prive sleutels te controleren. Dit wordt ook wel "brute-forcing" van prive sleutels genoemd. Mensen hebben hier lang en goed over nagedacht. Met enkele krachtige servers zouden ze misschien wel zo’n miljoen sleutels per seconde kunnen controleren. Echter, zelfs wanneer er zoveel sleutels per seconde gecontroleed kunnen worden zou de opbrengst ervan niet eens in de buurt komen bij de kosten om de servers te onderhouden - het is waarschijnlijker dat jij, en je achterkleinkinderen, zijn overleden voordat je een match vind.', + HELP_21_Desc_6: 'Als je Bitcoin een beetje kent, [biedt dit een aardig perspectief:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[Als je het iets technischer wilt:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Uiteraard gaat bovenstaande er vanuit dat de sleutels worden gegenereerd met een volledige willekeur & met afdoende entropie. De sleutels die hier gegenreerd worden voldoen aan dat criterium, net als Jaxx en Mist/geth. De Ethereum wallets zijn allemaal best goed. Sleutels gegenereerd door "brainwallets" doen dit niet, omdat een het brein van een persoon niet capabel is om een werkelijk willekeurige "seed" te maken. Er zijn een heel aantal kwesties geweest met betrekking tot het gebrek entropie en "seeds" die niet in een volledig willekeurige manier waren gemaakt in Bitcoin-land, maar dat is een ander verhaal en kan wachten tot een andere keer.', + + HELP_SecCX_Title: 'Beveiliging - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Waar bewaard deze extentie mijn informatie?', + HELP_SecCX_Desc_2: 'De informatie die je bewaard in deze Chrome Extensie wordt opgeslagen via [chrome.storage](http://chrome.storage/). - dit is dezelfde plek als waar je wachtwoorden staan opgeslagen als je je wachtwoorden bewaard in Chrome.', + HELP_SecCX_Desc_3: 'Welke informatie wordt bewaard? ', + HELP_SecCX_Desc_4: 'Het adres, nickname en prive sleutel worden bewaard in chrome.storage. De prive sleutel is versleuteld (encrypted) met het wachtwoord wat je hebt ingesteld toen je je wallet hebt toegevoegd. De nickname en het wallet adres zijn niet versleuteld.', + HELP_SecCX_Desc_5: 'Waarom zijn de nickname en adres niet versleuteld? ', + HELP_SecCX_Desc_6: 'Als we deze items zouden versleutelen, zou je iedere keer dat je je saldo of nicknames wilt checken je wachtwoord moeten invoeren. Als je je hierover zorgen maakt, raden we je aan om gebruik te maken van MyEtherWallet.com in plaats van deze Chrome Extensie.', + + HELP_Sec_Title: 'Beveiliging', + HELP_Sec_Desc_1: 'Als een van je eerste vragen is: "Waarom zou ik deze mensen moeten vertrouwen?", dan is dat alleen maar goed. Hopelijk zal het volgende je angst verminderen. ', + HELP_Sec_Desc_2: 'We zijn up en running sinds augustus 2015. Als je zoekt naar ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), zul je tal van mensen vinden die ons met groot succes gebruiken.', + HELP_Sec_Desc_3: 'We gaan je niet je geld afnemen of je prive sleutel(s) stelen. Onze website bevat geen kwaadaardige code. Sterker nog, de "GENEREER WALLET" paginas zijn volledig client-side. Dit betekend dat alle code wordt uitgevoerd op ** jouw computer** en dat het buiten jouw computer niets bewaard of verstuurd.', + HELP_Sec_Desc_4: 'Controleer de URL -- Deze website draait vanaf GitHub en je kunt de bron code hier vinden: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) naar de domein namen: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) en [https://www.myetherwallet.com](https://www.myetherwallet.com). Je kunt verifieren dat het vanaf GitHub draait door gebruikt te maken van [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de laatste twee A record IPs zijn in eigendom van GitHub voor hun custom domein hosting.', + HELP_Sec_Desc_5: 'Om wallets te genereren, kun je ook de [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages) downloaden. Zie #5 hierboven.', + HELP_Sec_Desc_6: 'Doe een test ronde en controleer wat voor netwerk activiteit er plaats vind. De makkelijkste manier om dit te doen is door met de rechtermuisknop op de pagina de klikken en te kiezen voor "inspecteer element". Ga naar het "Netwerk" tab. Genereer een test wallet. Je zult zien dat er geen netwerk activiteit is. Je zou kunnen zien dat er iets gebeurd wat er als volgt uitziet: data:image/gif and data:image/png. Dit zijn de QR codes die worden gegenereerd...op jouw computer...door jouw computer. Er werden geen bytes overgedragen.', + HELP_Sec_Desc_7: 'Ga vervolgens, voor de zekerheid, naar de "Resources" pagina. Hier vind je alle verschillende elementen waaruit de website is opgebouwd. Als je door de items Local Storage, Cookies en Cache klikt zul je zien dat er niets wordt opgeslagen. Er wordt niets opgeslagen. Ververs de pagina en je bent terug waar je begon.', + HELP_Sec_Desc_8: 'Als je je niet pettig voelt bij het gebruikt van deze tool, gebruik hem dan vooral niet. We hebben deze tool voor mensen gemaakt als een handige manier om wallets te genereren en transacties te maken zonder dat je in de command prompt hoeft te duiken of een "full node" moet draaien. Nogmaals, voel je vrij om contact met ons op te nemen als je je zorgen maakt en we zullen zo snel mogelijk reageren. Bedankt! ', + + HELP_FAQ_Title: 'Meer hulpzame antwoorden op veel voorkomende vragen', + HELP_Contact_Title: 'Manieren om in contact te komen' +}; + +module.exports = nl; },{}],52:[function(require,module,exports){ -// Polish -'use strict'; -var pl = function() {} -pl.code = 'pl'; -pl.data = { - - /* Navigation*/ - NAV_YourWallets: 'Twoje Portfele', - NAV_AddWallet: 'Dodaj Portfel', - NAV_GenerateWallet: 'Wygeneruj Portfel', - NAV_BulkGenerate: 'Generuj Hurtowo', - NAV_SendEther: 'Wyślij Ether', - NAV_SendTokens: 'Wyślij Tokeny', - NAV_Offline: 'Wyślij Offline', - NAV_WithdrawDAO: 'Wypłać DAO', - DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', - NAV_ClaimDGD: 'Odbierz DGD', - DGD_TitleLong: 'Odbierz swoje Tokeny DGD', - NAV_MyWallets: 'Moje Portfele', - NAV_ViewWallet: 'Wyświetl informacje o portfelu', - NAV_Help: 'Pomoc', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Hasło', - x_Download: 'Pobierz', - x_Address: 'Twój Adres', - x_Save: 'Zapisz', - x_Cancel: 'Anuluj', - x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', - x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', - x_PrivKey2: 'Klucz Prywatny', - x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', - x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', - x_Keystore2: 'Plik Keystore/JSON', - x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', - x_Json: 'Plik JSON (nieszyfrowany)', - x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', - x_PrintShort: 'Drukuj', - x_Print: 'Drukuj Portfel Papierowy', - x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', - x_CSV: 'Plik CSV (nieszyfrowany)', - x_TXT: 'Plik TXT (nieszyfrowany)', - x_Wallet: 'Portfel', - - /* Header */ - MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', - CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', - MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', - CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', - - /* Footer */ - FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', - FOOTER_1b: 'Twórcy:', - FOOTER_2: 'Darowizny:', - FOOTER_3: 'Generowanie portfeli po stronie klienta przez', - FOOTER_4: 'Wyłączenie odpowiedzialności', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacje o Koncie: ', - sidebar_AccountAddr: 'Adres Konta: ', - sidebar_AccountBal: 'Stan Konta: ', - sidebar_TokenBal: 'Stan Tokenów: ', - sidebar_Equiv: 'Ekwiwalent: ', - sidebar_TransHistory: 'Historia Transakcji: ', - sidebar_DGDBal: 'Informacje o sprzedaży DGD:', - sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', - sidebar_donate: 'Prześlij darowiznę', - sidebar_thanks: 'DZIĘKUJEMY!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', - decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', - decrypt_Select: 'Wybierz Portfel:', - - /* Add Wallet */ - ADD_Label_1: 'Co chciałbyś zrobić?', - ADD_Radio_1: 'Generuj Nowy Portfel', - ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', - ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', - ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', - ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', - ADD_Radio_4: 'Dodaj Konto do Obserwacji', - ADD_Label_2: 'Utwórz Nazwę Użytkownika:', - ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', - ADD_Label_4: 'Dodaj Konto do Obserwacji', - ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', - ADD_Label_5: 'Wpisz Adres: ', - ADD_Label_6: 'Odblokuj Portfel', - ADD_Label_6_short: 'Odblokuj', - ADD_Label_7: 'Dodaj konto', - - /* Generate Wallets */ - GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', - GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', - GEN_Placeholder_1: 'NIE zapomnij tego hasła!', - GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', - GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', - GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', - GEN_Label_3: 'Zapisz swój adres.', - GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Ilość Portfeli do Wygenerowania', - BULK_Label_2: 'Generuj Portfele', - BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Do Adresu: ', - SEND_amount: 'Kwota do Wysłania: ', - SEND_amount_short: 'Kwota', - SEND_custom: 'Inny', - SEND_gas: 'Paliwo', - SEND_TransferTotal: 'Wyślij wszystkie środki', - SEND_generate: 'Wygeneruj Transakcję', - SEND_raw: 'Surowa Transakcja', - SEND_signed: 'Podpisana Transakcja', - SEND_trans: 'Wyślij Transakcję', - SENDModal_Title: 'Ostrzeżenie! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Wysyłasz', - SENDModal_Content_2: 'do adresu', - SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', - SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', - SENDModal_No: 'Nie, zabierz mnie stąd!', - SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Symbol Tokenu: ', - TOKEN_Dec: 'Miejsc po przecinku: ', - - /* Send Transaction */ - TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', - TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', - TRANS_standard: 'ETH (Standardowa Transakcja)', - TRANS_eth: 'Tylko ETH', - TRANS_etc: 'Tylko ETC', - TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', - TRANS_data: ' Dane: ', - TRANS_gas: ' Paliwo: ', - TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', - TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', - TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', - TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', - TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', - TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', - TRANSModal_Yes: 'Super, już rozumiem.', - TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', - OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', - OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', - OFFLINE_Step1_Button: 'Wygeneruj Informacje', - OFFLINE_Step1_Label_1: 'Od Adresu: ', - OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', - OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', - OFFLINE_Step2_Label_1: 'Do Adresu: ', - OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', - OFFLINE_Step2_Label_3: 'Cena Paliwa ', - OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_4: 'Limit Paliwa ', - OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', - OFFLINE_Step2_Label_5: 'Wyróżnik', - OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', - OFFLINE_Step2_Label_6: 'Dane', - OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', - OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', - OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', - OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', - - /* DAO */ - DAO_bal1: 'w bloku 1,919,999', - DAO_bal2: 'aktualny', - DAO_TitleETH: 'Wypłać DAO do ETH', - DAO_TitleETC: 'Wypłać DAO do ETC', - DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', - DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', - DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', - DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', - DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', - DAOModal_Title: 'Tylko się upewniam...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Zamierzasz wypłacić', - DAOModal_2: 'DAO tokenów do', - DAOModal_3: 'za', // "w zamian za" - - /* Digix */ - DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', - DGD_Label_1: 'Szacunkowa Opłata:', - DGD_Label_2: 'Zapewniona Maksymalna Opłata:', - DGD_Label_3: 'Cena Paliwa:', - DGD_Generate: 'Wygeneruj Żądanie', - DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', - - /* Deploy Contracts */ - NAV_DeployContract: 'Wyślij Kontrakt', - DEP_generate: 'Wygeneruj Kod Bajtowy', - DEP_generated: 'Wygenerowany Kod Bajtowy', - DEP_signtx: 'Podpisz Transakcję', - DEP_interface: 'Wygeneruj Interfejs', - - /* My Wallet */ - MYWAL_Nick: 'Nazwa Portfela', - MYWAL_Address: 'Adres Portfela', - MYWAL_Bal: 'Środki', - MYWAL_Edit: 'Edytuj', - MYWAL_View: 'Podgląd', - MYWAL_Remove: 'Usuń', - MYWAL_RemoveWal: 'Usuń Portfel:', - MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', - MYWAL_Viewing: 'Podgląd Portfela: ', - MYWAL_Hide: 'Ukryj Dane Portfela', - MYWAL_Edit_2: 'Edytuj Portfel: ', - MYWAL_Name: 'Nazwa Portfela', - MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', - MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', - MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', - VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', - - /* Chrome Extension */ - CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Wyślij', - - /* Error Messages */ - ERROR_1: 'Wprowadź prawidłową kwotę.', - ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', - ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', - ERROR_4: 'To nie jest prawidłowy plik portfela. ', - ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', - ERROR_6: 'Błędny adres. ', - ERROR_7: 'Błędne hasło. ', - ERROR_8: 'Błędna wartość. ', - ERROR_9: 'Błędny limit paliwa. ', - ERROR_10: 'Błędne dane. ', - ERROR_11: 'Błędna ilość paliwa. ', - ERROR_12: 'Błędny wyróżnik. ', - ERROR_13: 'Błąd podpisu transakcji. ', - ERROR_14: 'Portfel z tą nazwą już istnieje. ', - ERROR_15: 'Nie znaleziono portfela. ', - ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', - ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', - ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', - ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', - ERROR_20: 'Nieprawidłowy symbol', - SUCCESS_1: 'Prawidłowy adres', - SUCCESS_2: 'Portfel został odszyfrowany', - SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', - SUCCESS_4: 'Twój portfel został dodany: ', - SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', - SUCCESS_6: 'Wybrany plik: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Nieprawidłowy nadawca', - GETH_Nonce: 'Wyróżnik transakcji za niski', - GETH_Cheap: 'Cena paliwa poniżej akceptacji', - GETH_Balance: 'Niewystarczająca ilość środków na koncie', - GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', - GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', - GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', - GETH_GasLimit: 'Przekroczono limit paliwa na blok', - GETH_NegativeValue: 'Ujemna wartość', - - /* Tranlsation Info */ - translate_version: '3.0 (0.3)', - Translator_Desc: 'Podziękowania tłumaczom: ', - TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', - TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: '', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: '', - TranslatorAddr_3: '', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: '', - TranslatorAddr_4: '', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: '', - TranslatorAddr_5: '', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', - HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', - HELP_Remind_Title: 'W ramach uściślenia', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', - HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', - - HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', - HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', - HELP_0_Desc_2: 'Wygeneruj nowy portfel.', - HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', - HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', - HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', - - HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', - HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', - HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', - HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', - HELP_1_Desc_4: 'Kliknij "GENERUJ".', - HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', - - HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', - HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', - HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', - HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', - HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', - HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', - HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', - - HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', - HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', - HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', - HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', - HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', - HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', - HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', - - HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', - HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', - HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', - HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', - HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', - - HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', - HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', - HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', - HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', - HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', - HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', - HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', - HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', - HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', - HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', - HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', - HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', - HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', - - HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', - HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', - HELP_4CX_Desc_2: 'Wyślij:', - HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', - HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', - HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', - HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', - HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', - HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', - HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', - HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', - HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', - HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', - - HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', - HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', - HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', - HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', - HELP_5_Desc_5: 'Rozpakuj paczkę.', - HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', - HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', - HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', - - HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', - HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', - HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', - HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', - HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', - HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', - HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', - HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', - - HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', - HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', - HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', - HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', - HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', - HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', - HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', - HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', - HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', - HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', - HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', - HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', - HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', - HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', - HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', - - HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', - HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', - HELP_7_Desc_2: 'Odblokuj portfel.', - HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', - HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', - HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', - HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', - HELP_7_Desc_7: 'Kliknij "Inny".', - HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', - HELP_7_Desc_9: 'Kliknij "Zapisz".', - HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', - HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', - HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', - HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', - HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', - HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', - - HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', - HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', - HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', - HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', - HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', - - HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', - HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', - HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', - HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', - - HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', - HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', - - HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', - HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', - HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', - HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', - HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', - HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', - HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', - HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', - HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', - HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', - HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', - - HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', - HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', - HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', - HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', - HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', - HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', - HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', - HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', - HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', - HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', - HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', - HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', - HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', - HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', - HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', - HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', - HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', - HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', - HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', - HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', - HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt/`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', - HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt/`', - HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', - HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', - HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', - HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', - HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', - HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', - - HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', - HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', - - HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', - HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', - HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', - - HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', - HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', - - HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', - HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', - - HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', - - HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', - HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', - - HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', - HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', - - HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', - HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', - HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', - HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', - HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', - HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', - HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', - HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', - HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', - - HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', - HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', - HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', - HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', - HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', - HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', - - HELP_Sec_Title: 'Bezpieczeństwo', - HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', - HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', - HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', - HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', - HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', - HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', - HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', - HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', - - HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', - HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' -}; - -module.exports = pl; +// Norwegian +'use strict'; +var no = function() {} +no.code = 'no'; +no.data = { + + /* Navigation*/ + NAV_YourWallets: 'Dine lommebøker', + NAV_AddWallet: 'Legg til lommebok', + NAV_GenerateWallet: 'Opprett lommebok', + NAV_BulkGenerate: 'Opprett flere lommebøker', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Token', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Ta ut DAO', + DAO_TitleLong: 'Løs inn dine DAO-token for ether (ETH)', + NAV_ClaimDGD: 'Gjør krav på DGD', + DGD_TitleLong: 'Gjør krav på dine DGD-token', + NAV_DeployContract: 'Utplasser kontrakt', + NAV_MyWallets: 'Mine lommebøker', + NAV_ViewWallet: 'Vis lommebok-info', + NAV_Help: 'Hjelp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Passord', + x_Download: 'Last ned', + x_Address: 'Din adresse', + x_Save: 'x_Save', + x_Cancel: 'x_Cancel', + x_AddessDesc: 'Du kjenner kanskje dette som ditt "kontonummer" eller din "offentlige nøkkel". Dette er informasjonen som du sender til folk så de kan sende deg ether (en lang rekke tilfeldige tall og bokstaver som starter med "0x"). Ikonet er en enkel måte å kjenne igjen adressen din på.', + x_PrivKey: 'Privat nøkkel (ukryptert)', + x_PrivKey2: 'Privat nøkkel', + x_PrivKeyDesc: 'Dette er den ukrypterte tekstversjonen av den private nøkkelen din, noe som betyr at det ikke er nødvendig med noe passord. Hvis noen skulle få tak i den ukrypterte private nøkkelen din, ville de få tilgang til lommeboken din uten å bruke passord. Derfor er krypterte nøkler vanligvis å anbefale.', + x_Keystore: 'Keystore/JSON-fil (Anbefalt · Kryptert · Mist/Geth-format)', + x_Keystore2: 'Keystore/JSON-fil', + x_KeystoreDesc: 'Denne Keystore/JSON-filen samsvarer med formatet som brukes av Mist & Geth, så du enkelt kan importere den i fremtiden. Det er den anbefalte filen å laste ned og sikkerhetskopiere.', + x_Json: 'JSON-fil (ukryptert)', + x_JsonDesc: 'Dette er det ukrypterte JSON-formatet av din private nøkkel. Dette betyr at du ikke trenger noe passord, men også at den som finner din JSON kan få tilgang til lommeboken din og etherne dine uten passord.', + x_PrintShort: 'Skriv ut', + x_Print: 'Skriv ut papirlommebok', + x_PrintDesc: 'Profftips: Klikk "skriv ut" og lagre som PDF, selv om du ikke har noen skriver!', + x_CSV: 'CSV-fil (ukryptert)', + x_TXT: 'TXT-fil (ukryptert)', + x_Wallet: 'Lommebok', + + /* Header */ + MEW_Warning_1: 'Sjekk alltid nettsideadressen før du bruker eller oppretter en lommebok. Pass opp for "phishing"-nettsider!', + CX_Warning_1: 'Sørg for at du har **eksterne sikkerhetskopier** av alle lommebøker som du lagrer her. Mye kan hende som vil kunne medføre at du mister informasjonen i denne Chrome-utvidelsen, inkludert avinstallasjon og reinstallasjon av utvidelsen. Denne utvidelsen gir deg enkel tilgang til lommebøkene dine, men er **ikke** en måte å sikkerhetskopiere dem på.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', /* Intentionally not translated */ + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', /* Intentionally not translated */ + + /* Footer */ + FOOTER_1: 'Et åpen-kildekode-, javascript-, klient-side-verktøy for å opprette Ethereum-lommebøker & sende transaksjoner.', + FOOTER_1b: 'Skapt av', + FOOTER_2: 'Donasjoner mottas med takk:', + FOOTER_3: 'Klient-side lommebok-oppretting av', + FOOTER_4: 'Ansvarsfraskrivelse', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformasjon: ', + sidebar_AccountAddr: 'Kontoadresse: ', + sidebar_AccountBal: 'Saldo på konto: ', + sidebar_TokenBal: 'Token-saldo: ', + sidebar_Equiv: 'Tilsvarende verdier: ', + sidebar_TransHistory: 'Transaksjonshistorikk: ', + sidebar_DGDBal: 'DGD Crowdsale informasjon:', + sidebar_donation: 'MyEtherWallet er en gratis åpen-kildekode-service som er dedikert til å ivareta ditt personvern og din sikkerhet. Jo flere donasjoner vi får, jo mer tid kan vi bruke til å lage nye funksjoner, lytte til tilbakemeldinger, og gi deg det du ønsker. Vi er bare to personer som prøver å forandre verden. Vil du hjelpe oss?', + sidebar_donate: 'Doner', + sidebar_thanks: 'TAKK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Hvordan ønsker du å få tilgang til lommeboken din?', + decrypt_Title: 'Velg formatet på din private nøkkel:', + decrypt_Select: 'Velg en lommebok:', + + /* Add Wallet */ + ADD_Label_1: 'Hva ønsker du å gjøre?', + ADD_Radio_1: 'Opprett ny lommebok', + ADD_Radio_2: 'Velg lommebok-filen din (Keystore / JSON)', + ADD_Radio_2_alt: 'Velg lommebok-fil: ', + ADD_Radio_2_short: 'VELG LOMMEBOK-FIL...', + ADD_Radio_3: 'Lim/skriv inn din private nøkkel', + ADD_Radio_4: 'Legg til en konto for overvåkning', + ADD_Label_2: 'Lag et kallenavn:', + ADD_Label_3: 'Filen din er kryptert. Vennligst oppgi passordet: ', + ADD_Label_4: 'Legg til en konto for overvåkning', + ADD_Warning_1: 'Du kan legge til hvilken som helst konto som du vil overvåke på lommebok-siden uten å laste opp en privat nøkkel. Dette betyr ** ikke ** at du har tilgang til denne lommeboken, eller at du kan overføre ether fra den.', + ADD_Label_5: 'Oppgi adressen: ', + ADD_Label_6: 'Lås opp lommeboen din', + ADD_Label_6_short: 'Lås opp', + ADD_Label_7: 'Legg til konto', + + /* Generate Wallets */ + GEN_desc: 'Hvis du vil opprette flere lommebøker, kan du gjøre det her: ', + GEN_Label_1: 'Oppgi et sterkt passord (minst 9 tegn)', + GEN_Placeholder_1: 'Glem IKKE å ta vare på dette!', + GEN_SuccessMsg: 'Suksess! Lommeboken din har blitt opprettet.', + GEN_Warning: '**Du trenger din Keystore/JSON-fil & passord eller din private nøkkel** for å få tilgang til denne lommeboken i framtiden. Vennligst lagre og sikkerhetskopier den eksternt! Det finnes ingen måte å gjenopprette en lommebok på hvis du ikke lagrer den. Les [hjelpesiden](https://www.myetherwallet.com/#help) for ytterligere instruksjoner (foreløpig kun på engelsk).', + GEN_Label_2: 'Lagre din Keystore/JSON og/eller private nøkkel. Ikke glem passordet ditt ovenfor.', + GEN_Label_3: 'Lagre adressen din.', + GEN_Label_4: 'Skriv ut din papir-lommebok, eller lagre en QR-kode-versjon. (valgfritt)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antall lommebøker som skal opprettes', + BULK_Label_2: 'Opprett lommebøker', + BULK_SuccessMsg: 'Suksess! Lommebøkene dine har blitt opprettet.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Til-adresse: ', + SEND_amount: 'Beløp som skal sendes: ', + SEND_amount_short: 'Beløp', + SEND_custom: 'Tilpasning', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Overfør total tilgjengelig saldo', // updated to read 'Send Entire Balance' + SEND_generate: 'Generer transaksjon', + SEND_raw: 'Rå-transaksjon', + SEND_signed: 'Signert transaksjon', + SEND_trans: 'Send transaksjon', + SENDModal_Title: 'Advarsel! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Du er i ferd med å sende', + SENDModal_Content_2: 'til adressen', + SENDModal_Content_3: 'Er du sikker på at du ønsker å gjøre dette?', + SENDModal_Content_4: 'NB: Hvis det oppstår en feil, må du sannsynligvis legge til ether til kontoen din for å dekke "gas"-kostnaden for å sende ether/token. "Gas" betales i ether.', + SENDModal_No: 'Nei, få meg ut herfra!', + SENDModal_Yes: 'Ja, jeg er sikker! Gjennomfør transaksjonen.', + + /* Tokens */ + TOKEN_Addr: 'Adresse: ', + TOKEN_Symbol: 'Token-symbol: ', + TOKEN_Dec: 'Desimaler: ', + + /* Send Transaction */ + TRANS_desc: 'Hvis du ønsker å sende token, vennligst bruk "Send Token"-siden i stedet.', + TRANS_warning: 'Hvis du bruker "Kun ETH"- eller "Kun ETC"-funksjonene, sender du via en kontrakt. Noen tjenester har problemer med å akseptere disse transaksjonene. Les mer.', + TRANS_standard: 'ETH (Standard transaksjon)', + TRANS_eth: 'Kun ETH', + TRANS_etc: 'Kun ETC', + TRANS_advanced: '+Avansert: Legg til mer "gas" eller data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'En standard transaksjon som bruker 21000 gas vil koste 0,000441 ETH. Vi bruker en litt-over-minimum gas-pris på 0,000000021 ETH for å sikre at transaksjonen blir raskt behandlet. Vi tar ikke noe transaksjonsgebyr.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Kun ETH"- og "Kun ETC"-transaksjoner', + TRANSModal_Content_0: 'En notis om forskjellige transaksjoner og tjenester:', + TRANSModal_Content_1: '**ETH (Standardtransaksjon): ** Dette Oppretter en standardtransaksjon direkte fra en adresse ti en annen. Den har standard gas på 21000. Det er sannsynlig at ETH som sendes med denne metoden også vil bli sendt som ETC på ETC-kjeden (hvis kontoen inneholder både ETH og ETC). Dette er anbefalt metode hvis kontoen kun inneholder ETH.', + TRANSModal_Content_2: '**Kun ETH: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETH**-kjeden. ', + TRANSModal_Content_3: '**Kun ETC: ** Dette sender via [Timon Rapp\'s replay-beskyttelseskontrakt (som anbefalt av VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) slik at du kun sender på **ETC**-kjeden. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Send kun via Standard transaksjon. Hvis du sender via "Kun"-kontraktene, vil du måtte ta kontakt med deres kundestøttepersonell for å manuelt legge til saldoen din eller få en tilbakebetaling. [Du kan også prøve Shapeshift sitt "splitte"-verktøy.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Ingen kjente problemer. Bruk det som passer.', + TRANSModal_Yes: 'Flott, jeg skjønner det nå.', + TRANSModal_No: 'Trøste og bære, nå er jeg bare enda mer forvirret. Hjelp meg.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generer & send offline transaksjon', + OFFLINE_Desc: 'Generering av offline-transaksjoner kan utføres i tre steg. Du utfører steg 1 og 3 på en internettilknyttet datamaskin, og steg 2 på en offline/frakoblet datamaskon. Dette sikrer at dine private nøkler ikke kommer i kontakt med en internettilknyttet enhet.', + OFFLLINE_Step1_Title: 'Steg 1: Generer informasjon (internettilknyttet datamaskin)', + OFFLINE_Step1_Button: 'Generer informasjon', + OFFLINE_Step1_Label_1: 'Fra-adresse: ', + OFFLINE_Step1_Label_2: 'NB: Dette er FRA-adressen, ikke TIL-adressen. "Nonce" genereres fra den opprinnelige kontoen. Hvis du bruker en frakoblet datamaskin, vil dette være adressen til "kald-lager"-kontoen (dvs. kontoen som lagres frakoblet internett).', + OFFLINE_Step2_Title: 'Steg 2: Generer transaksjon (frakoblet datamaskin)', + OFFLINE_Step2_Label_1: 'Til-adresse: ', + OFFLINE_Step2_Label_2: 'Verdi / Beløp å sende', + OFFLINE_Step2_Label_3: 'Gas-pris ', + OFFLINE_Step2_Label_3b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_4: 'Gas-grense ', + OFFLINE_Step2_Label_4b: '21000 er standard gas-grense. Når du sender kontrakter eller ekstra data, kan det hende at grensen må settes høyere. Eventuelt ubrukt gas blir returnert til deg.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Dette kom fram i steg 1 på den internettilknyttede maskinen.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'Dette er valgfritt. Data brukes ofte når du sender transaksjoner til kontrakter.', + OFFLINE_Step2_Label_7: 'Skriv inn / Velg din private nøkkel / JSON.', + OFFLINE_Step3_Title: 'Steg 3: Send / Publiser transaksjon (internettilknyttet datamaskin)', + OFFLINE_Step3_Label_1: 'Overfør (f.eks. via USB-minnepinne) den signerte transaksjonen fra steg 2 og lim den inn her. Trykk så "SEND TRANSAKSJON"-knappen.', + + /* DAO */ + DAO_bal1: 'ved blokk 1,919,999', + DAO_bal2: 'nåværende', + DAO_TitleETH: 'Veksle inn DAO mot ETH', + DAO_TitleETC: 'Veksle inn DAO mot ETC', + DAO_ETC_Label_1: 'Hvilken adresse ønsker du å sende dine ETC til?', + DAO_ETC_Label_2: '"White Hat Group" har jobbet utrettelig for å gi deg tilbake dine ETC. Du kan takke dem ved å donere en prosentandel av uttaket ditt, hvis du ønsker det. ', + DAO_Desc: 'Bruk denne siden til å veksle inn dine DAO-token for ETH. Hvis du ønsker å sende DAO-token, vennligst bruk "Send Token"-siden.', + DAO_Inst: 'Ja. Bare trykk på den store røde knappen. Det er så enkelt som det.', + DAO_Warning: 'Hvis du får en "Insufficient balance for gas"-feilmelding, må du ha en liten mengde ether på kontoen for å dekke gas-kostnadene. Overfør 0,001 ether til denne kontoen og prøv igjen. ', + DAOModal_Title: 'Bare for å være sikker...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + // note: this may be a bit rough in Norwegian. + DAOModal_1: 'Du er i ferd med å veksle inn ', + DAOModal_2: 'DAO-tokens til ', + DAOModal_3: 'i bytte mot', + + /* Digix */ + DGD_Desc: 'Krev inn dine DigixDAO (DGD)-tokens & badges. For å gjøre dette, må du ha deltatt i token-salget 30-31. mars 2016. Hvis du ønsker å sende DGD, vennligst bruk "Send Token"-siden.', + DGD_Label_1: 'Estimert avgiftsforbruk:', + DGD_Label_2: 'Oppgitt maksimal avgift:', + DGD_Label_3: 'Gas-pris:', + DGD_Generate: 'Opprett krav', + DGD_Content: 'Du er i ferd med å kreve inn dine DGD-token.', + + /* Deploy Contracts */ + DEP_generate: 'Generer Bytecode', + DEP_generated: 'Generert Bytecode', + DEP_signtx: 'Signer transaksjon', + DEP_interface: 'Generer grensesnitt', + + /* My Wallet */ + MYWAL_Nick: 'Lommebok-kallenavn', + MYWAL_Address: 'Lommebok-adresse', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Rediger', + MYWAL_View: 'Se på', + MYWAL_Remove: 'Fjern', + MYWAL_RemoveWal: 'Fjern lommebok:', + MYWAL_WatchOnly: 'Dine "bare-se"-kontoer', + MYWAL_Viewing: 'Viser lommebok: ', + MYWAL_Hide: 'Skjul lommebok-info', + MYWAL_Edit_2: 'Rediger lommebok: ', + MYWAL_Name: 'Lommeboknavn', + MYWAL_Content_1: 'Advarsel! Du er i ferd med å fjerne lommeboken din: ', + MYWAL_Content_2: 'Vær sikker på at du har **lagret den private nøkkelen/JSON-filen og passordet** tilknyttet denne lommeboken før du fjerner den.', + MYWAL_Content_3: 'Hvis du ønsker å bruke denne lommeboken med din MyEtherWallet Chrome-utvidelse i fremtiden, må du manuelt legge den til igjen ved å bruke den private nøkkelen/JSON og passord.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. Du vil kanskje gjøre dette for å [importere kontoen din til Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Hvis du bare ønsker å sjekke saldoen din, anbefaler vi at du bruker en "blockchain explorer" som f.eks. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Dette gir deg muligheten til å laste ned ulike versjoner av private nøkler og skrive ut papirlommeboken din på nytt. ', + VIEWWALLET_SuccessMsg: 'Suksess! Her er detaljene om din lommebok.', + + /* Chrome Extension */ + CX_error_1: 'Du har ennå ikke lagret noen lommebok. Klikk ["Legg til lommebok"](/cx-wallet.html#add-wallet) for å legge til en!', + CX_quicksend: 'Send', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vennligst oppgi et gyldig beløp.', + ERROR_2: 'Passordet ditt må inneholde minst 9 tegn. Vennligst sørg for at det er et sterkt passord. ', + ERROR_3: 'Beklager! Vi kjenner ikke igjen denne typen lommebok-fil. ', + ERROR_4: 'Dette er ikke en gyldig lommebok-fil. ', + ERROR_5: 'Denne enheten eksisterer ikke, vennligst benytt en av de følgende enhetene ', + ERROR_6: 'Ugyldig adresse. ', + ERROR_7: 'Ugyldig passord. ', + ERROR_8: 'Ugyldig beløp. ', + ERROR_9: 'Ugyldig gas-grense. ', + ERROR_10: 'Ugyldig dataverdi. ', + ERROR_11: 'Ugyldig gas-mengde. ', + ERROR_12: 'Ugyldig nonce. ', + ERROR_13: 'Ugyldig signert transaksjon. ', + ERROR_14: 'En lommebok med dette kallenavnet eksisterer allerede. ', + ERROR_15: 'Lommebok ikke funnet. ', + ERROR_16: 'Det ser ikke ut til at et forslag med denne ID-en eksisterer ennå, eller det er en feil ved innlesning av dette forslaget. ', + ERROR_17: 'En lommebok med denne adressen er allerede lagret. Vennligst sjekk lommebok-siden din. ', + ERROR_18: 'Du trenger minst 0,001 ether på kontoen din for å dekke gas-kostnaden. Vennligst legg til litt ether og prøv igjen. ', + ERROR_19: 'All gas vil bli brukt på denne transaksjonen. Dette betyr at du allerede har stemt på dette forslaget, eller at debatt-perioden er over.', + ERROR_20: 'Ugyldig symbol', + SUCCESS_1: 'Gyldig adresse', + SUCCESS_2: 'Dekrypteringen av lommeboken var vellykket', + SUCCESS_3: 'Transaksjonen ble sendt inn. TX ID: ', + SUCCESS_4: 'Lommeboken din ble lagt til: ', + SUCCESS_5: 'Du har stemt. Takk for at du er en aktiv deltaker i "The DAO".', + SUCCESS_6: 'Valgt fil: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Feil på avsender', + GETH_Nonce: 'Nonce for liten', + GETH_Cheap: 'Gas-pris for lav til å kunne aksepteres', + GETH_Balance: 'Utilstrekkelig saldo', + GETH_NonExistentAccount: 'Kontoen eksisterer ikke eller saldoen er for lav', + GETH_InsufficientFunds: 'Utilstrekkelig med midler for gas * pris + verdi', + GETH_IntrinsicGas: 'Gas-egenverdi for lav', + GETH_GasLimit: 'Overskrider blokkens gas-grense', + GETH_NegativeValue: 'Negativ verdi', + + /* Tranlsation Info */ + translate_version: '0.4', + Translator_Desc: 'Takk til oversetterne våre: ', + TranslatorName_1: '[mrstormlars](https://www.myetherwallet.com/?gaslimit=21000&to=0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6Dd9530b2Cb8B2d7d9f7D5D898b6456EC5D94f08', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Hvis du opprettet en lommebok -eller- lastet ned repoet før **31. desember 2015**, vennligst sjekk lommebøkene dine & last ned en ny versjon av repoet. Klikk for detaljer.', + HELP_Desc: 'Ser du noe som mangler? Har du flere spørsmål? [Ta kontakt med oss](mailto:myetherwallet@gmail.com), så vil vi ikke bare besvare spørsmålet ditt, men vi vil også oppdatere denne siden så den blir mer nyttig i framtiden!', + HELP_Remind_Title: 'Noen påminnelser', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, og noen av de underliggende Javascript-bibliotekene vi benytter er under aktiv utvikling.** Selv om vi har testet grundig, og titusenvis av lommebøker har blitt opprettet uten feil av folk over hele kloden, så er det alltid en liten mulighet for at noe uventet kan skje som kan medføre at dine ETH kan tapes. Vennligst ikke invester mer enn du er villig til å tape, and vær så snill å være forsiktig. Hvis noe skulle skje, er vi lei oss for det, men **vi er ikke ansvarlige for eventuelt tapte etere**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX er ikke "web wallets" (internettlommebøker). Du oppretter ikke en konto eller gir oss dine ethere for oppbevaring hos oss. Alle data forblir på din PC / i din nettleser. Vi gjør det enkelt for deg å opprette, lagre og få tilgang til din informasjon og samhogle med blokkjeden.', + HELP_Remind_Desc_3: 'Hvis du ikke lagrer din private nøkkel & passord, finnes det ingen måte å gjenopprette din lommebok på, eller midlene den inneholder. Sikkerhetskopier dem på flere fysiske lokasjoner – ikke bare på datamaskinen din!', + + HELP_0_Title: '0) Jeg er nybegynner. Hva skal jeg gjøre?', + HELP_0_Desc_1: 'MyEtherWallet gir deg muligheten til å opprette nye lommebøker slik at du kan lagre etherne dine selv, i stedet for på en børs (hvor du kan kjøpe ether). Denne prosessen skjer helt og holdent på din datamaskin, ikke på våre servere. Derfor, når du oppretter en ny lommebok, **er du ansvarlig for å sikkerhetskopiere den på en forsvarlig måte**.', + HELP_0_Desc_2: 'Opprett en ny lommebok.', + HELP_0_Desc_3: 'Sikkerhetskopier lommebok.', + HELP_0_Desc_4: 'Verifiser at du har tilgang til denne nye lommeboken (f.eks. ved å overføre et ørlite beløp til og fra den nye lommeboken), og at all nødvendig informasjon er lagret og korrekt.', + HELP_0_Desc_5: 'Overfør ether til den nye lommeboken.', + + HELP_1_Title: '1) Hvordan oppretter jeg en ny lommebok? ', + HELP_1_Desc_1: 'Gå til "Opprett lommebok"-siden.', + HELP_1_Desc_2: 'Gå til "Legg til lommebok"-siden & velg "Opprett ny lommebok"', + HELP_1_Desc_3: 'Oppgi et sterkt passord. Hvis du ikke tror du klarer å huske det, skriv det opp på et sikkert sted. Du kommer til å trenge dette passordet for å sende transaksjoner.', + HELP_1_Desc_4: 'Klikk "OPPRETT".', + HELP_1_Desc_5: 'Din lommebok har nå blitt opprettet.', + + HELP_2a_Title: '2a) Hvordan lagrer/sikkerhetskopierer jeg lommeboken min?', + HELP_2a_Desc_1: 'Du bør alltid sikkerhetskopiere lommeboken din eksternt og på flere fysiske lokasjoner - som f.eks. på en USB-disk og/eller på et papirark.', + HELP_2a_Desc_2: 'Lagre adressen. Du kan holde den for deg selv eller dele den med andre. På den måten kan andre overføre ether til deg.', + HELP_2a_Desc_3: 'Lagre versjoner av den private nøkkelen. Ikke del den med noen andre. Din private nøkkel er nødvendig hvis du vil ha tilgang til (og sende) etheren din! Det er 3 typer private nøkler:', + HELP_2a_Desc_4: 'Plasser adressen din, versjoner av den private nøkkelen, og PDF-versjonen av papirlommeboken i en folder. Lagre denne på datamaskinen din og en USB-disk.', + HELP_2a_Desc_5: 'Skriv ut lommeboken hvis du har en skriver. Hvis ikke, skriv ned adressen og den private nøkkelen din på et papirark. Lagre dette på et sikkert sted, separat fra datamaskinen og USB-disken.', + HELP_2a_Desc_6: 'Husk at du må unngå tap av nøklene og passordet pga. tap av, eller feil på, harddisk, USB-disk eller paperlommebok. Du må også ta i betraktning at det kan oppstå fysisk tap/skade på et helt område (tenk på brann eller flom).', + + HELP_2b_Title: '2b) Hvordan kan jeg lagre ether sikkert / offline / "kaldt" med MyEtherWallet?', + HELP_2b_Desc_1: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Klikk "download zip" øverst til høyre.', + HELP_2b_Desc_3: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_2b_Desc_4: 'Pakk ut zip-fila (unzip) og dobbeltklikk `index.html`.', + HELP_2b_Desc_5: 'Opprett en lommebok med et sterkt passord.', + HELP_2b_Desc_6: 'Lagre adressen. Lagre versjoner av den private nøkkelen. Lagre passordet hvis du ikke tror du klarer å huske det for alltid.', + HELP_2b_Desc_7: 'Lagre disse papirene / USB-ene på flere fysisk separate steder.', + HELP_2b_Desc_8: 'Gå til "Vis lommebok-info"-siden og oppgi (lim inn) din private nøkkel / passord for å sikre at de er korrekte og gir deg tilgang til lommeboken din. Sjekk at adressen du skrev ned er den samme.', + + HELP_3_Title: '3) Hvordan verifiserer jeg at jeg har tilgang til den nye lommeboken min?', + HELP_3_Desc_1: '**Før du sender ether til din nye lommebok**, bør du forsikre deg om at du har tilgang til den.', + HELP_3_Desc_2: 'Naviger til "Vis lommebok-info"-siden.', + HELP_3_Desc_3: 'Naviger til MyEtherWallet.com sin "Vis lommebok-info"-side.', + HELP_3_Desc_4: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_3_Desc_5: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks. Oppgi passordet.', + HELP_3_Desc_6: 'Klikk "Lås opp lommebok"-knappen.', + HELP_3_Desc_7: 'Informasjon om lommeboken din skal nå dukke opp. Finn konto-adressen din ved siden av et fargerikt, sirkulært ikon. Dette ikonet er en unik, visuell representasjon av din adresse. Vær sikker på at adressen er den samme adressen som du har lagret i tekstdokumentet og papirlommeboken.', + HELP_3_Desc_8: 'Hvis du planlegger å lagre et stort ether-beløp, anbefaler vi at du sender et lite beløp til- og fra den nye lommeboken før du deponerer et stort beløp. Send 0,001 ether til din nye lommebok, åpne lommeboken, send de 0,001 eterne (-minus gas-kostnad) til en annen adresse, og forikre deg om at alt fungerer som det skal.', + + HELP_4_Title: '4) Hvordan sender jeg ether fra en lommebok til en annen?', + HELP_4_Desc_1: 'Hvis du planlegger å flytte et stort ether-beløp, bør du testsende et lite beløp først for å forsikre deg om at alt går som planlagt.', + HELP_4_Desc_2: 'Naviger til "Send ether"-siden.', + HELP_4_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_4_Desc_4: 'Hvis lommeboken er kryptert, vil det automatisk dukke opp en tekstboks hvor du må oppgi passordet ditt.', + HELP_4_Desc_5: 'Klikk på "Lås opp lommebok"-knappen.', + HELP_4_Desc_6: 'Oppgi adressen som du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4_Desc_7: 'Oppgi beløpet som du ønsker å sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du ønsker å overføre hele saldoen.', + HELP_4_Desc_8: 'NB: Siden slutten av juni 2016, må du passe på å splitte din ETH/ETC før du sender ether som normalt. Se spørsmål #6 nedenfor for mer informasjon.', + HELP_4_Desc_9: 'Klikk "Generer transaksjon".', + HELP_4_Desc_10: 'En del felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_4_Desc_11: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_4_Desc_12: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_4_Desc_13: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden. ', + + HELP_4CX_Title: '4) Hvordan sender jeg ether med MyEtherWallet CX (Chrome-utvidelsen)?', + HELP_4CX_Desc_1: 'Først må du legge til en lommebok. Når du har gjort det, har du 2 muligheter: den kjappe "Send"-funksjonaliteten fra Chrome-utvidelsesikonet eller "Send ether"-siden.', + HELP_4CX_Desc_2: 'Send:', + HELP_4CX_Desc_3: 'Klikk Chrome-utvidelsesikonet.', + HELP_4CX_Desc_4: 'Klikk "Send"-knappen.', + HELP_4CX_Desc_5: 'Velg lommeboken du ønsker å sende fra.', + HELP_4CX_Desc_6: 'Oppgi adressen du ønsker å sende til i "Til adresse:"-feltet.', + HELP_4CX_Desc_7: 'Oppgi beløpet du vil sende. Du kan også klikke på "Send hele saldoen"-lenken hvis du vil overføre hele saldoen.', + HELP_4CX_Desc_8: 'Klikk "Send transaksjon". ', + HELP_4CX_Desc_9: 'Verifiser at adressen og beløpet er korrekt.', + HELP_4CX_Desc_10: 'Oppgi passordet for lommeboken.', + HELP_4CX_Desc_11: 'Klikk "Send transaksjon."', + HELP_4CX_Desc_12: 'Bruk "Send ether"-siden: ', + + HELP_5_Title: '5) Hvordan kan jeg bruke MyEtherWallet.com offline/lokalt? ', + HELP_5_Desc_1: 'Du kan bruke MyEtherWallet.com på datamaskinen din i stedet for fra GitHub-serverne. Du kan opprette en lommebok fullstendig frakoblet fra internett, og sende transaksjoner fra "Send offline"-siden.', + HELP_5_Desc_2: 'Gå til vår github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Klikk "download zip" øverst til høyre.', + HELP_5_Desc_4: 'Flytt zip-fila til en frakoblet datamaskin.', + HELP_5_Desc_5: 'Pakk ut zip-fila.', + HELP_5_Desc_6: 'Dobbelklikk `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com kjører nå utelukkende på din datamaskin.', + HELP_5_Desc_8: 'I tilfelle du ikke er så vant med dette: du må beholde hele mappen for å kunne kjøre nettsiden, ikke bare `index.html`. Ikke rør eller flytt rundt på noe i mappen. Hvis du lagrer en backup av MyEtherWallet-repoet for framtiden, anbefaler vi å kun lagre zip-fila så du kan være sikker på at innholdet i mappen forblir intakt.', + HELP_5_Desc_9: 'Siden vi oppdaterer MyEtherWallet.com hele tiden, anbefaler vi at du oppdaterer din lagrede versjon av repoet jevnlig.', + + HELP_5CX_Title: '5) Hvordan kan jeg installere denne utvidelsen fra repoet i stedet for fra Chrome-butikken? ', + HELP_5CX_Desc_1: 'Gå til vår github og finn den nyeste Chrome Extension -utgivelsen: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Bla helt ned til bunnen og høyreklikk på den nyeste utgivelsen. Klikk "save link as".', + HELP_5CX_Desc_3: 'Gå til Google Chrome og finn innstillingene i menyen øverst til høyre under "Flere verktøy".', + HELP_5CX_Desc_4: 'Clikk "Utvidelser" til venstre.', + HELP_5CX_Desc_5: 'Huk av "Utviklermodus"-knappen på toppen av siden.', + HELP_5CX_Desc_6: 'Klikk "Last inn upakket utvidelser"-knappen.', + HELP_5CX_Desc_7: 'Naviger til den nå utpakkede mappen som du lastet ned tidligere. Clikk "OK".', + HELP_5CX_Desc_8: 'Utvidelsen skal nå dukke opp blant utvidelsene dine og i utvidelses-knappelinjen øverst til høyre i nettleseren.', + + HELP_6_Title: '6) Hvordan splitter jeg mine ETH / ETC? ', + HELP_6_Desc_1: 'Da "hard fork"-en skjedde, fikk all ETH som du hadde i lommeboken din et tilsvarende beløp med ETC. Hvis du sender ETH ved hjelp av en standard transaksjon, vil den også sende ETC. Dette fenomenet kalles "replay", og hvis det benyttes i dårlig hensikt "replay attack". For å unngå dette, må du "splitte" din originale lommebok til to lommebøker. Deretter må du forsikre deg om at det kun går ETH til ETH-lommeboken og kun ETC til ETC-lommeboken.', + HELP_6_Desc_2: 'Du kan også sende alle dine ETH & ETC til Kraken eller Poloniex ved hjelp av standardtransaksjoner. Disse børsene vil automatisk splitte dine ETH og ETC. Du kan så flytte disse midlene til nye lommebøker, eller selge dine ETC eller ETH.', + HELP_6_Desc_3: '[Enda mer informasjon om kontoer og "reply attacks" finnes her](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Opprett en ny, ren etter-fork ETH lommebok for deg selv (som endelig destinasjon for ren ETH).', + HELP_6_Desc_5: 'Opprett en ny, ren etter-fork ETC lommebok for deg selv (som endelig destinasjon for ren ETC).', + HELP_6_Desc_6: 'Sikkerhetskopier disse nye lommebøkene og verifiser at du har tilgang til dem. Se #2a og #3 ovenfor.', + HELP_6_Desc_7: 'Send 0,1234 ETH til din nye "ETH"-lommebok ved å benytte "Kun ETH"-alternativet på "Send ether"-siden.', + HELP_6_Desc_8: 'Send 0,5678 ETC til din nye "ETC"-lommebok ved å benytte "Kun ETC"-alternativet på "Send ether"-siden.', + HELP_6_Desc_9: 'Sjekk at kun de 0,1234 ETH flyttet seg på etherscan.io. Sjekk at kun de 0,5678 ETC flyttet seg på gastracker.io.', + HELP_6_Desc_10: 'Send en 0,0001 ETH-transaksjon fra din nye ETH lommebok. Sjekk etherscan.io. Forsikre deg om at de 0,0001 ETH flyttet seg.', + HELP_6_Desc_11: 'Generer (men ikke send) en 0,0002 ETC-transaksjon fra din nye ETC-lommebok. Kopier "Signert transaksjon"-feltet.', + HELP_6_Desc_12: 'Gå til [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) og lim inn denne ETC-transaksjonen i classicetherwallet.com sin offline-flipp (helt på bunnen) og send. Sjekk gastracker.io. Forsikre deg om at de 0,0002 ETC flyttet seg.', + HELP_6_Desc_13: 'Hvis alt mottas og sendes korrekt er du klar.', + HELP_6_Desc_14: 'Send den totale gjenværende ETH-saldoen ved å benytte "Kun ETH"-alternativet og gjenta for ETC-saldoen ved å benytte "Kun ETC".', + HELP_6_Desc_15: 'Heretter kan du bruke standardtransaksjoner for disse nye lommebøkene uten risiko for "replay attacks". ', + + HELP_7_Title: '7) Hvordan sender jeg token & legger til flere typer token?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) er en flott måte å utforske token på, og for å finne informasjon om antall desimaler for en token.', + HELP_7_Desc_1: 'Naviger til "Send Token"-siden.', + HELP_7_Desc_2: 'Lås opp lommeboken din.', + HELP_7_Desc_3: 'Oppgi adressen som du vil sende til i "Til adresse:"-feltet.', + HELP_7_Desc_4: 'Oppgi beløpet som du vil sende.', + HELP_7_Desc_5: 'Velg hvilken type token du vil sende .', + HELP_7_Desc_6: 'Hvis du ikke ser token-typen på listen:', + HELP_7_Desc_7: 'Klikk "Tilpasning".', + HELP_7_Desc_8: 'Oppgi adressen, navnet, og antall desimaler for token-et. Disse er oppgitt fra utviklerne av token-et og er også nødvendige når du skal "Add a Watch Token" i Mist.', //Mist not translated to Norw yet :-)// + HELP_7_Desc_9: 'Klikk "Lagre".', + HELP_7_Desc_10: 'Du kan nå sende denne typen token, samt se saldoen for aktuell token i sidefeltet.', + HELP_7_Desc_11: 'Klikk "Generer transaksjon".', + HELP_7_Desc_12: 'Noen flere felter vil dukke opp. Dette er nettleseren din som genererer transaksjonen.', + HELP_7_Desc_13: 'Klikk den blå "Send transaksjon"-knappen nedenfor dette.', + HELP_7_Desc_14: 'En pop-up vil dukke opp. Verifiser at beløp og adresse du sender til er korrekt. Klikk så "Ja, jeg er sikker! Gjennomfør transaksjonen."-knappen.', + HELP_7_Desc_15: 'Transaksjonen vil bli sendt inn. Transaksjons-ID-en (TX-ID) vil vises. Du kan klikke på TX ID for å se den på blokkjeden.', + + HELP_8_Title: '8) Hva skjer hvis nettsiden går ned?', + HELP_8_Desc_1: 'MyEtherWallet er ikke en nett-lommebok (web wallet). Du har ingen innlogging og ingenting blir noensinne lagret på våre servere. Det er ganske enkelt et grensesnitt som tillater deg å samhandle med blokkjeden.', + HELP_8_Desc_2: 'Hvis MyEtherWallet.com går ned, må du finne en annen måte (som f.eks. geth eller Ethereum Wallet / Mist) å gjøre det på. Men du vil ikke trenge å "hente" eteren din ut av MyEtherWallet, fordi den ikke befinner seg i MyEtherWallet. Den befinner seg i den lommeboka/kontoen som du opprettet ved hjelp av nettsiden vår.', + HELP_8_Desc_3: 'Du kan nå svært enkelt importere din ukrypterte private nøkkel og dine Geth/Mist-format (krypterte) filer direkte inn i geth / Ethereum Wallet / Mist. Se spørsmål #12 nedenfor.', + HELP_8_Desc_4: 'I tillegg er sannsynligheten for at vi tar ned MyEtherWallet svært liten. Det koster oss nesten ingenting å opprettholde den siden vi ikke lagrer noen informasjon. Hvis vi tar ned domenet, er det fortsatt, og vil alltid være, offentlig tilgjengelig på [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Du kan laste ned zip-fila der og kjøre den lokalt. ', + + HELP_8CX_Title: '8) Hva skjer hvis MyEtherWallet CX (Chrome-utvidelsen) forsvinner?', + HELP_8CX_Desc_1: 'For det første er alle data lagret på din datamaskin, ikke på våre servere. Jeg vet det kan være forvirrende, men når du ser på Chrome-utvidelsen, så ser du IKKE på ting som er lagret på våre servere et eller annet sted - det er alt sammen lagret på din egen datamaskin.', + HELP_8CX_Desc_2: 'Når det er sagt, så er det **svært viktig** at du sikkerhetskopierer all din informasjon for alle lommebøkene som du har opprettet med MyEtherWallet CX. På den måten vil du fortsatt ha all nødvendig informasjon for å få tilgang til eteren din selv om noe skulle hende med MyEtherWallet CX eller datamaskinen din. Se spørsmål #2a ang. hvordan du sikkerhetskopierer lommebøkene dine.', + HELP_8CX_Desc_3: 'Hvis MyEtherWallet CX av en eller annen grunn skulle forsvinne fra Chrome Store, så kan du finne kildekoden på Github og laste den inn manuelt. Se #5 ovenfor.', + + HELP_9_Title: '9) Er "Send ether"-siden offline?', + HELP_9_Desc_1: ' Nei, send transaksjon-siden er ikke offline. Den trenger internett for å kunne skaffe den aktuelle gas-prisen, "nonce" for kontoen din, og for å kunne kringkaste transaksjonen (aka "send"). Imidlertid sender den kun den signerte transaksjonen. Din private nøkkel forblir i sikkerhet hos deg. Vi tilbyr nå også en "Offline transaction"-side slik at du kan forsikre deg om at dine private nøkler til enhver tid kun befinner seg på en offline/frakoblet datamaskin.', + + HELP_10_Title: '10) Hvordan lager jeg en frakoblet/offline transaksjon?', + HELP_10_Desc_1: 'Naviger til "Send Offline"-siden via din internettilknyttede datamaskin.', + HELP_10_Desc_2: 'Oppgi "Fra-adressen". Vennligst merk at dette er adressen du sender FRA, ikke TIL. Dette genererer "nonce" og "gas-pris".', + HELP_10_Desc_3: 'Gå til den internettfrakoblede datamaskinen. Oppgi "TIL-ADRESSEN" og "BELØPET" du vil sende.', + HELP_10_Desc_4: 'Oppgi "GAS-PRISEN" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_5: 'Oppgi "NONCE" slik den ble vist deg på den tilkoblede datamaskinen i steg #1.', + HELP_10_Desc_6: '"GAS-GRENSE" har en standardverdi på 21000. Dette vil dekke en standardtransaksjon. Hvis du sender til en kontrakt eller inkluderer ekstra data i transaksjonen din, må du øke gas-grensen. Eventuelt overskytende gas blir returnert til deg (fra-kontoen).', + HELP_10_Desc_7: 'Oppgi noe data hvis du vil. Hvis du oppgir data, må du inkludere mer enn det som er standard gas-grense (21000). Alle data er i HEX-format.', + HELP_10_Desc_8: 'Velg lommebokfilen din, eller din private nøkkel, og lås opp lommeboken din.', + HELP_10_Desc_9: 'Trykk på "GENERER SIGNERT TRANSAKSJON"-knappen.', + HELP_10_Desc_10: 'Datafeltet under denne knappen vil fylles med din signerte transaksjon. Kopier denne og flytt den tilbake til din tilkoblede datamaskin. ', + HELP_10_Desc_11: 'Lim inn den signerte transaksjonen i tekstfeltet i steg #3 på den tilkoblede maskinen og klikk "Send Ether". Dette vil kringkaste transaksjonen din.', + + HELP_11_Title: '11) Hvordan sender jeg til en kontrakt?', + HELP_11_Desc_1: 'Å sende til en kontrakt krever ofte at du inkluderer data og/eller ekstra gas.', + HELP_11_Desc_2: 'Naviger til "Send Ether"-siden. ', + HELP_11_Desc_3: 'Velg lommebok-filen din, eller din private nøkkel, og lås opp lommeboken. ', + HELP_11_Desc_4: 'Oppgi en "Til-adresse" og "Beløp som skal sendes"', + HELP_11_Desc_5: 'Klikk "+ Avansert: Legg til mer gas eller data"-knappen nedenfor beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_12_Title: '12) Hvordan kan jeg importere en lommebok opprettet med MyEtherWallet til geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Ved å bruke en Geth/Mist JSON-fil fra MyEtherWallet v2+....', + HELP_12_Desc_2: 'Gå til "Vis lommebok-info"-siden.', + HELP_12_Desc_3: 'Lås opp lommeboken din ved hjelp av din **krypterte** private nøkkel eller JSON-fil. ', + HELP_12_Desc_4: 'Gå til "Mine lommebøker"-siden.', + HELP_12_Desc_5: 'Velg lommeboken som du ønsker å importere til Mist, klikk "Vis"-ikonet, oppgi passordet, og få tilgang til lommeboken. ', + HELP_12_Desc_6: 'Finn "Last ned JSON-fil - Geth/Mist-format (kryptert)"-seksjonen. Trykk "Last ned"-knappen nedenfor. Du har nå fått keystore-filen til lommeboken din.', + HELP_12_Desc_7: 'Åpne "Ethereum Wallet"-programmet. ', + HELP_12_Desc_8: 'I menyfeltet, gå til "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Dette vil åpne keystore-mappen på harddisken din. Kopier filen du nettopp lastet ned (`UTC--2016-04-14......../`) inn i denne keystore-mappen.', + HELP_12_Desc_10: 'Kontoen din skal nå umiddelbart dukke opp under "Accounts."', + HELP_12_Desc_11: 'Ved å bruke din ukrypterte private nøkkel...', + HELP_12_Desc_12: 'Hvis du ikke allerede har den ukrypterte private nøkkelen din, naviger til "Vis lommebok-info"-siden.', + HELP_12_Desc_13: 'Velg lommebok-filen din, eller oppgi/lim inn din private nøkkel, for å låse opp lommeboken.', + HELP_12_Desc_14: 'Kopier den (ukrypterte) private nøkkelen.', + HELP_12_Desc_15: 'Hvis du er på en Mac:', + HELP_12_Desc_16: 'Åpne Text Edit og lim inn denne private nøkkelen.', + HELP_12_Desc_17: 'Gå til menylinjen og klikk "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Lagre denne fila på skrivebordet ditt som `ikke_noe_spesielt_slett_meg.txt`. Pass på at det står "UTF-8" og "If no extension is provided use .txt" i lagringsdialogen.', + HELP_12_Desc_19: 'Åpne terminalen og kjør følgende kommando: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det. ', + HELP_12_Desc_21: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_22: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts".', + HELP_12_Desc_23: 'Åpne Notisblokk/Notepad & lim inn den private nøkkelen', + HELP_12_Desc_24: 'Lagre fila som `ikke_noe_spesielt_slett_meg.txt` på `C:`', + HELP_12_Desc_25: 'Kjør ledetekst (Windowstast + "cmd")-kommandoen, `geth account import C:\\ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_26: 'Du vil bli bedt om å lage et nytt passord. Dette er passordet du vil bruke i geth / Ethereum Wallet / Mist hver gang du skal sende en transaksjon, så ikke glem det.', + HELP_12_Desc_27: 'Etter at du har lykkes med å importere kontoen, slett `ikke_noe_spesielt_slett_meg.txt`', + HELP_12_Desc_28: 'Neste gangen du åpner "Ethereum Wallet"-programmet, vil kontoen din være listet under "Accounts". ', + + HELP_13_Title: '13) Hva betyr "Gas Limit Too Low"?', + HELP_13_Desc_1: 'Det betyr sannsynligvis at du prøver å sende Ether til en kontrakt. Å sende til en kontrakt krever litt mer data og derfor litt mer gas. På "Send Ether"-siden, klikk "+ Avansert: Legg til mer gas eller data"-knappen under beløpsfeltet. Dette vil vise ytterligere to felter som du kan bruke til å øke mengden gas utover standardverdien på 21000, eller til å legge data til transaksjonen.', + + HELP_14_Title: '14) Noen nettsider randomiserer genereringen av den private nøkkelen via musebevegelser. MyEtherWallet.com gjør ikke dette. Er metoden som MyEtherWallet bruker til å generere tilfeldige tall sikker?', + HELP_14_Desc_1: 'Selv om musebevegelses-metoden er smart og vi skjønner hvorfor folk liker den, så er realiteten at window.crypto sikrer mer entropi (tilfeldighet) enn musebevegelser. Musebevegelses-metoden er ikke usikker, men det er bare det at vi (og mange andre kryptoeksperter) har tro på window.crypto. I tillegg kan MyEtherWallet.com også benyttes på fingerstyrte enheter. Her er en [konversasjon mellom en sint redditor og Vitalik Buterin angående musebevegelser versus window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) og her er [window.crypto w3 spesifikasjonen](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Hvorfor har ikke kontoen jeg nettopp opprettet dukket opp i blokkjede-utforskeren? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Kontoer vil kun dukke opp i en blokkjede-utforsker når kontoen har hatt aktivitet—for eksempel, når du har overført Ether til den.', + + HELP_16_Title: '16) Hvordan kan jeg sjekke saldoen på kontoen min? ', + HELP_16_Desc_1: 'Du kan bruke en blokkjede-utforsker som [etherscan.io](http://etherscan.io/). Lim inn adressen i søkefeltet og den vil finne fram adressen og transaksjonshistorikken. For eksempel, her ser du hvordan vår [donasjonskonto](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) ser ut på etherscan.io', + + HELP_17_Title: '17) Hvorfor vises ikke saldoen min når jeg låser opp lommeboken min? ', + HELP_17_Desc_1: ' Dette er mest sannsynlig fordi du er bak en brannmur. API-en vi bruker for å innhente saldoen blokkeres ofte av brannmurer av ymse årsaker. Du vil fortsatt være i stand til å sende transaksjoner, du må bare bruke en annen metode for å se nevnte saldo, som etherscan.io', + + HELP_18_Title: '18) Hvor er min geth lommebok-fil', + + HELP_19_Title: '19) Hvor er min Mist lommebok-fil? ', + HELP_19_Desc_1: 'Mist-filer lagres typisk i lokasjonene ovenfor, men det er mye enklere å åpne Mist, velge "Accounts" i topp-menylinjen, velge "Backup", og velge "Accounts". Dette vil åpne mappen hvor filene dine er lagret.', + + HELP_20_Title: '20) Hvor er pre-sale lommebok-filen?', + HELP_20_Desc_1: 'Der du lagret den. ;) Den ble også sendt deg på e-post, så sjekk der. Se etter fila som heter `"ethereum_wallet_backup.json"` og velg den fila. Denne fila vil være kryptert med et passord som du opprettet under "pre-sale"-kjøpet.', + + HELP_21_Title: '21) Kan ikke hvem som helst legge inn tilfeldige private nøkler, sjekke saldoen, og sende Ether til sin egen adresse? ', + HELP_21_Desc_1: 'Kortversjonen: ja, men å finne en konto som inneholder Ether ville tatt lengre tid enn universets levealder...så...nei.', + HELP_21_Desc_2: 'Lang ELI5-versjon: Ethereum er basert på [Offentlig nøkkel-kryptografi](https://en.wikipedia.org/wiki/Public-key_cryptography), og mer spesifikt [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf), som er svært utbredt, ikke bare i Ethereum. De fleste servere er beskyttet via ECC. Bitcoin bruker den samme, likeså SSH og TLS og mange flere. Ethereum-nøklene er 256-bit nøkler, som er sterkere enn 128-bit og 192-bit, som også er mye brukt og fortsatt betraktes som sikre av ekspertene.', + HELP_21_Desc_3: 'I denne har du en privat nøkkel og en offentlig nøkkel. Den private nøkkelen kan utlede den offentlige nøkkelen, men den offentlige nøkkelen kan ikke brukes for å finne den private nøkkelen. Det faktum at internett og verdens hemmeligheter bruker denne kryptografien betyr at hvis det blir funnet en måte å gå fra offentlige til private nøkler på, så vil dine tapte Ether være det minste av alles problemer.', + HELP_21_Desc_4: 'Når det er sagt, JA, hvis noen andre har din private nøkkel, så kan de såvisst sende ether fra din konto. Akkurat som hvis noen har passordet til e-posten din, så kan de lese og sende din e-post, eller passordet til bankkontoen din, så kan de overføre penger. Du kunne laste ned keystore-versjonen av den private nøkkelen din, som er den private nøkkelen som er kryptert med et passord. Dette blir som å ha et passord som er beskyttet av et annet passord.', + HELP_21_Desc_5: 'og JA, i teorien kunne du bare taste inn en streng med 64 hexadesimaltegn helt dil du fant en som passet. Faktisk kunne smarte folk skrive et program som svært hurtig kunne sjekke tilfeldige private nøkler. Dette kalles "brute-forcing" eller "mining" private nøkler. Folk har tenkt lenge og hardt på dette. Med noen få svært gode servere, kunne de kanskje klare å sjekke >1M nøkler/sekund. Likevel, selv når så mange sjekkes per sekund, ville det ikke gi tilgang midler som ville gjøre det i nærheten av å være lønnsomt å kjøre disse serverne. - Det er mer sannsynlig at du, eller dine oldebarn, vil dø før du får en match.', + HELP_21_Desc_6: 'Hvis du vet noe om Bitcoin, [dette vil sette det i perspektiv:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *For å illustrere hvor usannsynlig det er: anta at alle satoshi av alle bitcoin som noensinne blir generert ble sendt til hver sin egen unike private nøkkel. Sannsynligheten for at det blant disse nøklene kunne være to som ville korrespondere med samme adresse er ca 1 til 10^20.', + HELP_21_Desc_7: '[Hvis du ønsker en mer teknisk forklaring:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Disse tallene har ikke noe å gjøre med teknologien til enhetene; de er det maksimale som termodynamikken vil tillate. Og de impliserer sterkt at "brute-force"-angrep mot 256-bit nøkler vil være uoppnåelig fram til datamaskiner lages av noe annet enn materie og befinner seg i noe annet enn rom.', + HELP_21_Desc_8: 'Selvsagt betinger alt dette at nøkler blir generert på en virkelig tilfeldig måte & med tilstrekkelig entropi. Nøklene som genereres her tilfredsstiller dette kriteriet, det samme gjør Jaxx og Mist/geth. Alle Ethereum-lommebøker er OK. Nøkler som genereres av "brainwallets" er ikke like gode, siden en persons hjerne ikke er i stand til å lage en virkelig tilfeldig "seed". Det har vært noen andre tilfeller av manglende entropi eller "seeds" som ikke er generert på en virkelig tilfeldig måte i Bitcoin-land, men det er en historie som kan vente til en annen dag.', + + HELP_SecCX_Title: 'Sikring - MyEtherWallet CX (Chrome-utvidelsen)', + HELP_SecCX_Desc_1: 'Hvor lagrer denne utvidelsen informasjonen min?', + HELP_SecCX_Desc_2: 'Informasjonen som du lager i denne Chrome-utvidelsen lagres via [chrome.storage](http://chrome.storage/). - dette er samme sted som passordene dine lagres når du lagrer passord i Chrome.', + HELP_SecCX_Desc_3: 'Hvilken informasjon lages? ', + HELP_SecCX_Desc_4: 'Adresser, kallenavn og private nøkler lagres i chrome.storage. Den private nøkkelen er kryptert ved hjelp av passordet du satte da du la til lommeboken. Kallenavn og lommebok-adresser er ikke kryptert.', + HELP_SecCX_Desc_5: 'Hvorfor er ikke kallenavn og lommebok-adresser kryptert? ', + HELP_SecCX_Desc_6: 'Hvis vi skulle kryptere disse, måtte du ha oppgitt et passord hver gang du ønsket å se saldo for kontoene dine eller vise kallenavnene. Hvis dette bekymrer deg, anbefaler vi deg å bruke MyEtherWallet.com i stedet for denne Chrome-utvidelsen.', + + HELP_Sec_Title: 'Sikring', + HELP_Sec_Desc_1: 'Hvis en av dine første spørsmål er "Hvorfor skulle jeg stole på disse folkene?", så er det en god ting. Forhåpentligvis vil følgende bidra til å lette på frykten din. ', + HELP_Sec_Desc_2: 'Vi har vært oppe-og-gå siden august 2015. Hvis du søker etter ["myetherwallet" på reddit](https://www.reddit.com/search?q=myetherwallet), så kan du se mange folk som bruker oss med stor suksess.', + HELP_Sec_Desc_3: 'Vi kommer ikke til å ta pengene dine eller stjele dine private nøkler. Det er ingen ondsinnet kode på denne siden. Faktisk er "OPPRETT LOMMEBOK"-siden fullstendig klient-drevet. Det betyr at all koden blir kjørt på ** din datamaskin ** og det blir aldri lagret eller overført noe sted.', + HELP_Sec_Desc_4: 'Sjekk nettsideadressen (URL) -- Denne siden blir drevet gjennom GitHub og du kan se kildekoden her: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) til domenet: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) og [https://www.myetherwallet.com](https://www.myetherwallet.com). Du kan verifisere at den blir drevet (hosted) av GitHub ved å bruke [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - de siste to oppgitte IP-ene eies av GitHub for deres egen domene-hosting.', + HELP_Sec_Desc_5: 'For å generere lommebøker, kan du laste ned [kildekoden](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Se #5 ovenfor.', + HELP_Sec_Desc_6: 'Kjør en test og sjekk hvilken nettverksaktivitet som skjer. Den enkleste måten som du kan gjøre dette på er å høyreklikke på siden og klikke "inspiser element". Gå til "Nettverk"-flippen. Generer en test-lommebok. Du vil se at det ikke er noen nettverksaktivitet. Du vil se at noe som ser ut som data:image/gif og data:image/png skjer. Disse er QR-kodene som blir generert...på din datamaskin...av din datamaskin. Ingen bytes ble overført.', + HELP_Sec_Desc_7: 'Nå, for å være sikker, gå over til "Ressurser"-siden. Her kan du se alle de ulike elementene som utgjør en nettside. Hvis du klikker gjennom Local Storage, Cookies, og Cache, vil du se at ingenting blir oppbevart. Ingenting blir lagret. Last inn nettsiden på nytt og du er tilbake til start.', + HELP_Sec_Desc_8: 'Hvis du ikke er komfortabel med å bruke dette verktøyet, så for all del, ikke bruk det. Vi laget dette verktøyet som et hjelpemiddel for folk som vil opprette lommebøker og utføre transaksjoner uten å måtte dykke ned i kommandolinjeoperasjoner eller kjøre en full node. Igjen, ta gjerne kontakt hvis du har bekymringer og vi vil gi tilbakemelding så snart som mulig. Takk! ', + + HELP_FAQ_Title: 'Flere nyttige svar på hyppige spørsmål', + HELP_Contact_Title: 'Måter å ta kontakt på' +}; + +module.exports = no; },{}],53:[function(require,module,exports){ -// Portuguese -'use strict'; -var pt = function() {} -pt.code = 'pt'; -pt.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = pt; +// Polish +'use strict'; +var pl = function() {} +pl.code = 'pl'; +pl.data = { + + /* Navigation*/ + NAV_YourWallets: 'Twoje Portfele', + NAV_AddWallet: 'Dodaj Portfel', + NAV_GenerateWallet: 'Wygeneruj Portfel', + NAV_BulkGenerate: 'Generuj Hurtowo', + NAV_SendEther: 'Wyślij Ether', + NAV_SendTokens: 'Wyślij Tokeny', + NAV_Offline: 'Wyślij Offline', + NAV_WithdrawDAO: 'Wypłać DAO', + DAO_TitleLong: 'Zamień swoje Tokeny DAO na ETH', + NAV_ClaimDGD: 'Odbierz DGD', + DGD_TitleLong: 'Odbierz swoje Tokeny DGD', + NAV_MyWallets: 'Moje Portfele', + NAV_ViewWallet: 'Wyświetl informacje o portfelu', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Hasło', + x_Download: 'Pobierz', + x_Address: 'Twój Adres', + x_Save: 'Zapisz', + x_Cancel: 'Anuluj', + x_AddessDesc: 'Inaczej "Numer konta" lub "Klucz publiczny". Wysyłasz go innym aby mogli Ci wysłać ether. Ikona umożliwia łatwe rozpoznanie Twojego adresu.', + x_PrivKey: 'Klucz Prywatny (nieszyfrowany)', + x_PrivKey2: 'Klucz Prywatny', + x_PrivKeyDesc: 'Nieszyfrowana, tekstowa wersja Twojego klucza prywatnego, nie wymaga hasła. Jeżeli ktoś zdobędzie nieszyfrowany klucz będzie mógł uzyskać pełen dostęp do Twojego portfela bez podania hasła. Z tego powodu zaleca się używanie jego szyfrowanej wersji.', + x_Keystore: 'Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)', + x_Keystore2: 'Plik Keystore/JSON', + x_KeystoreDesc: 'Ten plik Keystore / JSON odpowiada formatowi stosowanemu przez Mist i Geth, więc może być w prosty sposób zaimportowany w przyszłości. Jest to zalecana forma pliku do pobrania i przechowywania jako kopii zapasowej.', + x_Json: 'Plik JSON (nieszyfrowany)', + x_JsonDesc: 'Nieszyfrowany klucz prywatny, plik w formacie JSON. Nie wymaga podania hasła, ale każdy kto zdobędzie ten plik uzyska również pełny dostęp do Twojego portfela i zgromadzonych na nim środków.', + x_PrintShort: 'Drukuj', + x_Print: 'Drukuj Portfel Papierowy', + x_PrintDesc: 'Wskazówka: Kliknij drukuj i zapisz plik PDF, nawet jeżeli nie posiadasz drukarki!', + x_CSV: 'Plik CSV (nieszyfrowany)', + x_TXT: 'Plik TXT (nieszyfrowany)', + x_Wallet: 'Portfel', + + /* Header */ + MEW_Warning_1: 'Zawsze dokładnie sprawdzaj adres URL strony przed jej użyciem. Użycie fałszywej strony może pozbawić cię wszystkich środków!', + CX_Warning_1: 'Upewnij się że posiadasz **zewnętrzne kopie bezpieczeństwa** każdego przechowywanego tu portfela. Może być wiele przyczyn utraty danych przechowywanych w tym rozszerzeniu przeglądarki Chrome, włączając w to odinstalowanie i ponowne zainstalowanie rozszerzenia. To rozszerzenie ma ułatwiać dostęp do Twoich portfeli, a **nie** służyć jako kopia bezpieczeństwa.', + MEW_Tagline: 'Portfel Ethereum - Open Source, JavaScript, Client-Side', + CX_Tagline: 'Portfel Ethereum, Rozszerzenie Chrome - Open Source, JavaScript, Client-Side', + + /* Footer */ + FOOTER_1: 'Narzędzie do generowania portfeli Ethereum i wysyłania transakcji - otwarto-źródłowe, javascrypt\'owe, strony klienta', + FOOTER_1b: 'Twórcy:', + FOOTER_2: 'Darowizny:', + FOOTER_3: 'Generowanie portfeli po stronie klienta przez', + FOOTER_4: 'Wyłączenie odpowiedzialności', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacje o Koncie: ', + sidebar_AccountAddr: 'Adres Konta: ', + sidebar_AccountBal: 'Stan Konta: ', + sidebar_TokenBal: 'Stan Tokenów: ', + sidebar_Equiv: 'Ekwiwalent: ', + sidebar_TransHistory: 'Historia Transakcji: ', + sidebar_DGDBal: 'Informacje o sprzedaży DGD:', + sidebar_donation: 'MyEtherWallet jest darmową, otwarto-źródłową usługą stworzoną dla Twojej prywatności i bezpieczeństwa. Im więcej darowizn zbierzemy, tym więcej czasu będziemy w stanie poświęcić na dodawanie nowych funkcjonalności, analizowanie informacji zwrotnych oraz spełnianie waszych oczekiwań. Jesteśmy jedynie dwójką ludzi starającą się zmienić świat. Pomóż nam!', + sidebar_donate: 'Prześlij darowiznę', + sidebar_thanks: 'DZIĘKUJEMY!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Jak chciałbyś uzyskać dostęp do Twojego portfela?', + decrypt_Title: 'Wybierz format Twojego klucza prywatnego:', + decrypt_Select: 'Wybierz Portfel:', + + /* Add Wallet */ + ADD_Label_1: 'Co chciałbyś zrobić?', + ADD_Radio_1: 'Generuj Nowy Portfel', + ADD_Radio_2: 'Wybierz Plik Portfela (Keystore / JSON)', + ADD_Radio_2_alt: 'Wybierz Plik Portfela: ', + ADD_Radio_2_short: 'WYBIERZ PLIK PORTFELA...', + ADD_Radio_3: 'Wklej/Wpisz Twój Klucz Prywatny', + ADD_Radio_4: 'Dodaj Konto do Obserwacji', + ADD_Label_2: 'Utwórz Nazwę Użytkownika:', + ADD_Label_3: 'Twój portfel jest zaszyfrowany. Podaj hasło: ', + ADD_Label_4: 'Dodaj Konto do Obserwacji', + ADD_Warning_1: 'Możesz dodać dowolne konto do obserwacji bez podawania jego klucza prywatnego. ** Nie ** oznacza to, że uzyskasz dostęp do tego portfela, nie będziesz mógł również wysyłać z niego środków.', + ADD_Label_5: 'Wpisz Adres: ', + ADD_Label_6: 'Odblokuj Portfel', + ADD_Label_6_short: 'Odblokuj', + ADD_Label_7: 'Dodaj konto', + + /* Generate Wallets */ + GEN_desc: 'Jeżeli chcesz wygenerować wiele portfeli możesz to zrobić tu: ', + GEN_Label_1: 'Wpisz silne hasło (co najmniej 9 znaków)', + GEN_Placeholder_1: 'NIE zapomnij tego hasła!', + GEN_SuccessMsg: 'Sukces! Twój portfel został wygenerowany.', + GEN_Warning: '**Potrzebujesz plik Keystore/JSON i hasło, lub Klucz Prywatny** aby uzyskać dostęp do tego portfela w przyszłości. Wykonaj zewnętrzną kopię bezpieczeństwa! Nie ma możliwości odzyskania portfela jeżeli go nie zapiszesz. Wejdź na [stronę pomocy](https://www.myetherwallet.com/#help) po instrukcje.', + GEN_Label_2: 'Zapisz Twój plik Keystore/JSON lub Klucz Prywatny. Nie zapomnij powyższego hasła.', + GEN_Label_3: 'Zapisz swój adres.', + GEN_Label_4: 'Wydrukuj swój Portfel Papierowy, lub zachowaj obrazek z kodem QR. (opcjonalnie)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Ilość Portfeli do Wygenerowania', + BULK_Label_2: 'Generuj Portfele', + BULK_SuccessMsg: 'Sukces! Twoje portfele zostały wygenerowane.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Do Adresu: ', + SEND_amount: 'Kwota do Wysłania: ', + SEND_amount_short: 'Kwota', + SEND_custom: 'Inny', + SEND_gas: 'Paliwo', + SEND_TransferTotal: 'Wyślij wszystkie środki', + SEND_generate: 'Wygeneruj Transakcję', + SEND_raw: 'Surowa Transakcja', + SEND_signed: 'Podpisana Transakcja', + SEND_trans: 'Wyślij Transakcję', + SENDModal_Title: 'Ostrzeżenie! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Wysyłasz', + SENDModal_Content_2: 'do adresu', + SENDModal_Content_3: 'Jesteś pewien, że chcesz to zrobić?', + SENDModal_Content_4: 'NOTKA: Jeśli wystąpi błąd, najprawdopodobniej musisz doładować ether do Twojego konta, na pokrycie kosztów paliwa do wysłania tokenów. Paliwo jest opłacane w ether.', + SENDModal_No: 'Nie, zabierz mnie stąd!', + SENDModal_Yes: 'Tak, jestem pewien! Zatwierdź transakcję.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Symbol Tokenu: ', + TOKEN_Dec: 'Miejsc po przecinku: ', + + /* Send Transaction */ + TRANS_desc: 'Jeśli chcesz wysłać Tokeny, użyj zakładki "Wyślij Tokeny".', + TRANS_warning: 'Jeśli używasz funkcji "Tylko ETH" lub "Tylko ETC" wysyłasz przez kontrakt. Niektóre serwisy mają problemy z rozpoznawaniem tego typu transakcji. Czytaj dalej.', + TRANS_standard: 'ETH (Standardowa Transakcja)', + TRANS_eth: 'Tylko ETH', + TRANS_etc: 'Tylko ETC', + TRANS_advanced: '+Zaawansowane: Dodaj Więcej Paliwa lub Dane ', + TRANS_data: ' Dane: ', + TRANS_gas: ' Paliwo: ', + TRANS_sendInfo: 'Standardowa transakcja, zużywająca 21000 paliwa, będzie kosztować 0.000441 ETH. My używamy ceny paliwa nieco-powyżej-minimum, co odpowiada 0.000000021 ETH aby upewnić się, że zostanie szybko zatwierdzona. Nie pobieramy żadnych dodatkowych opłat.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Transakcje "Tylko ETH" i "Tylko ETC"', + TRANSModal_Content_0: 'Informacje na temat różnych transakcji i różnych odbiorców:', + TRANSModal_Content_1: '**ETH (Standardowa Transakcja): ** generuje standardową transakcję bezpośrednio z jednego adresu do drugiego. Domyślnie spala 21000 paliwa. Prawdopodobnie transakcja ETH zostanie powielona na łańcuchu ETC jeżeli posiadasz obie waluty na tym samym adresie.', + TRANSModal_Content_2: '**Tylko ETH: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETH**.', + TRANSModal_Content_3: '**Tylko ETC: ** wysyła przez [Kontrakt zapobiegający powielaniu Timon\'a Rapp\'a (zalecany przez VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), który wysyła środki tylko na łańcuchu **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** używaj tylko Transakcji Standardowych. Jeżeli wyślesz z opcją "Tylko...", będziesz musiał skontaktować się z pomocą techniczną usługodawcy w celu manualnego zatwierdzenia środków lub ich zwrotu. Możesz też użyć [narzędzia Shapeshift](https://split.shapeshift.io/) do rozdzielenia środków.', + TRANSModal_Content_5: '**Kraken i Poloniex:** nie są znane żadne utrudnienia. Używaj dowolnie.', + TRANSModal_Yes: 'Super, już rozumiem.', + TRANSModal_No: 'O boziu, strasznie zakręcone. Pomóżcie.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generuj i Wyślij Transakcję Offline', + OFFLINE_Desc: 'Wygenerowanie transakcji może zostać wykonane w trzech krokach. Kroki 1 i 3 wykonasz na komputerze z internetem, krok 2 na komputerze bez połączenia z internetem. To gwarantuje, że Twoje klucze prywatne nigdy nie mają styczności z urządzeniem podłączonym do internetu.', + OFFLLINE_Step1_Title: 'Krok 1: Wygeneruj Informacje (Komputer Online)', + OFFLINE_Step1_Button: 'Wygeneruj Informacje', + OFFLINE_Step1_Label_1: 'Od Adresu: ', + OFFLINE_Step1_Label_2: 'Notka: To jest adres NADAWCY, czyli adres Twojego konta, które starasz sie odizolować od internetu. Wyróżnik jest generowany dla tego konta.', + OFFLINE_Step2_Title: 'Krok 2: Wygeneruj transakcję (Komputer Offline)', + OFFLINE_Step2_Label_1: 'Do Adresu: ', + OFFLINE_Step2_Label_2: 'Wartość / Kwota do Wysłania', + OFFLINE_Step2_Label_3: 'Cena Paliwa ', + OFFLINE_Step2_Label_3b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_4: 'Limit Paliwa ', + OFFLINE_Step2_Label_4b: 'Domyślny limit paliwa to 21000. Kiedy wysyłasz kontrakt lub załączasz dane ta wartość może być inna, nie zużyte paliwo zostanie zwrócone na Twoje konto.', + OFFLINE_Step2_Label_5: 'Wyróżnik', + OFFLINE_Step2_Label_5b: 'To było wyświetlone w Kroku 1 na Komputerze Online.', + OFFLINE_Step2_Label_6: 'Dane', + OFFLINE_Step2_Label_6b: 'Wartość opcjonalna. Dane są zazwyczaj załączane jeżeli wysyłasz transakcje do kontraktów.', + OFFLINE_Step2_Label_7: 'Wpisz / Wybierz Twój Klucz Prywatny / plik JSON.', + OFFLINE_Step3_Title: 'Krok 3: Wyślij / Opublikuj Transakcję (Komputer Online)', + OFFLINE_Step3_Label_1: 'Wklej tu podpisaną transakcję z Kroku 2 i kliknij przycisk "WYŚLIJ TRANSAKCJĘ".', + + /* DAO */ + DAO_bal1: 'w bloku 1,919,999', + DAO_bal2: 'aktualny', + DAO_TitleETH: 'Wypłać DAO do ETH', + DAO_TitleETC: 'Wypłać DAO do ETC', + DAO_ETC_Label_1: 'Na jaki adres chcesz wysłać swoje ETC?', + DAO_ETC_Label_2: '"White Hat Group" (Grupa Białych Kapeluszy) ciężko pracowała, aby pomóc Ci odzyskać Twoje ETC. Jeżeli chcesz, możesz im podziękować wysyłając procent z wypłacanych przez Ciebie środków. ', + DAO_Desc: 'Użyj tej zakładki aby wypłacić tokeny DAO w zamian za ETH. Jeżeli chcesz wysłać tokeny DAO użyj zakładki Wyślij Tokeny.', + DAO_Inst: 'Tak. Po prostu naciśnij duży czerwony przycisk. To jest tak proste.', + DAO_Warning: 'Jeśli dostajesz błąd "Niewystarczające środki na paliwo", musisz doładować konto niewielką ilością ETH aby pokryć koszty transakcji. Dodaj 0.01 ETH do tego konta i spróbuj ponownie. ', + DAOModal_Title: 'Tylko się upewniam...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Zamierzasz wypłacić', + DAOModal_2: 'DAO tokenów do', + DAOModal_3: 'za', // "w zamian za" + + /* Digix */ + DGD_Desc: 'Odbierz swoje tokeny i odznaki DigixDAO (DGD). Aby odebrać, musisz być osobą uczestniczącą w wyprzedaży tokenów w 30-31 marca 2016. Jeśli chcesz wysłać DGD, użyj zakładki Wyślij Tokeny.', + DGD_Label_1: 'Szacunkowa Opłata:', + DGD_Label_2: 'Zapewniona Maksymalna Opłata:', + DGD_Label_3: 'Cena Paliwa:', + DGD_Generate: 'Wygeneruj Żądanie', + DGD_Content: 'Jesteś w trakcie odbierania tokenów DGD.', + + /* Deploy Contracts */ + NAV_DeployContract: 'Wyślij Kontrakt', + DEP_generate: 'Wygeneruj Kod Bajtowy', + DEP_generated: 'Wygenerowany Kod Bajtowy', + DEP_signtx: 'Podpisz Transakcję', + DEP_interface: 'Wygeneruj Interfejs', + + /* My Wallet */ + MYWAL_Nick: 'Nazwa Portfela', + MYWAL_Address: 'Adres Portfela', + MYWAL_Bal: 'Środki', + MYWAL_Edit: 'Edytuj', + MYWAL_View: 'Podgląd', + MYWAL_Remove: 'Usuń', + MYWAL_RemoveWal: 'Usuń Portfel:', + MYWAL_WatchOnly: 'Twoje Konta Tylko-do-Podglądu', + MYWAL_Viewing: 'Podgląd Portfela: ', + MYWAL_Hide: 'Ukryj Dane Portfela', + MYWAL_Edit_2: 'Edytuj Portfel: ', + MYWAL_Name: 'Nazwa Portfela', + MYWAL_Content_1: 'Uwaga! Zaraz usuniesz swój portfel: ', + MYWAL_Content_2: 'Upewnij się, że **zapisałeś klucz prywatny/plik Keystore i hasło** powiązane z tym portfelem zanim je usuniesz.', + MYWAL_Content_3: 'Jeśli będziesz chciał w przyszłości używać ten portfel ze swoim MyEtherWallet CX, będziesz musiał go ponownie dodać używając klucza prywatnego/pliku JSON i hasła.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Ta zakładka pozwoli Ci na odczyt kluczy prywatnych, pobranie kopii portfeli oraz wydrukowanie portfeli papierowych. Pobrane za jej pomocą portfele możesz [zaimportować do Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Jeśli chcesz sprawdzić stan Twojego konta, zalecamy użyć eksploratora bloków np. [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Ta zakładka pozwala Ci na pobranie różnych typów kluczy prywatnych oraz ponowne wydrukowanie portfeli papierowych. ', + VIEWWALLET_SuccessMsg: 'Sukces! Oto dane twojego portfela.', + + /* Chrome Extension */ + CX_error_1: 'Nie posiadasz żadnych zapisanych portfeli. ["Dodaj Portfel"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Wyślij', + + /* Error Messages */ + ERROR_1: 'Wprowadź prawidłową kwotę.', + ERROR_2: 'Twoje hasło musi zawierać co najmniej 9 znaków. Upewnij się, że jest to silne hasło. ', + ERROR_3: 'Przykro nam! Nie rozpoznajemy tego formatu pliku portfela. ', + ERROR_4: 'To nie jest prawidłowy plik portfela. ', + ERROR_5: 'Ta jednostka nie istnieje, użyj jednej z następujących jednostek ', + ERROR_6: 'Błędny adres. ', + ERROR_7: 'Błędne hasło. ', + ERROR_8: 'Błędna wartość. ', + ERROR_9: 'Błędny limit paliwa. ', + ERROR_10: 'Błędne dane. ', + ERROR_11: 'Błędna ilość paliwa. ', + ERROR_12: 'Błędny wyróżnik. ', + ERROR_13: 'Błąd podpisu transakcji. ', + ERROR_14: 'Portfel z tą nazwą już istnieje. ', + ERROR_15: 'Nie znaleziono portfela. ', + ERROR_16: 'Wygląda, że propozycja z tym ID jeszcze nie istnieje, lub wystąpił błąd odczytu tej propozycji. ', + ERROR_17: 'Portfel z tym adresem już istnieje w konfiguracji. Sprawdź zakładkę portfeli. ', + ERROR_18: 'Musisz mieć co najmniej 0.001 ether na koncie aby pokryć koszty paliwa. Doładuj konto i spróbuj ponownie. ', + ERROR_19: 'Całe paliwo było by zużyte w tej transakcji. Oznacza to, że głosowałeś już w tej propozycji albo minął termin głosowania.', + ERROR_20: 'Nieprawidłowy symbol', + SUCCESS_1: 'Prawidłowy adres', + SUCCESS_2: 'Portfel został odszyfrowany', + SUCCESS_3: 'Transakcja zgłoszona. TX ID: ', + SUCCESS_4: 'Twój portfel został dodany: ', + SUCCESS_5: 'Zagłosowałeś z powodzeniem. Dziękuję za bycie aktywnym uczestnikiem The DAO.', + SUCCESS_6: 'Wybrany plik: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Nieprawidłowy nadawca', + GETH_Nonce: 'Wyróżnik transakcji za niski', + GETH_Cheap: 'Cena paliwa poniżej akceptacji', + GETH_Balance: 'Niewystarczająca ilość środków na koncie', + GETH_NonExistentAccount: 'Konto nie istnieje lub niewystarczająca ilość środków', + GETH_InsufficientFunds: 'Niewystarczająca ilość środków na paliwo * cena + kwota', + GETH_IntrinsicGas: 'Paliwo poniżej ilości obowiązkowej', + GETH_GasLimit: 'Przekroczono limit paliwa na blok', + GETH_NegativeValue: 'Ujemna wartość', + + /* Tranlsation Info */ + translate_version: '3.0 (0.3)', + Translator_Desc: 'Podziękowania tłumaczom: ', + TranslatorName_1: '[egzi](?to=0xef39C3C51615B6e52e7D5B743BeaecdDcA822386&value=1.0#send-transaction)', + TranslatorAddr_1: '0xef39C3C51615B6e52e7D5B743BeaecdDcA822386', // donation address 0x1234 + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: '', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: '', + TranslatorAddr_3: '', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: '', + TranslatorAddr_4: '', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: '', + TranslatorAddr_5: '', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Jeśli wygenerowałeś portfel -lub- ściągnąłeś repozytorium przed **31.12.2015**, sprawdź swoje portfele i ściągnij nową wersję repozytorium. Kliknij po szczegóły.', + HELP_Desc: 'Widzisz jakieś braki? Masz inne pytania? [Skontaktuj się z nami (tylko angielski)](mailto:myetherwallet@gmail.com), postaramy się odpowiedzieć, pomoże to nam również uaktualnić stronę aby w przyszłości była bardziej pomocna dla innych!', + HELP_Remind_Title: 'W ramach uściślenia', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com i MyEtherWallet CX, jak również niektóre bazowe biblioteki Javascript, których używamy, są wciąż aktywnie rozwijane.** Pomimo tego, że dokładnie testujemy nasze oprogramowanie, pomimo że dziesiątki tysięcy portfeli zostało z powodzeniem wygenerowane przez użytkowników na całym świecie, zawsze istnieje pewne znikome prawdopodobieństwo, że nastąpi coś nieoczekiwanego, co spowoduje utratę Twoich środków. Nie inwestuj więc więcej niż jesteś gotów stracić i bądź ostrożny. Gdyby coś takiego się wydarzyło, będzie nam przykro, ale **nie weżmiemy za to odpowiedzialności**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com i MyEtherWallet CX nie są "portfelami internetowymi". Nie tworzysz kont internetowych i nie przekazujesz nam Twoich środków na przechowanie. W żadnym momencie Twoje klucze prywatne nie opuszczają Twojej przeglądarki/komputera. My jedynie ułatwiamy Ci tworzenie, zapisywanie, dostęp do twoich danych i interakcję z siecią Ethereum.', + HELP_Remind_Desc_3: 'Jeśli utracisz swój klucz prywatny lub zapomnisz hasło nie będzie możliwości odzyskania dostępu do Twojego portfela oraz środków tam zgromadzonych. Wykonaj kopie bezpieczeństwa i przechowuj je w wielu fizycznie niezależnych miejscach, nie tylko na Twoim komputerze!', + + HELP_0_Title: '0) Jestem zielony. Od czego mam zacząć?', + HELP_0_Desc_1: 'MyEtherWallet daje Ci możliwość generowania nowych portfeli abyś mógł przechowywać własne środki samodzielnie, nie na portalu wymiany walut. Ten proces odbywa się w całości na Twoim komputerze, nie na naszych serwerach. Z tego powodu, gdy generujesz nowy portfel, **to Ty jesteś odpowiedzialny za jego bezpieczne przechowywanie**.', + HELP_0_Desc_2: 'Wygeneruj nowy portfel.', + HELP_0_Desc_3: 'Wykonaj kopię bezpieczeństwa.', + HELP_0_Desc_4: 'Zweryfikuj, że masz dostęp do właśnie stworzonego portfela oraz że prawidłowo zachowałeś wszystkie niezbędne informacje.', + HELP_0_Desc_5: 'Prześlij środki do nowo utworzonego portfela.', + + HELP_1_Title: '1) Jak mam utworzyć nowy portfel? ', + HELP_1_Desc_1: 'Przejdź na zakładkę "Wygeneruj Portfel".', + HELP_1_Desc_2: 'Przejdź na zakładkę "Dodaj Portfel" i zaznacz "Generuj Nowy Portfel"', + HELP_1_Desc_3: 'Wpisz silne hasło. Jeśli uważasz, że mógłbyś je zapomnieć, zapisz je w jakimś bezpiecznym miejscu. Będziesz potrzebować tego hasła aby wysyłać transakcje.', + HELP_1_Desc_4: 'Kliknij "GENERUJ".', + HELP_1_Desc_5: 'Twój nowy portfel został właśnie wygenerowany.', + + HELP_2a_Title: '2a) Jak mam zapisać/wykonać kopię mojego portfela?', + HELP_2a_Desc_1: 'Zawsze powinieneś wykonać zewnętrzną kopię bezpieczeństwa w wielu fizycznie niezależnych lokalizacjach - na przykład na nośniku USB i/lub kartce papieru.', + HELP_2a_Desc_2: 'Zapisz swój adres. Możesz zachować go dla siebie lub udostępnić go innym. Inne osoby znając ten adres mogą Ci na niego wysyłać środki.', + HELP_2a_Desc_3: 'Zachowaj klucz prywatny w przynajmniej jednym formacie. Nie udostępniaj go nikomu. Klucz prywatny będzie Ci potrzebny jeśli będziesz chciał uzyskać dostęp do Twojego portfela i wysyłać z niego środki! Istnieją 3 formaty zapisu kluczy prywatnych:', + HELP_2a_Desc_4: 'Umieść adres portfela, klucz prywatny i PDF z papierową wersją portfela w jednym folderze. Zapisz ten folder na komputerze i na nośniku USB.', + HELP_2a_Desc_5: 'Wydrukuj portfel jeżeli posiadasz drukarkę. Jeżeli nie, zapisz klucz prywatny i adres na kartce papieru. Umieść go w bezpiecznym miejscu oddzielnie od komputera i nośnika USB.', + HELP_2a_Desc_6: 'Pamiętaj, że musisz się zabezpieczyć przed utratą kluczy i hasła z powodu zagubienia, uszkodzenia lub zniszczenia dysku twardego, nośnika USB lub kartki z zapisanymi danymi. Przewiduj również możliwość wystąpienia katastrofy obejmujących większe obszary (pożar, powódź).', + + HELP_2b_Title: '2b) Jak mogę utworzyć portfel w 100% odizolowany od sieci globalnej (Cold Wallet) wykorzystując MyEtherWallet?', + HELP_2b_Desc_1: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_2b_Desc_3: 'Przenieś paczkę zip na odizolowany system.', + HELP_2b_Desc_4: 'Rozpakuj paczkę i kliknij 2-krotnie `index.html`.', + HELP_2b_Desc_5: 'Wygeneruj portfel przy użyciu silnego hasła.', + HELP_2b_Desc_6: 'Zapisz adres. Zapisz klucz prywatny. Zapisz hasło jeżeli nie jesteś w stanie go zapamiętać po wsze czasy.', + HELP_2b_Desc_7: 'Zapisz kopie zapasowe w formie papierowej lub na nośniku USB w wielu fizycznie odseparowanych lokalizacjach.', + HELP_2b_Desc_8: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" wprowadź klucz prywatny / hasło aby upewnić się, że są poprawne i odczytaj swój portfel. Sprawdź czy adres, który zapisałeś zgadza się z wyświetlonym.', + + HELP_3_Title: '3) Jak zweryfikować czy mam dostęp do portfela?', + HELP_3_Desc_1: '**Zanim wyślesz jakieś środki do Twojego nowego portfela** powinieneś się upewnić, że masz do niego dostęp.', + HELP_3_Desc_2: 'Przejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_3_Desc_3: 'Przejdź na zakładkę "Wyświetl informacje o portfelu" na stronie MyEtherWallet.com.', + HELP_3_Desc_4: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_3_Desc_5: 'Jeżeli portfel jest szyfrowany automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_3_Desc_6: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_3_Desc_7: 'Informacje o Twoim portfelu powinny się wyświetlić. Odszukaj adres Twojego portfela obok okrągłej kolorowej ikonki. Ta ikona to wizualna reprezentacja adresu Twojego portfela. Upewnij się, że adres odpowiada adresowi zapisanemu w dokumencie tekstowym i na portfelu papierowym.', + HELP_3_Desc_8: 'Jeśli planujesz trzymać w portfelu jakieś większe sumy, zalecamy w pierwszej kolejności wykonanie kilku testowych transakcji o mniejszej wartości. Prześlij do Twojego nowego portfela 0.001 ether, wejdź do portfela, prześlij te 0.001 ether na inny adres i upewnij się, że wszystko przebiegło jak należy.', + + HELP_4_Title: '4) Jak wysłać Ether z jednego portfela na inny?', + HELP_4_Desc_1: 'Jeżeli planujesz przesłać większą sumę środków, najpierw powinieneś wysłać mniejszą kwotę, aby upewnić się, że wszystko przebiegło zgodnie z planem.', + HELP_4_Desc_2: 'Przejdź na zakładkę "Wyślij Ether".', + HELP_4_Desc_3: 'Wybierz Twój plik portfela -lub- wpisz klucz prywatny i odblokuj portfel.', + HELP_4_Desc_4: 'Jeżeli portfel jest szyfrowany, automatycznie wyświetli się okienko tekstowe. Wpisz w nim hasło.', + HELP_4_Desc_5: 'Kliknij przycisk "Odblokuj Portfel".', + HELP_4_Desc_6: 'Wpisz adres, na który chcesz przesłać środki w pole "Do adresu:".', + HELP_4_Desc_7: 'Wpisz kwotę do wysyłania. Możesz też kliknąć "Wyślij wszystkie dostępne środki", jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4_Desc_8: 'Notka: Od czerwca 2016, musisz się upewnić aby rozdzielić walutę ETC i ETH zanim prześlesz ether, jak byś to zrobił normalnie. Przejdź do pytania 6 poniżej po więcej informacji.', + HELP_4_Desc_9: 'Kliknij "Wygeneruj i Podpisz Transakcję".', + HELP_4_Desc_10: 'Pojawi się kilka kolejnych pól. Są to dane transakcji wygenerowane przez Twoją przeglądarkę.', + HELP_4_Desc_11: 'Kliknij niebieski przycisk "Wyślij Transakcję" na dole strony.', + HELP_4_Desc_12: 'Pojawi się okienko z potwierdzeniem. Zweryfikuj czy kwota i adres, na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź Transakcję.".', + HELP_4_Desc_13: 'Transakcja zostanie wysłana i zostanie wyświetlony TX ID. Możesz kliknąć TX ID, aby zobaczyć tą transakcję w eksploratorze bloków. ', + + HELP_4CX_Title: '4)Jak wysłać Ether używając MyEtherWallet CX?', + HELP_4CX_Desc_1: 'Najpierw musisz dodać portfel. Po dodaniu portfela masz 2 możliwości do wyboru: funkcja "Wyślij" z ikony Rozszerzenia Chrome lub zakładka "Wyślij Ether" ze strony "Moje Portfele".', + HELP_4CX_Desc_2: 'Wyślij:', + HELP_4CX_Desc_3: 'Kliknij ikonę Rozszerzenia Chrome.', + HELP_4CX_Desc_4: 'Kliknij przycisk "Wyślij".', + HELP_4CX_Desc_5: 'Wybierz portfel, z którego chcesz wysłać środki.', + HELP_4CX_Desc_6: 'Wpisz adres, do którego chcesz wysłać środki w pole "Do Adresu:".', + HELP_4CX_Desc_7: 'Wpisz kwotę do wysłania. Możesz również kliknąć "Wyślij wszystkie dostępne środki" jeśli chcesz przesłać całą dostępną kwotę.', + HELP_4CX_Desc_8: 'Kliknij "Wyślij Transakcję". ', + HELP_4CX_Desc_9: 'Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe.', + HELP_4CX_Desc_10: 'Wpisz hasło do tego portfela.', + HELP_4CX_Desc_11: 'Kliknij "Wyślij Transakcję."', + HELP_4CX_Desc_12: 'Używając zakładki "Wyślij Ether": ', + + HELP_5_Title: '5) Jak uruchomić MyEtherWallet offline/lokalnie? ', + HELP_5_Desc_1: 'Możesz uruchomić MyEtherWallet lokalnie ze swojego komputera zamiast z serwerów GitHub\'a. Możesz wygenerować portfel całkowicie offline\'owo i wysyłać transakcje z zakładki "Wyślij offline".', + HELP_5_Desc_2: 'Wejdź na nasze konto github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Kliknij pobierz zip w górnym prawym rogu.', + HELP_5_Desc_4: 'Przenieś paczkę zip na odizolowany system.', + HELP_5_Desc_5: 'Rozpakuj paczkę.', + HELP_5_Desc_6: 'Kliknij 2-krotnie `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet działa teraz w całości na Twoim komputerze.', + HELP_5_Desc_8: 'W razie gdybyś nie wiedział, musisz zachować cały folder, aby strona działała prawidłowo, nie tylko `index.html`. Nie ruszaj i nie przenoś nic innego w folderze. Jeżeli zachowujesz kopie repozytorium MyEtherWallet na przyszłość, zalecamy przechowywać je w formie spakowanego pliku ZIP, aby mieć pewność, że jego zawartość się nie zmieniła.', + HELP_5_Desc_9: 'Ponieważ ciągle aktualizujemy MyEtherWallet, zalecamy co jakiś czas aktualizować zapisaną wersję repozytorium.', + + HELP_5CX_Title: '5) Jak mogę zainstalować to rozszerzenie z repozytorium, zamiast z Chrome Web Store? ', + HELP_5CX_Desc_1: 'Wejdź na nasze konto github i znajdź najnowszą wersję Rozszerzenia Chrome: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Przewiń na sam dół i kliknij prawym na najnowszą wersję. Kliknij "Zapisz link jako".', + HELP_5CX_Desc_3: 'Wejdź w ustawienia przeglądarki Google Chrome (w menu w górnym prawym rogu).', + HELP_5CX_Desc_4: 'Kliknij "Rozszerzenia" po lewej.', + HELP_5CX_Desc_5: 'Kliknij "Tryb programisty" na górze strony.', + HELP_5CX_Desc_6: 'Kliknij przycisk "Wczytaj rozszerzenie bez pakietu...".', + HELP_5CX_Desc_7: 'Nawiguj do rozpakowanego folderu, który ściągnąłeś wcześniej. Kliknij "OK".', + HELP_5CX_Desc_8: 'Rozszerzenie powinno się pojawić na liście i w pasku rozszerzeń przeglądarki Chrome.', + + HELP_6_Title: '6) Jak rozdzielić środki ETH / ETC? ', + HELP_6_Desc_1: 'Kiedy w sieci Ethereum wprowadzono twarde zmiany (tzw. hard fork) w związku z wyprowadzeniem środków z The DAO, wszystkie środki ETH jakie posiadałeś mają teraz swoją równowartość w ETC. Jeśli wyślesz ETH za pomocą standardowej transakcji, zostaną wysłane również środki ETC. Aby temu zapobiec, musisz rozdzielić swoje środki z pierwotnego konta na dwa nowe konta. Idąc dalej, musisz się upewnić, że tylko ETH zostanie wysłane do konta ETH i tylko ETC zostanie wysłane do konta ETC.', + HELP_6_Desc_2: 'Możesz też wysłać połączone środki ETH i ETC za pomocą standardowej transakcji do portalu Kraken lub Poloniex. Te kantory rozdzielą Twoje środki na ETH i ETC. Możesz wtedy wypłacić te środki do osobnych portfeli lub sprzedać ETC lub ETH.', + HELP_6_Desc_3: '[Więcej informacji na temat portfeli i ataków powielających znajdziesz tutaj](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETH.', + HELP_6_Desc_5: 'Wygeneruj nowy, czysty adres, na który trafią jedynie środki ETC.', + HELP_6_Desc_6: 'Wykonaj kopie zapasowe tych portfeli i upewnij się, że masz do nich dostęp. Zobacz punkty 2a i 3 powyżej.', + HELP_6_Desc_7: 'Wyślij 0.1234 ETH do Twojego nowego adresu "ETH" używając opcji "Tylko ETH" na zakładce "Wyślij Ether".', + HELP_6_Desc_8: 'Wyślij 0.5678 ETC do Twojego nowego adresu "ETC" używając opcji "Tylko ETC".', + HELP_6_Desc_9: 'Sprawdź czy tylko kwota 0.1234 ETH została przesłana na etherscan.io. Sprawdź czy tylko kwota 0.5678 ETC została przesłana na gastracker.io.', + HELP_6_Desc_10: 'Wyślij transakcję o wartości 0.0001 ETH z Twojego nowego portfela ETH. Sprawdź na etherscan.io. Upewnij się, że 0.0001 ETH zostało przesłane.', + HELP_6_Desc_11: ' Wygeneruj transakcję o wartości 0.0002 ETC (ale nie wysyłaj) z Twojego nowego portfela ETC. Skopiuj zawartość pola "Podpisana Transakcja". ', + HELP_6_Desc_12: 'Przejdź do [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction), wklej skopiowane dane na classicetherwallet.com na zakładce "Wyślij offline" na samym dole strony i wyślij transakcję. Sprawdź na gastracker.io czy 0.0002 ETC zostało przetransferowane.', + HELP_6_Desc_13: 'Jeśli wszystko wysyła i odbiera się poprawnie, jesteś w domu.', + HELP_6_Desc_14: 'Wyślij pozostałe środki ETH z opcją "Tylko ETH", następnie powtórz tą czynność dla ETC z opcją "Tylko ETC".', + HELP_6_Desc_15: ' Po wykonaniu tych czynności możesz używać standardowych transakcji na nowo utworzonych kontach bez ryzyka ataku powielającego. ', + + HELP_7_Title: '7) Jak się wysyła Tokeny i jak tworzyć własne Tokeny?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) jest świetnym miejscem na przeglądanie tokenów oraz sprawdzenia ich ilości miejsc po przecinku.', + HELP_7_Desc_1: 'Przejdź na zakładkę "Wyślij Tokeny".', + HELP_7_Desc_2: 'Odblokuj portfel.', + HELP_7_Desc_3: 'Wpisz adres, na który chcesz je przesłać w pole "Do Adresu:".', + HELP_7_Desc_4: 'Wpisz wartość jaką chcesz wysłać.', + HELP_7_Desc_5: 'Wybierz typ tokena, który chcesz wysłać.', + HELP_7_Desc_6: 'Jeśli nie widzisz danego tokena:', + HELP_7_Desc_7: 'Kliknij "Inny".', + HELP_7_Desc_8: 'Wpisz adres, symbol i ilość miejsc po przecinku tokena. Wartości te są podawane przez twórców tokena, są również potrzebne podczas dodawania tokena do obserwowanych w aplikacji Mist.', + HELP_7_Desc_9: 'Kliknij "Zapisz".', + HELP_7_Desc_10: 'Możesz teraz wysyłać ten token, jak również odczytać stan konta dla tokenu w kolumnie obok.', + HELP_7_Desc_11: 'Kliknij "Generuj Transakcję".', + HELP_7_Desc_12: 'Pojawi się kilka kolejnych pól z danymi transakcji wygenerowanymi przez Twoją przeglądarkę.', + HELP_7_Desc_13: 'Kliknij niebieski przycisk "Wyślij Transakcję", który znajduje się niżej.', + HELP_7_Desc_14: 'Wyskoczy okienko. Zweryfikuj czy kwota i adres na który wysyłasz są prawidłowe. Następnie kliknij "Tak, jestem pewien! Zatwierdź transakcję.".', + HELP_7_Desc_15: 'Transakcja zostanie zatwierdzona. TX ID zostanie wyświetlone. Możesz kliknąć TX ID aby zobaczyć status transakcji w eksploratorze.', + + HELP_8_Title: '8) Co się stanie, jeżeli wasza strona zniknie z sieci?', + HELP_8_Desc_1: 'MyEtherWallet nie jest usługą portfela internetowego. Nie posiadasz loginu i nic nie jest zapisywane na naszych serwerach. To tylko interfejs, który pozwala korzystać z sieci Ethereum.', + HELP_8_Desc_2: 'Jeżeli MyEtherWallet.com zostanie wyłączona, musiałbyś znaleźć inny sposób (jak Ethereum Wallet / Mist) na korzystanie z sieci Ethereum. Nie musiałbyś jednak wypłacić swoich środków z MyEtherWallet, ponieważ one nie znajdują się na MyEtherWallet, a na portfelach, które zostały wygenerowane za pomocą naszej strony.', + HELP_8_Desc_3: 'Możesz w każdej chwili, w bardzo prosty sposób, zaimportować swoje nieszyfrowane klucze prywatne lub szyfrowane pliki w formacie Geth/Mist wprost do geth / Ethereum Wallet / Mist. Zobacz pytanie 12 poniżej.', + HELP_8_Desc_4: 'W dodatku prawdopodobieństwo zamknięcia przez nas strony MyEtherWallet.com jest bliskie zeru. Koszty utrzymania strony są prawie żadne, ponieważ nie przechowujmy żadnych informacji. Jeśli nawet strona zostanie zamknięta, jest ona również i zawsze będzie publicznie dostępna na [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Możesz ściągnąć paczkę ZIP i uruchomić MyEtherWallet lokalnie na własnym komputerze. ', + + HELP_8CX_Title: '8) Co się stanie jeżeli MyEtherWallet CX zniknie?', + HELP_8CX_Desc_1: 'Po pierwsze, wszystkie dane są zapisane na Twoim komputerze, nie na naszych serwerach. Wiem, że może Ci się to wydawać dziwne, ale kiedy patrzysz na Rozszerzenie Chrome, NIE patrzysz na coś zapisanego gdzieś na naszych serwerach - wszystko to jest na Twoim własnym komputerze.', + HELP_8CX_Desc_2: 'Z tego powodu, jest **niezmiernie ważnym** aby wykonywać kopie bezpieczeństwa wszystkich nowych portfeli wygenerowanych za pomocą MyEtherWallet CX. W ten sposób, jeżeli cokolwiek stanie się MyEtherWallet CX lub Twojemu komputerowi, wciąż będziesz miał wszelkie niezbędne informacje potrzebne aby odzyskać dostęp do Twoich portfeli. Zobacz punkt 2a aby dowiedzieć się jak wykonać kopie bezpieczeństwa.', + HELP_8CX_Desc_3: 'Jeżeli z jakiegoś powodu MyEtherWallet CX zniknie z Chrome Store, możesz wciąż znaleźć kod źródłowy na Github\'ie i załadować manualnie do Chrome. Zobacz pkt. 5 powyżej.', + + HELP_9_Title: '9) Czy zakładka "Wyślij Ether" działa offline?', + HELP_9_Desc_1: ' Nie, zakładka wysyłania transakcji nie działa offline. Potrzebuje dostępu do internetu w celu pobrania aktualnej ceny paliwa, wyróżnika dla konta, oraz rozgłoszenia transakcji (wysłania). Jednakże wysyłana jest jedynie podpisana transakcja, nic więcej. Twój klucz prywatny w żadnym momencie nie opuszcza Twojego komputera. Teraz zapewniamy również funkcję "Wyślij Offline", która umożliwia przechowywanie kluczy prywatnych na komputerze, który fizycznie jest odizolowany od sieci zewnętrznej.', + + HELP_10_Title: '10) Jak wykonać transakcję offline (Cold Wallet)?', + HELP_10_Desc_1: 'Przejdź na zakładkę "Wyślij Offline" na komputerze z dostępem do internetu.', + HELP_10_Desc_2: 'Uzupełnij pole "Od Adresu". Zauważ, że jest to adres, z którego wypłacasz środki, nie adres, na który mają trafić. W ten sposób generowany jest wyróżnik i cena paliwa.', + HELP_10_Desc_3: 'Przejdź na komputer bez dostępu do internetu. Uzupełnij pole "Do Adresu" i kwotę do wysłania.', + HELP_10_Desc_4: 'Wpisz cenę paliwa jaka została wyświetlona na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_5: 'Wpisz wyróżnik jaki został wyświetlony na komputerze z internetem w kroku pierwszym.', + HELP_10_Desc_6: '"Limit Paliwa" ma domyślną wartość 21000. To pokryje koszty standardowej transakcji. Jeżeli będziesz wysyłać transakcję do kontraktu lub będziesz załączać jakieś dane do transakcji, musisz zwiększyć tą wartość. Nadpłata paliwa zostanie zwrócona.', + HELP_10_Desc_7: 'Jeśli chcesz możesz załączyć dane do transakcji. Musisz wtedy jednak zapewnić więcej niż domyślne 21000 limitu paliwa. Dane wpisujemy w formacie HEX.', + HELP_10_Desc_8: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel.', + HELP_10_Desc_9: 'Kliknij przycisk "Wygeneruj Transakcję".', + HELP_10_Desc_10: 'W polu poniżej pojawią się dane podpisanej transakcji. Skopiuj jego zawartość na komputer z dostępem do internetu. ', + HELP_10_Desc_11: 'Na komputerze z internetem wklej podpisaną transakcję w pole tekstowe w kroku 3 i kliknij "Wyślij Transakcję". To spowoduje rozgłoszenie transakcji.', + + HELP_11_Title: '11) Jak wysłać transakcję do kontraktu?', + HELP_11_Desc_1: 'Wysyłanie do kontraktu zazwyczaj wymaga załączenia dodatkowych danych i/lub dodatkowej ilości paliwa', + HELP_11_Desc_2: 'Przejdź na zakładkę "Wyślij Ether". ', + HELP_11_Desc_3: 'Wybierz Twój plik portfela -lub- klucz prywatny i odblokuj portfel. ', + HELP_11_Desc_4: 'Wpisz adres i kwotę do wysłania.', + HELP_11_Desc_5: 'Kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" pod polem z kwotą. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_12_Title: '12) Jak zaimportować portfel utworzony w MyEtherWallet do geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Używając pliku Keystore Geth/Mist z MyEtherWallet v2+....', + HELP_12_Desc_2: 'Wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_3: 'Odblokuj portfel używając Twojego klucza prywatnego lub pliku portfela. ', + HELP_12_Desc_4: 'Wejdź na zakładkę "Moje Portfele".', + HELP_12_Desc_5: 'Zaznacz portfel jaki chcesz zaimportować do Mist, kliknij ikonkę "Podgląd", wpisz hasło i wejdź do podglądu. ', + HELP_12_Desc_6: 'Znajdź sekcję "Plik Keystore/JSON (Zalecany · Szyfrowany · Format Mist/Geth)". Kliknij przycisk "Pobierz" pod spodem. W ten sposób uzyskałeś plik Keystore.', + HELP_12_Desc_7: 'Uruchom aplikację Ethereum Wallet. ', + HELP_12_Desc_8: 'W menu programu wejdź w: "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'Otworzy się folder z plikami ustawień. Skopiuj pobrany przed chwilą plik portfela (`UTC--2016-04-14......../`) do folderu keystore.', + HELP_12_Desc_10: 'Twój portfel powinien się od razu pojawić na zakładce "Accounts."', + HELP_12_Desc_11: 'Używając nieszyfrowanego klucza prywatnego...', + HELP_12_Desc_12: 'Jeżeli jeszcze nie posiadasz nieszyfrowanego klucza prywatnego, wejdź na zakładkę "Wyświetl informacje o portfelu".', + HELP_12_Desc_13: 'Wybierz swój plik portfela i odblokuj portfel.', + HELP_12_Desc_14: 'Skopiuj "Klucz Prywatny (nieszyfrowany)".', + HELP_12_Desc_15: 'Jeśli pracujesz na Mac\'u:', + HELP_12_Desc_15b: 'Jeśli pracujesz na PC\'cie:', + HELP_12_Desc_16: 'Otwórz Text Edit i wklej do niego skopiowany klucz prywatny.', + HELP_12_Desc_17: 'Wejdź do paska menu i kliknij "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Zapisz ten plik na `desktop/` jako `nic_specjalnego_usun_mnie.txt`. Podczas zapisywania ustaw "UTF-8" i "If no extension is provided use .txt".', + HELP_12_Desc_19: 'Otwórz terminal systemowy i uruchom następującą komendę: `geth account import ~/Desktop/nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_20: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_21: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_22: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts".', + HELP_12_Desc_23: 'Otwórz Notatnik i wklej klucz prywatny', + HELP_12_Desc_24: 'Zapisz plik notatnika jako `nic_specjalnego_usun_mnie.txt` na `C:\\`', + HELP_12_Desc_25: 'Uruchom wiersz poleceń i wykonaj komendę: `geth account import C:\\nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_26: 'Zostaniesz zapytany o hasło. To będzie hasło portfela w geth / Ethereum Wallet / Mist, które należy podać przy każdej transakcji, nie zapomnij tego hasła.', + HELP_12_Desc_27: 'Po zaimportowaniu portfela, usuń `nic_specjalnego_usun_mnie.txt`', + HELP_12_Desc_28: 'Po ponownym uruchomieniu aplikacji Ethereum Wallet Twój portfel pojawi się na zakładce "Accounts". ', + + HELP_13_Title: '13) Co oznacza "Gas Limit Too Low" ("Limit paliwa zbyt niski")?', + HELP_13_Desc_1: 'Najprawdopodobniej oznacza to, że chcesz wysłać Ether do kontraktu. Wysyłanie do kontraktu wymaga nieco więcej danych, a więc również więcej paliwa. Na zakładce "Wyślij Ether" kliknij "+Zaawansowane: Dodaj Więcej Paliwa lub Dane" poniżej pola kwoty. Pojawią się 2 nowe pola gdzie możesz zwiększyć ilość paliwa powyżej domyślnej wartości 21000 lub wpisać dane do transakcji.', + + HELP_14_Title: '14) Niektóre strony wykorzystują ruchy myszką przy generowaniu klucza prywatnego. MyEtherWallet tego nie robi. Czy generator liczb losowych w MyEtherWallet jest bezpieczny?', + HELP_14_Desc_1: 'Chociaż generowanie liczb losowych przy udziale ruchów myszki jest sprytnie pomyślane i rozumiemy dlaczego ludzie to lubią, to jednak rzeczywistość jest taka, że window.crypto zapewnia większą entropię niż ruchy myszką. Generowanie z ruchów myszki nie jest niebezpieczne, ale my (oraz znaczna liczba innych ekspertów kryptografii) wierzymy w window.crypto. W dodatku MyEtherWallet może być używane na urządzeniach dotykowych. Tutaj można przeczytać [rozmowę rozeźlonego reddit\'ora i Vitalik\'a Buterin\'a odnośnie ruchów myszki kontra window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) a tutaj jest [specyfikacja window.crypto w3](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Dlaczego portfel, który właśnie wygenerowałem nie pokazuje się w eksploratorze bloków? (np. etherchain, etherscan)', + HELP_15_Desc_1: 'Adres pojawi się w eksploratorze bloków dopiero jak adres portfela będzie uczestniczył w jakichś transakcjach, np. jak wyślesz do niego jakieś środki.', + + HELP_16_Title: '16) Jak sprawdzić stan mojego konta? ', + HELP_16_Desc_1: 'Możesz użyć eksploratora bloków jak [etherscan.io](http://etherscan.io/). Wklej swój adres w wyszukiwarkę na stronie eksploratora, pokaże ona stan Twojego konta oraz historię transakcji. Tak na przykład wygląda nasze [konto donacji](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) na etherscan.io. ', + + HELP_17_Title: '17) Dlaczeg stan mojego konta nie pojawia się, kiedy odblokowuje mój portfel? ', + HELP_17_Desc_1: ' Najprawdopodobniej przyczyną tego jest firewall. API, które używamy do odczytu stanu konta oraz jego konwersji jest często blokowane przez firewall z różnych przyczyn. Wciąż możesz wysyłać transakcje, jednak stan konta musisz sprawdzać w inny sposób, np. na [etherscan.io](http://etherscan.io/)', + + HELP_18_Title: '18) Gdzie jest plik mojego portfela w geth?', + + HELP_19_Title: '19) Gdzie jest plik mojego portfela w Mist? ', + HELP_19_Desc_1: 'Pliki programu Mist można znaleźć zazwyczaj w lokalizacjach wymienionych w pkt. 18, ale prościej jest uruchomić Mist, wybrać "Accounts" w górnym pasku, następnie "Backup" i "Accounts". Otworzy się folder, w którym znajdują się wspomniane pliki.', + + HELP_20_Title: '20) Gdzie jest mój plik portfela przed-sprzedaży?', + HELP_20_Desc_1: 'Tam gdzie go zapisałeś ;). Był też wysłany mailem, sprawdź również tam. Szukaj pliku `"ethereum_wallet_backup.json"`. Portfel ten będzie zaszyfrowany hasłem jakie podałeś podczas procesu kupna na przed-sprzedaży.', + + HELP_21_Title: '21) Czy nie jest tak, że każdy może losowo sprawdzać różne klucze prywatne, a jak znajdzie taki ze środkami możę przelać je na swoje konto? ', + HELP_21_Desc_1: 'Krótka odpowiedź: Tak. Jednak znalezienie któregokolwiek ze środkami zajęłoby więcej czasu niż wszechświat istnieje... więc... nie.', + HELP_21_Desc_2: 'Długa wersja (dla przedszkolaka): Ethereum bazuje na [Kryptografii Klucza Publicznego (ECC)](https://pl.wikipedia.org/wiki/Kryptografia_klucza_publicznego), a dokładnie na [Kryptografii Krzywych Eliptycznych](https://eprint.iacr.org/2013/734.pdf) które są bardzo szeroko stosowane, nie tylko w Ethereum. Większość serwerów jest chroniona przez ECC. Kolejne przykłady to Bitcoin, SSH, TLS i wiele innych. Klucze w Ethereum to dokładnie odmiana 256-bitowa, która jest silniejsza niż 128-bitowa i 192-bitowa, które również są wciąż szeroko stosowane oraz uznawane przez ekspertów za bezpieczne. ', + HELP_21_Desc_3: 'W tego typu zabezpieczeniu mamy 2 klucze: klucz prywatny i klucz publiczny. Z klucza prywatnego możemy szybko otrzymać klucz publiczny, ale otrzymanie klucza prywatnego z klucza publicznego jest niemożliwe. Biorąc pod uwagę, że cały internet i wszystkie sekrety świata używają tej metody kryptograficznej oznacza, że gdyby istniał sposób na otrzymanie klucza prywatnego z publicznego, to utrata Twoich środków z konta Ethereum byłaby najmniejszym zmartwieniem w świecie.', + HELP_21_Desc_4: 'Idąc dalej, TAK jeżeli ktoś miałby Twój klucz prywatny mógłby z łatwością wypłacić środki z Twojego konta. Tak samo, jak by ktoś miał hasło do Twojego konta pocztowego, mógłby czytać Twoje maile, lub gdyby miał hasło bankowe, mógłby wypłacać z niego pieniądze. Możesz ściągnąć plik Keystore Twojego portfela, który jest kluczem prywatnym zaszyfrowanym hasłem. To jest tak jak by mieć hasło, które jest chronione innym hasłem.', + HELP_21_Desc_5: 'Więc TAK, teoretycznie można by po prostu wpisywać 64 znaki w kodzie szesnastkowym do momentu trafienia na taki, który nie jest pusty. Co więcej zdolni ludzie mogą napisać program, który będzie bardzo szybko, automatycznie sprawdzał kolejne losowe kombinacje kluczy. Taka metoda nazywa się "brute-forcing" lub "mining". Różni ludzie zastanawiali się nad jej zastosowaniem długo i intensywnie. Z pomocą kilku wysokiej klasy serwerów mogliby być w stanie sprawdzać ponad 1 milion kluczy na sekundę. Jednak nawet wtedy koszt utrzymania pracy tych serwerów byłby wiele razy wyższy niż potencjalne zyski ze znalezienia jakichkolwiek środków. Bardziej prawdopodobne byłoby, że pierwsze trafienie nastąpi dopiero po śmierci Twojej i Twoich prawnuków.', + HELP_21_Desc_6: 'Jeśli wiesz coś na temat Bitcoina, [to może dać Ci perspektywę:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *Aby zilustrować jak mało prawdopodobne to jest: załóżmy, że każdy satoshi (najmniejsza część Bitcoina, 0.00000001 BTC), każdego Bitcoina jaki kiedykolwiek będzie istnieć (21 milionów), został wysłany na swój własny unikalny klucz prywatny. Prawdopodobieństwo, że spośród wszystkich tych kluczy 2 odpowiadałyby tym samym adresom jest jak 1 do 100 kwintylionów.', + HELP_21_Desc_7: '[Jeżeli byś chciał coś bardziej technicznego:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *Te liczby nie mają nic wspólnego z technologią na jakiej opiera się urządzenie. Są maksimami na jakie pozwala termodynamika, co silnie sugeruje, że skuteczne ataki brute-force przeciwko 256-bitowym kluczom będą nieosiągalne, dopóki komputery nie będą zbudowane z czegoś innego niż materia i będą zajmować trochę więcej niż wszechświat.', + HELP_21_Desc_8: 'Oczywiście to wszystko ma miejsce przy założeniu, że klucze są generowane w prawdziwie losowy sposób i z wystarczającą entropią. Klucze tu wygenerowane spełniają te kryteria, tak samo jak klucze w Jaxx i Mist/geth. Portfele Ethereum są w większości całkiem niezłe. Z drugiej strony np. klucze wygenerowane przez ludzki umysł nie spełniają tych kryteriów, jako że ludzki umysł nie jest w stanie wygenerować prawdziwie losowego źródła. W otoczeniu Bitcoina w przeszłości pojawiło się kilka problemów związanych z brakiem odpowiedniej entropii lub brakiem pełnej losowości, ale to całkiem inny temat, być może na inny dzień.', + + HELP_SecCX_Title: 'Bezpieczeństwo - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Gdzie są zapisywane informacje przechowywane przez to rozszerzenie?', + HELP_SecCX_Desc_2: 'Informacje przechowywane przez to Rozszerzenie Chrome jest zapisywane przez [chrome.storage](http://chrome.storage/). - w tym samym miejscu są przechowywane hasła zapisywane w przeglądarce Chrome.', + HELP_SecCX_Desc_3: 'Jakie informacje są zapisywane? ', + HELP_SecCX_Desc_4: 'Adres, nazwa konta, klucz prywatny są przechowywane w chrome.storage. Klucz prywatny jest zaszyfrowany hasłem jakie podano przy zakładaniu portfela. Nazwa i adres nie są szyfrowane.', + HELP_SecCX_Desc_5: 'Dlaczego adres i nazwa konta nie są szyfrowane? ', + HELP_SecCX_Desc_6: 'Jeżeli byśmy zaszyfrowali te informacje, konieczne było by podawanie hasła przy każdym sprawdzeniu stanu konta lub wyświetleniu jego nazwy. Jeśli to Cię niepokoi, możesz użyć MyEherWallet.com zamiast tego Rozszerzenia Chrome.', + + HELP_Sec_Title: 'Bezpieczeństwo', + HELP_Sec_Desc_1: 'Jeśli pierwszym pytaniem jakie Ci się nasuwa jest "Dlaczego miałbym zaufać tym gościom?", to prawidłowy odruch. Być może to pozwoli Ci załagodzić obawy:', + HELP_Sec_Desc_2: 'Działamy od sierpnia 2015. Jeśli wyszukasz ["myetherwallet" na reddit](https://www.reddit.com/search?q=myetherwallet), możesz znaleźć wielu ludzi, którzy używają naszego kodu bez najmniejszych problemów.', + HELP_Sec_Desc_3: 'Nie ukradniemy Twoich pieniędzy ani Twoich kluczy prywatnych. Ta strona nie zawiera złośliwego kodu. W zasadzie, zakładka "Generuj Portfel" działa w pełni po stronie klienckiej. Oznacza to, że cały kod jest uruchamiany wyłącznie na **Twoim komputerze**, a jego rezultat nigdzie nie jest zapisywany ani nigdzie przesyłany.', + HELP_Sec_Desc_4: 'Sprawdź adres URL -- Ta strona jest serwowana przez GitHub. Kod źródłowy jest dostępny pod: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Strona jest dostępna pod domenami: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) i [https://www.myetherwallet.com](https://www.myetherwallet.com). Możesz zweryfikować czy jest hostowana przez GitHub używając [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - ostatnie 2 rekordy "A" zawierają numery IP należące do GitHub\'a i są wykorzystywane do hostowania zewnętrznych domen.', + HELP_Sec_Desc_5: ' Do generowania portfeli możesz pobrać [kod źródłowy](https://github.com/kvhnuke/etherwallet/tree/gh-pages). Zobacz punkt 5 powyżej.', + HELP_Sec_Desc_6: 'Wykonaj test i sprawdź jakie połączenia sieciowe są aktywowane. Najprostszą metodą jest kliknięcie prawym przyciskiem myszy na stronie i "Zbadaj". Przejdź na zakładkę "Network". Wygeneruj testowy portfel. Zobaczysz, że nie są aktywowane żadne połączenia. Możesz zobaczyć coś wyglądającego jak data:image/gif i data:image/png. To są kody QR generowane... na Twoim komputerze... przez Twój komputer. Żadne dane nie były transferowane.', + HELP_Sec_Desc_7: 'Teraz, żeby się upewnić przejdź na zakładkę "Resources". Możesz tu zobaczyć wszystkie elementy tworzące stronę. Jeśli przejdziesz przez Local Storage, Cookies i Cache zobaczysz, że nic nie jest przechowywane. Nic nie jst zapisywane. Odśwież stronę i wszystko zostanie wyczyszczone do wartości domyślnych.', + HELP_Sec_Desc_8: 'Jeśli nie czujesz się komfortowo używając tego oprogramowania, bez względu na wszystko, nie używaj go. Stworzyliśmy te narzędzia jako pomoc w generowaniu nowych portfeli i wykonywaniu transakcji bez potrzeby zagłębiania się w linię poleceń lub prowadzenia pełnego węzła. Jeszcze raz, nie krępuj się z nami skontaktować jeżeli masz jakieś wątpliwości. Postaramy się odpowiedzieć tak szybko jak to możliwe. Dzięki! ', + + HELP_FAQ_Title: 'Więcej Pomocnych Odpowiedzi na Często Zadawane Pytania (tylko angielski)', + HELP_Contact_Title: 'Sposoby Nawiązania Kontaktu (tylko angielski)' +}; + +module.exports = pl; },{}],54:[function(require,module,exports){ -// Portuguese -'use strict'; -var ptbr = function() {} -ptbr.code = 'ptbr'; -ptbr.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ptbr; +// Portuguese +'use strict'; +var pt = function() {} +pt.code = 'pt'; +pt.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = pt; },{}],55:[function(require,module,exports){ -// Russian -'use strict'; -var ru = function() {} -ru.code = 'ru'; -ru.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ваши кошельки', - NAV_AddWallet: 'Добавить кошелёк', - NAV_GenerateWallet: 'Создать кошелёк', - NAV_BulkGenerate: 'Создать несколько кошельков', - NAV_SendEther: 'Перевести эфир (ether)', - NAV_SendTokens: 'Перевести токены', - NAV_Offline: 'Оффлайн-перевод', - NAV_WithdrawDAO: 'Обменять DAO', - DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', - NAV_ClaimDGD: 'Получить DGD', - DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', - NAV_DeployContract: 'Опубликовать контракт', - NAV_MyWallets: 'Мои кошельки', - NAV_ViewWallet: 'Информация о кошельке', - NAV_Help: 'Справка', - NAV_Contact: 'Контакты', - - /* General */ - x_Password: 'Пароль', - x_Download: 'Скачать', - x_Address: 'Ваш адрес', - x_Save: 'Сохранить', - x_Cancel: 'Отменить', - x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', - x_PrivKey: 'Закрытый ключ (не зашифрован)', - x_PrivKey2: 'Закрытый ключ', - x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', - x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', - x_Keystore2: 'Файл Keystore/JSON', - x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', - x_Json: 'Файл JSON (не зашифрован)', - x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', - x_PrintShort: 'Печать', - x_Print: 'Напечатать бумажный кошелёк', - x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', - x_CSV: 'Файл CSV (не зашифрован)', - x_TXT: 'Файл TXT (не зашифрован)', - x_Wallet: 'кошелёк', - - /* Header */ - MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', - CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', - MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', - CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', - - /* Footer */ - FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', - FOOTER_1b: 'Авторы:', - FOOTER_2: 'Пожертвования приветствуются:', - FOOTER_3: 'Создание кошелька на стороне клиента от', - FOOTER_4: 'Отказ от ответственности', - - /* Sidebar */ - sidebar_AccountInfo: 'Информация о счёте: ', - sidebar_AccountAddr: 'Адрес (номер) счёта: ', - sidebar_AccountBal: 'Баланс счёта: ', - sidebar_TokenBal: 'Балансы токенов: ', - sidebar_Equiv: 'Эквивалентные значения: ', - sidebar_TransHistory: 'История транзакций: ', - sidebar_DGDBal: 'Информация о распродаже DGD:', - sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', - sidebar_donate: 'Пожертвовать', - sidebar_thanks: 'СПАСИБО!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', - decrypt_Title: 'Выберите формат Вашего закрытого ключа:', - decrypt_Select: 'Выберите кошелёк:', - - /* Add Wallet */ - ADD_Label_1: 'Что Вы хотите сделать?', - ADD_Radio_1: 'Создать новый кошелёк', - ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', - ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', - ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', - ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', - ADD_Radio_4: 'Добавить счёт в список слежения', - ADD_Label_2: 'Присвоить название:', - ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', - ADD_Label_4: 'Добавить счёт в список слежения', - ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', - ADD_Label_5: 'Введите адрес: ', - ADD_Label_6: 'Отпереть кошелёк', - ADD_Label_6_short: 'Отпереть', - ADD_Label_7: 'Добавить счёт', - - /* Generate Wallets */ - GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', - GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', - GEN_Placeholder_1: 'Не забудьте сохранить это!', - GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', - GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', - GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', - GEN_Label_3: 'Сохраните Ваш адрес.', - GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Сколько кошельков создать', - BULK_Label_2: 'Создать кошельки', - BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Адрес получателя: ', - SEND_amount: 'Сумма перевода: ', - SEND_amount_short: 'Сумма', - SEND_custom: 'Другое', - SEND_gas: 'Газ', - SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter - SEND_generate: 'Сформировать транзакцию', - SEND_raw: 'Готовая транзакция', - SEND_signed: 'Подписанная транзакция', - SEND_trans: 'Отправить транзакцию', - SENDModal_Title: 'Внимание! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Вы собираетесь перевести', - SENDModal_Content_2: 'на адрес', - SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', - SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', - SENDModal_No: 'Нет, отменить транзакцию!', - SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', - - /* Tokens */ - TOKEN_Addr: 'Адрес: ', - TOKEN_Symbol: 'Символ токена: ', - TOKEN_Dec: 'Дробность (знаков после запятой): ', - - /* Send Transaction */ - TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', - TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', - TRANS_standard: 'Эфир (ether, обычная транзакция)', - TRANS_eth: 'Только ETH', - TRANS_etc: 'Только ETC', - TRANS_advanced: '+Дополнительно: добавить газ или данные ', - TRANS_data: ' Данные: ', - TRANS_gas: ' Газ: ', - TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', - TRANSModal_Content_0: 'О видах транзакций и сервисах:', - TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', - TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', - TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', - TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', - TRANSModal_Yes: 'Спасибо, я всё понял.', - TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', - - /* Offline Transaction */ - OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', - OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', - OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', - OFFLINE_Step1_Button: 'Подготовка информации', - OFFLINE_Step1_Label_1: 'Адрес отправителя: ', - OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', - OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', - OFFLINE_Step2_Label_1: 'Адрес получателя: ', - OFFLINE_Step2_Label_2: 'Сумма перевода', - OFFLINE_Step2_Label_3: 'Цена газа ', - OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_4: 'Лимит газа ', - OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', - OFFLINE_Step2_Label_5: '№ перевода (nonce)', - OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', - OFFLINE_Step2_Label_6: 'Данные', - OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', - OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', - OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', - OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', - - /* DAO */ - DAO_bal1: 'на момент создания блока №1.919.999', - DAO_bal2: 'текущий', - DAO_TitleETH: 'Обменять DAO токены на ETH', - DAO_TitleETC: 'Обменять DAO токены на ETC', - DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', - DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', - DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', - DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', - DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', - DAOModal_Title: 'Просто чтобы убедиться...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Вы собираетесь обменять', - DAOModal_2: 'DAO токенов. На адрес', - DAOModal_3: 'будет зачислено', // "in return for" - - /* Digix */ - DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', - DGD_Label_1: 'Предположительный размер комиссии:', - DGD_Label_2: 'Максимальный размер комиссии:', - DGD_Label_3: 'Цена газа:', - DGD_Generate: 'Сформировать требование', - DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', - - /* Deploy Contracts */ - DEP_generate: 'Сформировать байткод', - DEP_generated: 'Сформированный байткод', - DEP_signtx: 'Подписать транзакцию', - DEP_interface: 'Сформированный интерфейс', - - /* My Wallet */ - MYWAL_Nick: 'Название кошелька', - MYWAL_Address: 'Адрес кошелька', - MYWAL_Bal: 'Баланс', - MYWAL_Edit: 'Редактировать', - MYWAL_View: 'Просмотреть', - MYWAL_Remove: 'Удалить', - MYWAL_RemoveWal: 'Удалить кошелёк:', - MYWAL_WatchOnly: 'Список слежения', - MYWAL_Viewing: 'Просматриваемый кошелёк: ', - MYWAL_Hide: 'Скрыть информацию о кошельке', - MYWAL_Edit_2: 'Редактировать кошелёк: ', - MYWAL_Name: 'Имя кошелька', - MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', - MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', - MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', - VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', - - /* Chrome Extension */ - CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', - CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" - - - /* Error Messages */ - ERROR_1: 'Пожалуйста, введите сумму корректно.', - ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', - ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', - ERROR_4: 'Этот файл не является файлом кошелька. ', - ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', - ERROR_6: 'Неправильный адрес. ', - ERROR_7: 'Неверный пароль. ', - ERROR_8: 'Некорректная сумма. ', - ERROR_9: 'Некорректно указан лимит газа. ', - ERROR_10: 'Недопустимые данные. ', - ERROR_11: 'Некорректно указано количество газа. ', - ERROR_12: 'Неверный номер перевода (nonce). ', - ERROR_13: 'Подписанная транзакция некорректна. ', - ERROR_14: 'Кошелёк с таким названием уже существует. ', - ERROR_15: 'Кошелёк не найден. ', - ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', - ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', - ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', - ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', - ERROR_20: 'Неправильный символ', - SUCCESS_1: 'Адрес указан верно', - SUCCESS_2: 'Кошелёк успешно расшифрован', - SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', - SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', - SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', - SUCCESS_6: 'Выбранный файл: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Спасибо нашим переводчикам: ', - TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', - TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'Если вы используете ПК:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = ru; +// Portuguese +'use strict'; +var ptbr = function() {} +ptbr.code = 'ptbr'; +ptbr.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ptbr; },{}],56:[function(require,module,exports){ -// Slovak -'use strict'; -var sk = function() {} -sk.code = 'sk'; -sk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sk; +// Russian +'use strict'; +var ru = function() {} +ru.code = 'ru'; +ru.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Неверный адрес отправителя', + GETH_Nonce: 'Номер перевода (nonce) слишком мал', + GETH_Cheap: 'Цена газа слишком низкая', + GETH_Balance: 'Баланс недостаточен', + GETH_NonExistentAccount: 'Счёт не существует или баланс счёта слишком мал', + GETH_InsufficientFunds: 'Недостаточно средств для ГАЗ * ЦЕНА + СУММА', + GETH_IntrinsicGas: 'Недостаточно газа для выполнения транзакции', + GETH_GasLimit: 'Превышен лимит газа на блок', + GETH_NegativeValue: 'Отрицательная сумма', + + /* Navigation*/ + NAV_YourWallets: 'Ваши кошельки', + NAV_AddWallet: 'Добавить кошелёк', + NAV_GenerateWallet: 'Создать кошелёк', + NAV_BulkGenerate: 'Создать несколько кошельков', + NAV_SendEther: 'Перевести эфир (ether)', + NAV_SendTokens: 'Перевести токены', + NAV_Offline: 'Оффлайн-перевод', + NAV_WithdrawDAO: 'Обменять DAO', + DAO_TitleLong: 'Обменять DAO токены на эфир (ether)', + NAV_ClaimDGD: 'Получить DGD', + DGD_TitleLong: 'Получить причитающиеся Вам DGD токены', + NAV_DeployContract: 'Опубликовать контракт', + NAV_MyWallets: 'Мои кошельки', + NAV_ViewWallet: 'Информация о кошельке', + NAV_Help: 'Справка', + NAV_Contact: 'Контакты', + + /* General */ + x_Password: 'Пароль', + x_Download: 'Скачать', + x_Address: 'Ваш адрес', + x_Save: 'Сохранить', + x_Cancel: 'Отменить', + x_AddessDesc: 'Это можно назвать "номер Вашего счёта" или "Ваш открытый ключ". Вы сообщаете этот адрес людям, чтобы они могли отправлять Вам эфир (ether). Картинка позволяет легко опознать Ваш адрес среди других адресов.', + x_PrivKey: 'Закрытый ключ (не зашифрован)', + x_PrivKey2: 'Закрытый ключ', + x_PrivKeyDesc: 'Это незашифрованное текстовое представление Вашего закрытого ключа, для использования которого не требуется вводить пароль. Если посторонние узнают Ваш закрытый ключ, они смогут распоряжаться Вашим кошельком без ввода пароля. По этой причине, обычно рекомендуют использовать зашифрованную версию закрытого ключа.', + x_Keystore: 'Файл Keystore/JSON (рекомендуется · зашифрован · совместим с Mist и geth)', + x_Keystore2: 'Файл Keystore/JSON', + x_KeystoreDesc: 'Этот файл Keystore/JSON использует формат совместимый с Mist и geth. Вы сможете в будущем импортировать его. Рекомендуется скачать этот файл и сделать резервную копию.', + x_Json: 'Файл JSON (не зашифрован)', + x_JsonDesc: 'Это Ваш незашифрованный закрытый ключ в формате JSON, для использования которого не требуется воодить пароль. Любой, у кого есть этот файл, может распоряжаться вашим кошельком и эфиром (ether) без ввода пароля.', + x_PrintShort: 'Печать', + x_Print: 'Напечатать бумажный кошелёк', + x_PrintDesc: 'Для профи: Нажмите "Печать" и сохраните это в формате PDF, если у Вас нет принтера!', + x_CSV: 'Файл CSV (не зашифрован)', + x_TXT: 'Файл TXT (не зашифрован)', + x_Wallet: 'кошелёк', + + /* Header */ + MEW_Warning_1: 'Всегда проверяйте URL перед тем, как воспользоваться существующим кошельком или создать новый. Опасайтесь поддельных (фишинговых) сайтов!', + CX_Warning_1: 'Всегда имейте **резервную копию** всех кошельков, которые Вы храните здесь. Различные обстоятельства могут привести к тому, что данные, хранимые в этом расширении браузера Chrome, могут быть потеряны, например если Вы удалите или переустановите расширение. Это расширение облегчает использование Ваших кошельков, но оно **не является** надежным местом для их хранения.', + MEW_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом', + CX_Tagline: 'Ethereum кошелёк на javascript с открытым исходным кодом в виде расширения для браузера Chrome', + + /* Footer */ + FOOTER_1: 'Написанный на javascript инструмент с открытым исходным кодом для создания Ethereum кошельков и выполнения транзакций.', + FOOTER_1b: 'Авторы:', + FOOTER_2: 'Пожертвования приветствуются:', + FOOTER_3: 'Создание кошелька на стороне клиента от', + FOOTER_4: 'Отказ от ответственности', + + /* Sidebar */ + sidebar_AccountInfo: 'Информация о счёте: ', + sidebar_AccountAddr: 'Адрес (номер) счёта: ', + sidebar_AccountBal: 'Баланс счёта: ', + sidebar_TokenBal: 'Балансы токенов: ', + sidebar_Equiv: 'Эквивалентные значения: ', + sidebar_TransHistory: 'История транзакций: ', + sidebar_DGDBal: 'Информация о распродаже DGD:', + sidebar_donation: 'MyEtherWallet — это бесплатный сервис с открытым исходным кодом, заботящийся о Вашей безопасности и неприкосновенности Вашей частной жизни. Чем больше пожертвований мы получаем, тем больше времени мы проводим, добавляя новые возможности, прислушиваясь к Вашим пожеланиям и предоставляя Вам то, что Вам необходимо. Мы — всего лишь два человека, пытающиеся изменить Мир. Вы поможете нам?', + sidebar_donate: 'Пожертвовать', + sidebar_thanks: 'СПАСИБО!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Каким способом Вы хотите получать доступ к своему кошельку?', + decrypt_Title: 'Выберите формат Вашего закрытого ключа:', + decrypt_Select: 'Выберите кошелёк:', + + /* Add Wallet */ + ADD_Label_1: 'Что Вы хотите сделать?', + ADD_Radio_1: 'Создать новый кошелёк', + ADD_Radio_2: 'Выбрать файл с кошельком (Keystore/JSON)', + ADD_Radio_2_alt: 'Выбрать файл с кошельком: ', + ADD_Radio_2_short: 'ВЫБРАТЬ ФАЙЛ С КОШЕЛЬКОМ...', + ADD_Radio_3: 'Вставить или ввести Ваш закрытый ключ', + ADD_Radio_4: 'Добавить счёт в список слежения', + ADD_Label_2: 'Присвоить название:', + ADD_Label_3: 'Ваш кошелёк зашифрован. Пожалуйста, введите пароль: ', + ADD_Label_4: 'Добавить счёт в список слежения', + ADD_Warning_1: 'Вы можете добавить счёт в "список слежения" на вкладке "кошельки", не загружая закрытый ключ. Добавление счёта в список слежения не означает, что вы имеете доступ к этому счёту, или можете распоряжаться эфиром (ether), лежащим на нём.', + ADD_Label_5: 'Введите адрес: ', + ADD_Label_6: 'Отпереть кошелёк', + ADD_Label_6_short: 'Отпереть', + ADD_Label_7: 'Добавить счёт', + + /* Generate Wallets */ + GEN_desc: 'Если Вы хотите создать несколько кошельков, Вы можете сделать это здесь: ', + GEN_Label_1: 'Введите сложный пароль (не менее 9 символов)', + GEN_Placeholder_1: 'Не забудьте сохранить это!', + GEN_SuccessMsg: 'Поздравляем! Ваш кошелёк успешно создан.', + GEN_Warning: 'В будущем, для доступа к этому кошельку **Вам понадобится либо файл Keystore/JSON вместе с паролем, либо зарытый ключ**. Пожалуйста, сохраните их и сделайте резервную копию! Если Вы потеряете их, то не сможете восстановить доступ к Вашему кошельку. Обратитесь к [справке](https://www.myetherwallet.com/#help) за инструкциями.', + GEN_Label_2: 'Сохраните Ваш файл Keystore/JSON или зарытый ключ. Не забывайте Ваш пароль!', + GEN_Label_3: 'Сохраните Ваш адрес.', + GEN_Label_4: 'Напечатайте бумажный кошелёк или сохраните QR код. (по желанию)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Сколько кошельков создать', + BULK_Label_2: 'Создать кошельки', + BULK_SuccessMsg: 'Поздравляем! Ваши кошельки успешно созданы.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Адрес получателя: ', + SEND_amount: 'Сумма перевода: ', + SEND_amount_short: 'Сумма', + SEND_custom: 'Другое', + SEND_gas: 'Газ', + SEND_TransferTotal: 'Перевести весь доступный баланс', // updated to be shorter + SEND_generate: 'Сформировать транзакцию', + SEND_raw: 'Готовая транзакция', + SEND_signed: 'Подписанная транзакция', + SEND_trans: 'Отправить транзакцию', + SENDModal_Title: 'Внимание! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Вы собираетесь перевести', + SENDModal_Content_2: 'на адрес', + SENDModal_Content_3: 'Вы уверены, что хотите сделать это?', + SENDModal_Content_4: 'К СВЕДЕНИЮ: Если произошла ошибка, Вам скорее всего надо положить ещё немного эфира (ether) на Ваш счёт, чтобы покрыть расходы на газ при пре переводе токенов. Расходы на газ оплачиваются эфиром (ether).', + SENDModal_No: 'Нет, отменить транзакцию!', + SENDModal_Yes: 'Да, я уверен! Выполнить транзакцию.', + + /* Tokens */ + TOKEN_Addr: 'Адрес: ', + TOKEN_Symbol: 'Символ токена: ', + TOKEN_Dec: 'Дробность (знаков после запятой): ', + + /* Send Transaction */ + TRANS_desc: 'Если Вы хотите перевести токены, используйте страницу "Отправить токены".', + TRANS_warning: 'Если Вы используете функции "только ETH" или "только ETC", перевод будет выполнен с помощью контракта. У некоторых сервисов могут возникнуть проблемы с приёмом таких переводов. Уточните этот вопрос.', + TRANS_standard: 'Эфир (ether, обычная транзакция)', + TRANS_eth: 'Только ETH', + TRANS_etc: 'Только ETC', + TRANS_advanced: '+Дополнительно: добавить газ или данные ', + TRANS_data: ' Данные: ', + TRANS_gas: ' Газ: ', + TRANS_sendInfo: 'Стандартная транзакция, использующая 21000 газа, будет стоить 0,000441 эфира (ether). Мы указываем цену газа немного выше минимально возможной: 0,000000021 эфира (ether), для того, чтобы ускорить выполнение танзакций. Мы не берём комиссию за выполнение транзакций.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Транзакции вида "только ETH" и "только ETC"', + TRANSModal_Content_0: 'О видах транзакций и сервисах:', + TRANSModal_Content_1: '**Эфир (ether, обычная транзакция): ** Выполняет обычный перевод напрямую с одного адреса на другой. Используется стандартное количесвто газа: 21000. В большинстве случаев, перевод ETH, выполненный этим способом, можно будет продублировать для ETC.', + TRANSModal_Content_2: '**Только ETH: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETH**.', + TRANSModal_Content_3: '**Только ETC: ** Выполняет перевод через [контракт Тимона Раппа, защищающий от дублирования переводов (рекомендован ВБ)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/), поэтому перевод будет выполнен только в **ETC**. ', + TRANSModal_Content_4: '**Coinbase и ShapeShift: ** Отправляйте им только обычные транзакции. Если Вы отправите им транзакцию вида "только ...", то Вам придётся обращаться к их службе поддержки, чтобы они вручную пополнили Ваш баланс или вернули бы Вам Ваш эфир (ether). [Вы также можете попробовать использовать инструмент "split" от Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Проблем не выявлено. Можно использовать транзакции любого вида.', + TRANSModal_Yes: 'Спасибо, я всё понял.', + TRANSModal_No: 'Чёрт, теперь я окончательно запутался. Помогите мне.', + + /* Offline Transaction */ + OFFLINE_Title: 'Сформировать и отправить оффлайн транзакцию', + OFFLINE_Desc: 'Оффлайн транзакция формируется за тра шага. Вы должны выполнить шаги №1 и №3 на компьютере, подключённом к интернету (на онлайн компьютере), а шаг №2 на компьютере, отсоединённом от сети (на оффлайн компьютере). Это гарантирует, что подключённые к интернет устройства не получат доступа к Вашим закрытым ключам.', + OFFLLINE_Step1_Title: 'Шаг №1: Подготовка информации (онлайн компьютер)', + OFFLINE_Step1_Button: 'Подготовка информации', + OFFLINE_Step1_Label_1: 'Адрес отправителя: ', + OFFLINE_Step1_Label_2: 'Внимание: Это адрес ОТПРАВИТЕЛЯ, а не адрес получателя. № перевода (nonce) определяется для адреса отправителя. При использовании оффлайн компьютера, физически изолированного от сети, это будет адрес счёта "холодного хранения" (cold-storage).', + OFFLINE_Step2_Title: 'Шаг №2: Формирование транзакции (оффлайн компьютер)', + OFFLINE_Step2_Label_1: 'Адрес получателя: ', + OFFLINE_Step2_Label_2: 'Сумма перевода', + OFFLINE_Step2_Label_3: 'Цена газа ', + OFFLINE_Step2_Label_3b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_4: 'Лимит газа ', + OFFLINE_Step2_Label_4b: 'Лимит газа по умолчанию: 21000. При использовании контрактов или передаче дополнительных данных может быть необходимо указать другое значение. Неистраченный газ будет Вам возвращён.', + OFFLINE_Step2_Label_5: '№ перевода (nonce)', + OFFLINE_Step2_Label_5b: 'Это отображалось на шаге №1 на Вашем онлайн компьютере.', + OFFLINE_Step2_Label_6: 'Данные', + OFFLINE_Step2_Label_6b: 'Это необязательный параметр. Данные обычно указывают при использовании контрактов.', + OFFLINE_Step2_Label_7: 'Выберите или введите ваш закрытый ключ или JSON.', + OFFLINE_Step3_Title: 'Шаг №3: Выполнить транзакцию (онлайн компьютер)', + OFFLINE_Step3_Label_1: 'Вставьте подписанную транзакцию с шага №2 и нажмите кнопку "ВЫПОЛНИТЬ ТРАНЗАКЦИЮ".', + + /* DAO */ + DAO_bal1: 'на момент создания блока №1.919.999', + DAO_bal2: 'текущий', + DAO_TitleETH: 'Обменять DAO токены на ETH', + DAO_TitleETC: 'Обменять DAO токены на ETC', + DAO_ETC_Label_1: 'На какой адрес зачислить ETC?', + DAO_ETC_Label_2: 'Группа "White Hat" работала не покладая рук для того, чтобы Вы смогли получить обратно Ваш ETC. Вы можете сказать им "спасибо", пожертвовав небольшой процент от суммы, если хотите, конечно. ', + DAO_Desc: 'Используйте эту вкладку, чтобы обменять Ваши DAO токены на эфир (ether). Если вы хотите перевести DAO токены, используйте вкладку "Перевести токены".', + DAO_Inst: 'Да. Просто нажмите большую красную кнопку. Это действительно просто.', + DAO_Warning: 'Если Вы видите ошибку "Недостаточно средств для оплаты газа", то это значит, что на Вашем счету не хватает эфира (ether), чтобы покрыть расходы на газ. Переведите 0,001 эфира (ether) на Ваш счёт и попробуйте снова. ', + DAOModal_Title: 'Просто чтобы убедиться...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Вы собираетесь обменять', + DAOModal_2: 'DAO токенов. На адрес', + DAOModal_3: 'будет зачислено', // "in return for" + + /* Digix */ + DGD_Desc: 'Получить причитающиеся Вам DigixDAO (DGD) токены и бэйджи. Вы можете получить причитающиеся Вам токены, если Вы участвовали в в распродаже токенов 30–31 марта 2016 года. Если Вы хотите перевести DGD токены, используйте вкладку "Перевести токены".', + DGD_Label_1: 'Предположительный размер комиссии:', + DGD_Label_2: 'Максимальный размер комиссии:', + DGD_Label_3: 'Цена газа:', + DGD_Generate: 'Сформировать требование', + DGD_Content: 'Вы собираетесь затребовать причитающиеся Вам DGD токены.', + + /* Deploy Contracts */ + DEP_generate: 'Сформировать байткод', + DEP_generated: 'Сформированный байткод', + DEP_signtx: 'Подписать транзакцию', + DEP_interface: 'Сформированный интерфейс', + + /* My Wallet */ + MYWAL_Nick: 'Название кошелька', + MYWAL_Address: 'Адрес кошелька', + MYWAL_Bal: 'Баланс', + MYWAL_Edit: 'Редактировать', + MYWAL_View: 'Просмотреть', + MYWAL_Remove: 'Удалить', + MYWAL_RemoveWal: 'Удалить кошелёк:', + MYWAL_WatchOnly: 'Список слежения', + MYWAL_Viewing: 'Просматриваемый кошелёк: ', + MYWAL_Hide: 'Скрыть информацию о кошельке', + MYWAL_Edit_2: 'Редактировать кошелёк: ', + MYWAL_Name: 'Имя кошелька', + MYWAL_Content_1: 'Внимание! Вы собираетесь удалить кошелёк: ', + MYWAL_Content_2: ' Убедитесь, что Вы **сохранили закрытый ключ или файл Keystore / JSON и пароль** от этого кошелька, прежде чем Вы удалите этот кошелёк.', + MYWAL_Content_3: 'Если Вы планируете в будущем использовать этот кошелёк в MyEtherWallet CX, Вам надо будет вручную заново добавить его, указав закрытый ключ или файл JSON и пароль.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Позволяет скачать закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. Вам это понадобится, когда Вы захотите [импортировать Ваши счета в geth или Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Для проверки баланса Ваших счетов мы рекомендуем использовать браузер блокчейна, например [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Позволяет Вам скачать Ваши закрытые ключи в различных форматах, а также повторно напечатать Ваши бумажные кошельки. ', + VIEWWALLET_SuccessMsg: 'Поздравляем! Вот информация о Вашем кошельке.', + + /* Chrome Extension */ + CX_error_1: 'У Вас нет сохранённых кошельков. Чтобы создать кошелёк, нажмите ["Создать кошелёк"](/cx-wallet.html#add-wallet)!', + CX_quicksend: 'Моментальный перевод', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Пожалуйста, введите сумму корректно.', + ERROR_2: 'Пароль должен содержать не менее 9 символов. Пожалуйста, используйте сложный пароль. ', + ERROR_3: 'К сожалению, мы не смогли определить формат файла кошелька. ', + ERROR_4: 'Этот файл не является файлом кошелька. ', + ERROR_5: 'Такая единица измерения не существует. Пожалуйста, укажите одну из следующих единиц измерения ', + ERROR_6: 'Неправильный адрес. ', + ERROR_7: 'Неверный пароль. ', + ERROR_8: 'Некорректная сумма. ', + ERROR_9: 'Некорректно указан лимит газа. ', + ERROR_10: 'Недопустимые данные. ', + ERROR_11: 'Некорректно указано количество газа. ', + ERROR_12: 'Неверный номер перевода (nonce). ', + ERROR_13: 'Подписанная транзакция некорректна. ', + ERROR_14: 'Кошелёк с таким названием уже существует. ', + ERROR_15: 'Кошелёк не найден. ', + ERROR_16: 'Предложение с таким идентификатором не существует или при чтении предложения произошла ошибка. ', + ERROR_17: 'Кошелёк с таким адресом уже находится в хранилище. Просмотрите в списке кошельков. ', + ERROR_18: 'Вам необходимо иметь не менее 0.001 эфира (ether) на Вашем счету, чтобы покрыть расходы на газ. Пожалуйста, пложите немного эфира (ether) на счёт и попробуйте снова. ', + ERROR_19: 'Транзакция могла бы истратить весь газ. Это значит, что Вы уже голосовали по данному предложению, или период обсуждения данного предложения закончился.', + ERROR_20: 'Неправильный символ', + SUCCESS_1: 'Адрес указан верно', + SUCCESS_2: 'Кошелёк успешно расшифрован', + SUCCESS_3: 'Транзакция отправлена на выполнение. TX ID: ', + SUCCESS_4: 'Ваш кошелёк успешно добавлен: ', + SUCCESS_5: 'Ваш голос учтён. Спасибо Вам за активное участие в работе DAO.', + SUCCESS_6: 'Выбранный файл: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Спасибо нашим переводчикам: ', + TranslatorName_1: '[Михаил Владимиров](https://www.myetherwallet.com/?gaslimit=21000&to=0x6ff323e36bfdb20502b23780695f4e77e36cde95&value=1.0#send-transaction)', + TranslatorAddr_1: '0x6ff323e36bfdb20502b23780695f4e77e36cde95', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'Если вы используете ПК:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = ru; },{}],57:[function(require,module,exports){ -// Slovenian -'use strict'; -var sl = function() {} -sl.code = 'sl'; -sl.data = { - - /* Geth Error Messages */ - SUCCESS_6: 'File Selected: ', - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - HELP_12_Desc_15b: 'If you are on a PC:', - FOOTER_4: 'Disclaimer', - - /* New - DAO ETC Withdrawal */ - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - - /* New - Deploy Contracts */ - NAV_DeployContract: 'Deploy Contract', - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* New */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter - FOOTER_1b: 'Created by', - - /* Navigation*/ - NAV_YourWallets: 'Vaše Denarnice', - NAV_AddWallet: 'Dodaj Denarnico', - NAV_GenerateWallet: 'Ustvari Denarnico', - NAV_BulkGenerate: 'Ustvari Serijo Denarnic', - NAV_SendEther: 'Pošlji Ether', - NAV_SendTokens: 'Pošlji Žetone', - NAV_Offline: 'Pošlji Brez Povezave', - NAV_WithdrawDAO: 'Izplačaj DAO', - DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', - NAV_ClaimDGD: 'Zahtevaj DGD', - DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', - NAV_MyWallets: 'Moje Denarnice', - NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', - NAV_Help: 'Pomoč', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Geslo', - x_Download: 'Prenesi', - x_Address: 'Vaš Naslov', - x_Save: 'x_Shrani', - x_Cancel: 'x_Prekliči', - x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', - x_PrivKey: 'Osebni Ključ (nekriptiran)', - x_PrivKey2: 'Osebni Ključ', - x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', - x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', - x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', - x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', - x_Json: 'JSON Datoteka (nekriptirana)', - x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', - x_PrintShort: 'Natisni', - x_Print: 'Natisni Papirnato Denarnico', - x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', - x_CSV: 'CSV datoteka (nekriptirana)', - x_TXT: 'TXT datoteka (nekriptirana)', - x_Wallet: 'Denarnice', - - /* Header */ - MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', - CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', - MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', - CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', - - /* Footer */ - FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', - FOOTER_2: 'Donacije so zelo dobrodošle:', - FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', - - /* Sidebar */ - sidebar_AccountInfo: 'Informacije o Računu: ', - sidebar_AccountAddr: 'Naslov Računa: ', - sidebar_AccountBal: 'Stanje Računa: ', - sidebar_TokenBal: 'Stanje Žetonov: ', - sidebar_Equiv: 'Ekvivalentne Vrednosti: ', - sidebar_TransHistory: 'Zgodovina Transakcij', - sidebar_DGDBal: 'Informacije o DGD Crowdsale:', - sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', - sidebar_donate: 'Doniraj', - sidebar_thanks: 'Najlepša vam hvala!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', - decrypt_Title: 'Izberite format vašega osebnega ključa:', - decrypt_Select: 'Izberite Denarnico:', - - /* Add Wallet */ - ADD_Label_1: 'Kaj želite storiti?', - ADD_Radio_1: 'Ustvari Novo Denarnico', - ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', - ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', - ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', - ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Label_2: 'Ustvari Vzdevek:', - ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', - ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', - ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', - ADD_Label_5: 'Vnestie Naslov: ', - ADD_Label_6: 'Odklenite vašo Denarnico', - ADD_Label_6_short: 'Odkleni', - ADD_Label_7: 'Dodaj Račun', - - /* Generate Wallets */ - GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', - GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', - GEN_Placeholder_1: 'NE pozabite shraniti tega!', - GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', - GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', - GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', - GEN_Label_3: 'Shranite Vaš Naslov.', - GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Signed Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet.', - MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Tranlsation Info */ - translate_version: '0.2', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'jkocjan', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sl; +// Slovak +'use strict'; +var sk = function() {} +sk.code = 'sk'; +sk.data = { + + NAV_DeployContract: 'Deploy Contract', + x_Keystore2: 'Keystore / JSON File', + x_PrivKey2: 'Private Key', + FOOTER_4: 'Disclaimer', + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Peňaženky', + NAV_AddWallet: 'Pridať peňaženku', + NAV_GenerateWallet: 'Vytvoriť peňaženku', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Poslať Ether', + NAV_SendTokens: 'Poslať Tokens', + NAV_Offline: 'Poslať Offline', + NAV_WithdrawDAO: 'Vybrať DAO', + DAO_TitleLong: 'Vymeniť Vaše Dao Tokens za ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_MyWallets: 'Moje peňaženky', + NAV_ViewWallet: 'Zobraziť detaily peňaženky', + NAV_Help: 'Pomoc', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Heslo', + x_Wallet: 'Peňaženka', + x_Download: 'Stiahnuť', + x_Address: 'Vaša Adresa', + x_Save: 'Uložiť', + x_Cancel: 'Zrušiť', + x_AddessDesc: 'Možno to poznate ako vaše "Konto #" alebo váš "Verejný Kľúč". Adresa je to, čo pošlete ľudom, aby vám mohli poslať ETH. Táto ikona vám pomôže rozpoznať vašu adresu.', + x_PrivKey: 'Súkromný Kľúč (nezašifrovaný)', + x_PrivKeyDesc: 'Toto je nezašifrovaná textova verzia vašho Súkromneho Kľuča, to znamená, že heslo nie je potrebné. Ak niekto získa vaš nezašifrovaný Súkromný Kľúč, môže získať prístup do vašej peňaženky bez hesla. Práve kvôli tomuto sú šifrované verzie odporúčané.', + x_Keystore: 'Keystore/JSON Súbor (Odporúčané · Šifrované · Mist/Geth Format)', + x_KeystoreDesc: 'Tento Keystore / JSON súbor je rovnakého formatu ako Mist & Geth takže ho budete môcť jednoducho importovať. Tento subor odporúčame stiahnuť a zálohovať.', + x_Json: 'JSON Súbor (nezašifrovaný)', + x_JsonDesc: 'Toto je nezašifrovaný JSON format vášho sukromného kľúča. To znamená, že nepotrebujete heslo, ale ak niekto získa váš JSON, je schopný sprístupniť vašu peňaženku a Ether bez hesla.', + x_PrintShort: 'Vytlačiť', + x_Print: 'Vytlačiť Papierovú Peňaženku', + x_PrintDesc: 'Rada: Ak nevlastnite tlačiareň, jednoducho kliknite tlačiť a uložte to ako PDF.', + x_CSV: 'CSV súbor (nezašifrovaný)', + x_TXT: 'TXT súbor (nezašifrovaný)', + + /* Header */ + MEW_Warning_1: 'Vždy skontrolujte URL adresu pred tým ako vytvoríte alebo sprístupnite vašu peňaženku. Davajte si pozor na Phisingové stránky!', + CX_Warning_1: 'Uistita sa, že máťe **externé zálohy** všetkych peňaženiek. Mnoho vecí može spôsobiť stratu dát tohoto Chrome rozširenia, vrátane odinštalovania a preinštalovania tohto rozšírenia. Toto rozšírenie pomáha jednoducho sprístupniť vašu peňaženku, **nie** ju zálohovať.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethererum Wallets & sending transactions.', + FOOTER_1b: 'Vytvorené', + FOOTER_2: 'Dotácie srdečne vítane:', + FOOTER_3: 'Client-side wallet generation by', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ETH to your account to cover the gas cost of sending tokens. Gas is paid in ETH.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + SEND_TransferTotal: 'Send Entire Balance', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ETH in your account in order to cover the cost of gas. Add .01 ETH to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* CX */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + +/* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sk; },{}],58:[function(require,module,exports){ -// Swedish -'use strict'; -var sv = function() {} -sv.code = 'sv'; -sv.data = { - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Dina Plånböcker', - NAV_AddWallet: 'Lägg till Plånbok', - NAV_GenerateWallet: 'Generera Plånbok', - NAV_BulkGenerate: 'Mass Generera', - NAV_SendEther: 'Skicka Ether', - NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ - NAV_Offline: 'Skicka Offline', - NAV_WithdrawDAO: 'Växla DAO', - DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', - NAV_ClaimDGD: 'Hämta DGD', - DGD_TitleLong: 'Hämta Dina DGD Tokens', - NAV_MyWallets: 'Mina Plånböcker', - NAV_ViewWallet: 'Visa Plånboks Info', - NAV_Help: 'Hjälp', - NAV_Contact: 'Kontakt', - - /* General */ - x_Password: 'Lösenord', - x_Download: 'Ladda Ner', - x_Address: 'Din Adress', - x_Save: 'Spara', - x_Cancel: 'Avbryt', - x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', - x_PrivKey: 'Privat Nyckel (okrypterad)', - x_PrivKey2: 'Privat Nyckel', - x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', - x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON Fil', - x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', - x_Json: 'JSON Fil (okrypterad)', - x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', - x_PrintShort: 'Skriv Ut', - x_Print: 'Skriv Ut Pappers Plånbok', - x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', - x_CSV: 'CSV fil (okrypterad)', - x_TXT: 'TXT fil (okrypterad)', - x_Wallet: 'Plånbok', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Kontoinformation: ', - sidebar_AccountAddr: 'Konto Adress: ', - sidebar_AccountBal: 'Konto Saldo: ', - sidebar_TokenBal: 'Token Saldon: ', - sidebar_Equiv: 'Motsvarande Värden: ', - sidebar_TransHistory: 'Transaktionshistorik: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', - sidebar_donate: 'Donera', - sidebar_thanks: 'TACK!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Adress: ', - ADD_Label_6: 'Unlock your Wallet', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Adress.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Antal Plånböcker att Generera', - BULK_Label_2: 'Generera Plånböcker', - BULK_SuccessMsg: 'Dina plånböcker har genererats.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Adress: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SEND_TransferTotal: 'Send Entire Balance', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to adress', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Adress: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimaler: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Adress: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Adress: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Plånboks Namn', - MYWAL_Address: 'Plånboks Adress', - MYWAL_Bal: 'Saldo', - MYWAL_Edit: 'Ändra', - MYWAL_View: 'Visa', - MYWAL_Remove: 'Ta Bort', - MYWAL_RemoveWal: 'Ta Bort Plånbok:', - MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ - MYWAL_Viewing: 'Visar Plånbok: ', - MYWAL_Hide: 'Dölj Plånboks Info', - MYWAL_Edit_2: 'Ändra Plånbok: ', - MYWAL_Name: 'Plånboks Namn', - MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', - MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', - MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', - TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: '', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = sv; +// Slovenian +'use strict'; +var sl = function() {} +sl.code = 'sl'; +sl.data = { + + /* Geth Error Messages */ + SUCCESS_6: 'File Selected: ', + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + HELP_12_Desc_15b: 'If you are on a PC:', + FOOTER_4: 'Disclaimer', + + /* New - DAO ETC Withdrawal */ + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + + /* New - Deploy Contracts */ + NAV_DeployContract: 'Deploy Contract', + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* New */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + SEND_TransferTotal: 'Send Entire Balance', // updated to be shorter + FOOTER_1b: 'Created by', + + /* Navigation*/ + NAV_YourWallets: 'Vaše Denarnice', + NAV_AddWallet: 'Dodaj Denarnico', + NAV_GenerateWallet: 'Ustvari Denarnico', + NAV_BulkGenerate: 'Ustvari Serijo Denarnic', + NAV_SendEther: 'Pošlji Ether', + NAV_SendTokens: 'Pošlji Žetone', + NAV_Offline: 'Pošlji Brez Povezave', + NAV_WithdrawDAO: 'Izplačaj DAO', + DAO_TitleLong: 'Izplačaj Tvoje DAO Žetone za ETH', + NAV_ClaimDGD: 'Zahtevaj DGD', + DGD_TitleLong: 'Zahtevaj Svoje DGD Žetone', + NAV_MyWallets: 'Moje Denarnice', + NAV_ViewWallet: 'Prikaži Informacije o Denarnicah', + NAV_Help: 'Pomoč', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Geslo', + x_Download: 'Prenesi', + x_Address: 'Vaš Naslov', + x_Save: 'x_Shrani', + x_Cancel: 'x_Prekliči', + x_AddessDesc: 'To je vaš "Naslov #" oziroma vaš "Osebni Ključ". Ta naslov lahko pošljete drugim, zato da vedo kam vam poslati ether. Ta ikona je unikatna, je grafični prikaz številke vašega naslova in vam ga pomaga lažje prepoznati.', + x_PrivKey: 'Osebni Ključ (nekriptiran)', + x_PrivKey2: 'Osebni Ključ', + x_PrivKeyDesc: 'To je nekriptirana tekst verzija vašega osebnega ključa, kar pomeni, da za uporabo ne potrebujete nobenega gesla. V primeru da bi kdorkoli dobil datoteko vašega nekriptiranega osebnega ključa, bi lahko dostopal do vaše denarnice brez gesla. Zaradi tega vam priporocamo uporabo krtiptirane denarnice.', + x_Keystore: 'Datoteka za Shrambo ključa Keystore/JSON (Priporočeno · Kriptirano · Mist/Geth Format)', + x_Keystore2: 'Datoteka za Shrambo ključa Keystore/JSON', + x_KeystoreDesc: 'Ta datoteka za shrambo osebnega ključa Keystore/JSON se ujema s formatom datoteke, ki jo uporabljata programa Mist in Geth, kar pomeni da ga lahko v prihodnosti enostavno izvozite iz te internetne strani in uvozite v Mist ali Geth. Priporočamo vam da to datoteko prenesete na vaš računalnik in jo shranite na varnem mestu. Za dodatno varnost priporočamo, da datoteko shranite na večih napravah.', + x_Json: 'JSON Datoteka (nekriptirana)', + x_JsonDesc: 'To je nekriptirana, JSON datoteka vašega osebnega ključa. To pomeni, da za uporabo ne potrebujete gesla. V primeru da kdorkoli najde datoteko vašega ključa, dobi takojšen dostop do vaše denarnice in vašega Ethra brez uporabe gesla.', + x_PrintShort: 'Natisni', + x_Print: 'Natisni Papirnato Denarnico', + x_PrintDesc: 'Napotek: V primeru da nimate printerja lahko vseeno pritisnete natisni in izberete tiskalnik PDF, s tem boste natisnili datoteko PDF, ki jo lahko po želji shranite ali natisnete.', + x_CSV: 'CSV datoteka (nekriptirana)', + x_TXT: 'TXT datoteka (nekriptirana)', + x_Wallet: 'Denarnice', + + /* Header */ + MEW_Warning_1: 'Vedno preverite naslov - URL te strani preden dostopate do svoje denarnice ali ko želite ustvariti novo denarnico. Bodite pazljivi da niste žrtev ribarjenja - phising!', + CX_Warning_1: 'Vedno, ko ustvarite denarnico na tej strani, zagotovite da imate shanjeno **varnostno kopijo na svojem računalniku**. Zgodi se lahko veliko stvari, ki lahko pomenijo da boste izgubili podatke v tem Chrome Dodatku, med drugim, če deinštalirate in reinštalirate ta dodatek. Ta dodatek je namenjen lažjemu dostopanju vaših denarnic, in **ni** menjen kot varnostna kopija vaše denarnice.', + MEW_Tagline: 'Odprto-kodni JavaScript Ether Denarnica za splošno uporabo', + CX_Tagline: 'Odprto-kodni JavaScript Ether Denarnica Chrome Dodatek za splošno uporabo', + + /* Footer */ + FOOTER_1: 'Odprto-kodni, JavaScript, orodje za generiranje Ether Denarnic in pošiljanje transakcij za splošno uporabo.', + FOOTER_2: 'Donacije so zelo dobrodošle:', + FOOTER_3: 'Generacija Denarnic za splošno uporabo je ustvaril', + + /* Sidebar */ + sidebar_AccountInfo: 'Informacije o Računu: ', + sidebar_AccountAddr: 'Naslov Računa: ', + sidebar_AccountBal: 'Stanje Računa: ', + sidebar_TokenBal: 'Stanje Žetonov: ', + sidebar_Equiv: 'Ekvivalentne Vrednosti: ', + sidebar_TransHistory: 'Zgodovina Transakcij', + sidebar_DGDBal: 'Informacije o DGD Crowdsale:', + sidebar_donation: 'MyEtherWallet je brezplačna, odprto-kodna, platforma, ki skrbi za vaše privatne informacije in vašo varnost. Več donacij ko dobimo, več časa lahko posvetimo ustvarjanju novih funkcij, ter se lahko bolje posvetimo vašim željam, da tko da vam vedno lahko ponudimo karseda najboljši produkt. MyEtherWallet je ekipa dveh ljudi, ki se trudi spremeniti svet. Hvaležni bomo vaše pomoči.', + sidebar_donate: 'Doniraj', + sidebar_thanks: 'Najlepša vam hvala!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Kako bi želeli dostopati do vaše denarnice?', + decrypt_Title: 'Izberite format vašega osebnega ključa:', + decrypt_Select: 'Izberite Denarnico:', + + /* Add Wallet */ + ADD_Label_1: 'Kaj želite storiti?', + ADD_Radio_1: 'Ustvari Novo Denarnico', + ADD_Radio_2: 'Izberi Tip Datoteke Vaše Denarnice (Keystore / JSON)', + ADD_Radio_2_short: 'IZBERITE DATOTEKO DENARNICE...', + ADD_Radio_3: 'Prilepite/Vprišite Vaš Osebni Kljuš', + ADD_Radio_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Label_2: 'Ustvari Vzdevek:', + ADD_Label_3: 'Vaša denarnica je kriptirana. Prosim unesite geslo: ', + ADD_Label_4: 'Dodaj Račun, ki ga Želite Opazovati', + ADD_Warning_1: 'V zavihek denarnic lahko dodate naslov kateregakoli obstoječega Ether računa, ki ga želite opazovati brez da vnesete njegov osebni ključ. S tem ** ne ** dobite dostopa do računa ki ga opazujete, in ne morete izplačati Ethra s tega računa.', + ADD_Label_5: 'Vnestie Naslov: ', + ADD_Label_6: 'Odklenite vašo Denarnico', + ADD_Label_6_short: 'Odkleni', + ADD_Label_7: 'Dodaj Račun', + + /* Generate Wallets */ + GEN_desc: 'Če želite ustvariti več denarnic, lahko to storite tukaj: ', + GEN_Label_1: 'Vpišite močno geslo (vsaj 9 znakov)', + GEN_Placeholder_1: 'NE pozabite shraniti tega!', + GEN_SuccessMsg: 'Uspeh! Vaša denarnica je bila ustvarjena.', + GEN_Warning: '**Za dostop te denarnice v prihodnosti podrebujete vašo Datoteko za hrambo osebnega ključa Keystore/JSON ter geslo ali osebni ključ**. Prosimo vas da to datoteko shranite na enem ali več varnih mestih! V primeru da to datoteko izgubite, denarnice in vašega Ethra nihče ne mora obnoviti, kar pomeni da bo dostop do vašega Ethra za vedno izgubljen. Za več informacij preberite [help page](https://www.myetherwallet.com/#help).', + GEN_Label_2: 'Shranite svojo datoteko za hrambo osebnega ključa Keystore/JSON ali vaš osebni ključ. Ne pozabite gesla.', + GEN_Label_3: 'Shranite Vaš Naslov.', + GEN_Label_4: 'Natisnite svojo papirnato denarnico, ali shranite QR kodo vaše denarnice. (neobvezno)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Signed Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet.', + MYWAL_Content_2: ' Be sure you have **saved the private key/JSON file and the password** associated with this wallet before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Tranlsation Info */ + translate_version: '0.2', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'jkocjan', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Transfer total available balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sl; },{}],59:[function(require,module,exports){ -// Turkish -'use strict'; -var tr = function() {} -tr.code = 'tr'; -tr.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - NAV_DeployContract: 'Deploy Contract', - - /* Navigation*/ - NAV_YourWallets: 'Cüzdanin', - NAV_AddWallet: 'Cüzdan ekle', - NAV_GenerateWallet: 'Cüzdan oluştur', - NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', - NAV_SendEther: 'Ether gönder', - NAV_SendTokens: 'Tokens gönder', - NAV_Offline: 'Offline gönder', - NAV_WithdrawDAO: 'DAO çek', - DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', - NAV_ClaimDGD: 'DGD talep et', - DGD_TitleLong: 'DGD tokenlerini talep et', - NAV_MyWallets: 'Cüzdanim', - NAV_ViewWallet: 'Cüzdan bilgilerni göster', - NAV_Help: 'Yardim et', - NAV_Contact: 'Iletişime geç', - - /* General */ - x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', - x_Address: 'Adresin', - x_Cancel: 'Iptal et', - x_Download: 'Indir', - x_Json: 'JSON dosya (şifrelenmemis)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', - x_Keystore2: 'Keystore/JSON dosya', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Parola', - x_Print: 'Cüzdanin kağıt versiyonunu yazdir', - x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', - x_PrintShort: 'Yazdir', - x_PrivKey: 'Özel anahtar (şifrelenmemis)', - x_PrivKey2: 'Özel anahtar', - x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', - x_Save: 'Indir', - x_TXT: 'TXT dosya (şifrelenmemis)', - x_CSV: 'CSV dosya (şifrelenmemis)', - x_Wallet: 'Cüzdan', - -/* Header */ - MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', - CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', - - /* Footer */ - FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', - FOOTER_1b: 'tarafından yaratıldı', - FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', - FOOTER_3: 'Client-side cüzdan olusturma', - FOOTER_4: 'Verzicht', - - /* Sidebar */ - sidebar_AccountInfo: 'Hesap bilgiler: ', - sidebar_AccountAddr: 'Hesap adres: ', - sidebar_AccountBal: 'Bakiye: ', - sidebar_TokenBal: 'Token bakiye: ', - sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ - sidebar_TransHistory: 'Işlem geçmişi: ', - sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', - sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', - sidebar_donate: 'Bağışta bulun', - sidebar_thanks: 'TEŞEKKÜRLER!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Cüzdanını nasıl acmak istersin?', - decrypt_Title: 'Özel anahtarinin formatini sec:', - decrypt_Select: 'Bir cüzdan sec:', - - /* Add Wallet */ - ADD_Label_1: 'Ne yapmak istiyorsun?', - ADD_Radio_1: 'Yeni cüzdan olustur', - ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', - ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', - ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', - ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', - ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ - ADD_Label_2: 'Bir nickname oluştur: ', - ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', - ADD_Label_4: 'Izlenecek hesap adresi ekle', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Adresi ekle: ', - ADD_Label_6: 'Cüzdani ac: ', - ADD_Label_6_short: 'Ac', - ADD_Label_7: 'Hesap ekle', - - /* Generate Wallets */ - GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', - GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', - GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', - GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', - GEN_Label_3: 'Adresini kaydet.', - GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Oluşturulacak cüzdan sayısı', - BULK_Label_2: 'Cüzdanlari olustur', - BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Bu Adrese gönder: ', - SEND_amount: 'Gönderilecek miktar: ', - SEND_amount_short: 'Miktar', - SEND_custom: 'Kullanici özel', /*maybe another word here too */ - SEND_gas: 'Gas', - SEND_TransferTotal: 'Tüm dengeyi gönder', - SEND_generate: 'Generate Transaction', - SEND_raw: 'İşlem oluştur', /* add Binär */ - SEND_signed: 'Imzali İşlem', - SEND_trans: 'Islemi gönder', - SENDModal_Title: 'Uyarı! ', - - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'şu an ', - SENDModal_Content_2: 'bu adresse', - SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'Hayir, cikar beni burdan!', - SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', - - /* Tokens */ - TOKEN_Addr: 'Adres: ', - TOKEN_Symbol: 'Token symbolu: ', - TOKEN_Dec: 'Ondalık: ', - - /* Send Transaction */ - TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', - TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', - TRANS_standard: 'ETH (Standart işlem)', - TRANS_eth: 'Yalnızca ETH', - TRANS_etc: 'Yalnızca ETC', - TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', - TRANS_data: 'Veri: ', - TRANS_gas: 'Gas: ', - TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', - TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', - TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ - TRANSModal_Yes: 'Güzel, şimdi anladım.', - TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', - - /* Offline Transaction */ - OFFLINE_Title: 'Olustur & offline islem', - OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', - OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', - OFFLINE_Step1_Button: 'Bilgileri olustur', - OFFLINE_Step1_Label_1: 'Adres\'den: ', - OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'Adrese: ', - OFFLINE_Step2_Label_2: 'Gönderilen miktar', - OFFLINE_Step2_Label_3: 'Gas fiyati ', - OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', - OFFLINE_Step2_Label_4: 'Gas limiti ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Veri', - OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', - OFFLINE_Step2_Label_6: 'Veri', - OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'block 1,919,999\'ta', - DAO_bal2: 'şimdiki', - DAO_TitleETH: 'DAO ETH olarak cek', - DAO_TitleETC: 'DAO ETC olarak cek', - DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', - DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Sadece emin olmak için...', - - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'Cekmek üzeresin', - DAOModal_2: 'DAO token\'i ', - DAOModal_3: ' yerine', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Tahmini bedel:', - DGD_Label_2: 'Maximum bedel:', - DGD_Label_3: 'Gas fiyati:', - DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ - DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', - - /* Deploy Contracts */ - DEP_generate: 'Bytecode oluştur', - DEP_generated: 'Oluşturulan Bytecode', - DEP_signtx: 'Islmemi Imzala', - DEP_interface: 'Interface oluştur', - - /* My Wallet */ - MYWAL_Nick: 'Cüzdan nickname', - MYWAL_Address: 'Cüzdan adres', - MYWAL_Bal: 'Bakiye', - MYWAL_Edit: 'Düzenle', - MYWAL_View: 'Göster', - MYWAL_Remove: 'Kaldir', - MYWAL_RemoveWal: 'Cüzdani kaldir:', - MYWAL_WatchOnly: 'Sadece izlenen hesaplar', - MYWAL_Viewing: 'Izlenen Cüzdan: ', - MYWAL_Hide: 'Cüzdan bilgilerini gizle', - MYWAL_Edit_2: 'Cüzdani düzenle: ', - MYWAL_Name: 'Cüzdan Ismi', - MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', - MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', - CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli - - /* Error Messages */ - ERROR_1: 'Geçerli tutar yaz.', - ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', - ERROR_6: 'Geçersiz adres. ', - ERROR_7: 'Geçersiz parola. ', - ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ - ERROR_9: 'Geçersiz gas limit. ', - ERROR_10: 'Geçersiz data value. ', - ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ - ERROR_12: 'Geçersiz veri. ', - ERROR_13: 'Geçersiz imzali isleme. ', - ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', - ERROR_15: 'Cüzdan bulunmadi. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Geçersiz sembol', - SUCCESS_1: 'Geçerli adres', - SUCCESS_2: 'Cüzdan basariyla desifre edildi', - SUCCESS_3: 'İşlem teslim edildi TX ID: ', - SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', - SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', - SUCCESS_6: 'Dosya secildi ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: 'ffidan61', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = tr; +// Swedish +'use strict'; +var sv = function() {} +sv.code = 'sv'; +sv.data = { + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Dina Plånböcker', + NAV_AddWallet: 'Lägg till Plånbok', + NAV_GenerateWallet: 'Generera Plånbok', + NAV_BulkGenerate: 'Mass Generera', + NAV_SendEther: 'Skicka Ether', + NAV_SendTokens: 'Skicka Token', /*Översätt token?*/ + NAV_Offline: 'Skicka Offline', + NAV_WithdrawDAO: 'Växla DAO', + DAO_TitleLong: 'Växla Dina Dao Tokens Till ETH', + NAV_ClaimDGD: 'Hämta DGD', + DGD_TitleLong: 'Hämta Dina DGD Tokens', + NAV_MyWallets: 'Mina Plånböcker', + NAV_ViewWallet: 'Visa Plånboks Info', + NAV_Help: 'Hjälp', + NAV_Contact: 'Kontakt', + + /* General */ + x_Password: 'Lösenord', + x_Download: 'Ladda Ner', + x_Address: 'Din Adress', + x_Save: 'Spara', + x_Cancel: 'Avbryt', + x_AddessDesc: 'Det här är vad som ibland kallas "Publik Nyckel", "Adress" eller "Konto nr". Det är vad du ger människor så att de kan skicka dig ether. Den här ikonen är ett enkelt sätt att känna igen din adress.', + x_PrivKey: 'Privat Nyckel (okrypterad)', + x_PrivKey2: 'Privat Nyckel', + x_PrivKeyDesc: 'Det här är en okrypterad variant av din privata nyckel, vilket betyder att ett lösenord inte är nödvändigt. Om någon skulle hitta din okrypterade privata nyckel, så kan dom få tillgång till din plånbok utan lösenord. Av den anledningen så rekomenderas en krypterad variant av plånboken istället.', + x_Keystore: 'Keystore/JSON Fil (Rekomenderad · Krypterad · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON Fil', + x_KeystoreDesc: 'Den här Keystore / JSON filen matchar formatet som används av Mist & Geth så du kan enkelt importera det i framtiden. Det är det rekommenderade format att hämta för backup.', + x_Json: 'JSON Fil (okrypterad)', + x_JsonDesc: 'Det här är din okrypterade privata nyckel i JSON format. Det här betyder att du inte behöver ditt lösenord men vem som helst som hittar din JSON kan få tillgång till din plånbok och Ether utan ditt lösenord.', + x_PrintShort: 'Skriv Ut', + x_Print: 'Skriv Ut Pappers Plånbok', + x_PrintDesc: 'Tips: Klicka på skriv ut och spara som PDF, även om du inte har en skrivare!', + x_CSV: 'CSV fil (okrypterad)', + x_TXT: 'TXT fil (okrypterad)', + x_Wallet: 'Plånbok', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Kontoinformation: ', + sidebar_AccountAddr: 'Konto Adress: ', + sidebar_AccountBal: 'Konto Saldo: ', + sidebar_TokenBal: 'Token Saldon: ', + sidebar_Equiv: 'Motsvarande Värden: ', + sidebar_TransHistory: 'Transaktionshistorik: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet är en gratis service, med öppen källkod inriktade på din integritet och säkerhet. Ju fler donationer vi får, desto mer tid lägger vi på att skapa nya funktioner, lyssna på feedback, och ge dig vad du vill. Vi är bara två personer som försöker förändra världen. Hjälp oss?', + sidebar_donate: 'Donera', + sidebar_thanks: 'TACK!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Adress: ', + ADD_Label_6: 'Unlock your Wallet', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Adress.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Antal Plånböcker att Generera', + BULK_Label_2: 'Generera Plånböcker', + BULK_SuccessMsg: 'Dina plånböcker har genererats.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Adress: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SEND_TransferTotal: 'Send Entire Balance', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to adress', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Adress: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimaler: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one adress to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Adress: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM adress, not the TO adress. Nonce is generated from the originating account. If using an airgapped computer, it would be the adress of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Adress: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Plånboks Namn', + MYWAL_Address: 'Plånboks Adress', + MYWAL_Bal: 'Saldo', + MYWAL_Edit: 'Ändra', + MYWAL_View: 'Visa', + MYWAL_Remove: 'Ta Bort', + MYWAL_RemoveWal: 'Ta Bort Plånbok:', + MYWAL_WatchOnly: 'Dina Bevakade Konton', /*Any better translation?*/ + MYWAL_Viewing: 'Visar Plånbok: ', + MYWAL_Hide: 'Dölj Plånboks Info', + MYWAL_Edit_2: 'Ändra Plånbok: ', + MYWAL_Name: 'Plånboks Namn', + MYWAL_Content_1: 'Varning! Du är på väg att ta bort din plånbok: ', + MYWAL_Content_2: 'Kontrollera att du har **sparat den privata nyckeln / Keystore filen och lösenordet** som tillhör den här plånboken innan du tar bort den.', + MYWAL_Content_3: 'Om du vill använda plånboken med MyEtherWallet CX i framtiden, måste du manuellt lägga till den med hjälp av den privata nyckeln / JSON filen och lösenordet.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '[Walkingmage](https://www.myetherwallet.com/?gaslimit=21000&to=0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f&value=1.0#send-transaction)', + TranslatorAddr_1: '0x1b8fa94bd3C65A2292816B4C48e34560E28cCb2f', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: '', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the Send Entire Balance link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your address and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own address? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = sv; },{}],60:[function(require,module,exports){ -'use strict'; -var ar = require('./ar'); -var bg = require('./bg'); -var de = require('./de'); -var el = require('./el'); -var en = require('./en'); -var es = require('./es'); -var et = require('./et'); -var fr = require('./fr'); -var he = require('./he'); -var hi = require('./hi'); -var hu = require('./hu'); -var id = require('./id'); -var it = require('./it'); -var ja = require('./ja'); -var ko = require('./ko'); -var nl = require('./nl'); -var no = require('./no'); -var pl = require('./pl'); -var pt = require('./pt'); -var ptbr = require('./ptbr'); -var ru = require('./ru'); -var sk = require('./sk'); -var sl = require('./sl'); -var sv = require('./sv'); -var tr = require('./tr'); -var uk = require('./uk'); -var vi = require('./vi'); -var zh = require('./zh'); - -var translate = function($translateProvider) { - $translateProvider.translations(ar.code, translate.marked(ar.data)); - $translateProvider.translations(bg.code, translate.marked(bg.data)); - $translateProvider.translations(de.code, translate.marked(de.data)); - $translateProvider.translations(el.code, translate.marked(el.data)); - $translateProvider.translations(en.code, translate.marked(en.data)); - $translateProvider.translations(es.code, translate.marked(es.data)); - $translateProvider.translations(et.code, translate.marked(et.data)); - $translateProvider.translations(fr.code, translate.marked(fr.data)); - $translateProvider.translations(he.code, translate.marked(he.data)); - $translateProvider.translations(hi.code, translate.marked(hi.data)); - $translateProvider.translations(hu.code, translate.marked(hu.data)); - $translateProvider.translations(id.code, translate.marked(id.data)); - $translateProvider.translations(it.code, translate.marked(it.data)); - $translateProvider.translations(ja.code, translate.marked(ja.data)); - $translateProvider.translations(ko.code, translate.marked(ko.data)); - $translateProvider.translations(nl.code, translate.marked(nl.data)); - $translateProvider.translations(no.code, translate.marked(no.data)); - $translateProvider.translations(pl.code, translate.marked(pl.data)); - $translateProvider.translations(pt.code, translate.marked(pt.data)); - $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); - $translateProvider.translations(ru.code, translate.marked(ru.data)); - $translateProvider.translations(sk.code, translate.marked(sk.data)); - $translateProvider.translations(sl.code, translate.marked(sl.data)); - $translateProvider.translations(sv.code, translate.marked(sv.data)); - $translateProvider.translations(tr.code, translate.marked(tr.data)); - $translateProvider.translations(uk.code, translate.marked(uk.data)); - $translateProvider.translations(vi.code, translate.marked(vi.data)); - $translateProvider.translations(zh.code, translate.marked(zh.data)); - $translateProvider.preferredLanguage('en'); - $translateProvider.useSanitizeValueStrategy(null); -} -translate.marked = function(data) { - var tData = data; - for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); - return tData; -} -module.exports = translate; - -},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fr":42,"./he":43,"./hi":44,"./hu":45,"./id":46,"./it":47,"./ja":48,"./ko":49,"./nl":50,"./no":51,"./pl":52,"./pt":53,"./ptbr":54,"./ru":55,"./sk":56,"./sl":57,"./sv":58,"./tr":59,"./uk":61,"./vi":62,"./zh":63}],61:[function(require,module,exports){ -// Ukranian -'use strict'; -var uk = function() {} -uk.code = 'uk'; -uk.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_CSV: 'CSV file (unencrypted)', - x_Cancel: 'Cancel', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore / JSON File', - x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - SUCCESS_6: 'File Selected: ', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = uk; - -},{}],62:[function(require,module,exports){ -// Vietnamese -'use strict'; -var vi = function() {} -vi.code = 'vi'; -vi.data = { - - /* Geth Error Messages */ - GETH_InvalidSender: 'Sai người nhận', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas quá thấp', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Navigation*/ - NAV_YourWallets: 'Ví Của Bạn', - NAV_AddWallet: 'Thêm Ví', - NAV_GenerateWallet: 'Tạo Ví', - NAV_BulkGenerate: 'Tạo Nhiều Ví', - NAV_SendEther: 'Gửi Ether', - NAV_SendTokens: 'Gửi Token', - NAV_Offline: 'Giao Dịch Offline', - NAV_WithdrawDAO: 'Thu Hồi DAO Token', - DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', - NAV_ClaimDGD: 'Khiếu Nại Về DGD', - DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', - NAV_DeployContract: 'Phát Triển Hợp Đồng', - NAV_MyWallets: 'Ví Của Tôi', - NAV_ViewWallet: 'Thông Tin Ví', - NAV_Help: 'Trợ Giúp', - NAV_Contact: 'Liên Hệ', - - /* General */ - x_Address: 'Địa Chỉ Của Bạn', - x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', - x_CSV: 'Định Dạng CSV (Không mã hoá)', - x_Cancel: 'Huỷ', - x_Download: 'Tải Về Máy', - x_Json: 'Định Dạng JSON (Không mã hoá)', - x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', - x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', - x_Keystore2: 'Định Dạng Keystore / JSON', - x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', - x_Password: 'Mật Khẩu', - x_Print: 'Tạo Ví Giấy', - x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', - x_PrintShort: 'In Ví', - x_PrivKey: 'Private Key (Không mã hoá)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', - x_Save: 'Lưu', - x_TXT: 'Định Dạng TXT (Không mã Hoá)', - x_Wallet: 'Ví', - - /* Header */ - MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', - CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Nhà Phát Triển:', - FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Những Điều Cần Lưu Ý', - - /* Sidebar */ - sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', - sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', - sidebar_AccountBal: 'Số Dư Tài Khoản: ', - sidebar_TokenBal: 'Số Dư Token: ', - sidebar_Equiv: 'Giá Trị Tương Đương: ', - sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', - sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', - sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', - sidebar_donate: 'Quyên Góp', - sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', - - /* Decrypt Panel */ - decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', - decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', - decrypt_Select: 'Chọn ví:', - - /* Add Wallet */ - ADD_Label_1: 'Bạn đang cần làm gì?', - ADD_Radio_1: 'Tạo Ví Mới', - ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', - ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', - ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', - ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', - ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Label_2: 'Tạo Tên Gọi:', - ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', - ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', - ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', - ADD_Label_5: 'Điền Địa Chỉ Ví: ', - ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', - ADD_Label_6_short: 'Mở Khoá', - ADD_Label_7: 'Thêm Tài Khoản', - - /* Generate Wallets */ - GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', - GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', - GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', - GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', - GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', - GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', - GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Số Lượng Ví Cần Tạo', - BULK_Label_2: 'Tạo Ví', - BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', - - /* Sending Ether and Tokens */ - SEND_addr: 'Địa Chỉ Đến: ', - SEND_amount: 'Số Lượng Cần Gửi: ', - SEND_amount_short: 'Số Lượng', - SEND_custom: 'Tuỳ Chỉnh', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', - SEND_generate: 'Tạo Giao Dịch', - SEND_raw: 'Định Dạng Giao Dịch', - SEND_signed: 'Chữ Ký Giao Dich', - SEND_trans: 'Gửi Đi', - SENDModal_Title: 'Cảnh Báo! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'Bạn muốn gửi đi', - SENDModal_Content_2: 'Địa chỉ đến', - SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', - SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', - SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', - SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', - - /* Tokens */ - TOKEN_Addr: 'Địa Chỉ: ', - TOKEN_Symbol: 'Ký Hiệu Token: ', - TOKEN_Dec: 'Phân Số Thập Phân: ', - - /* Send Transaction */ - TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', - TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', - TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', - TRANS_eth: 'Chỉ ETH', - TRANS_etc: 'Chỉ ETC', - TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', - TRANS_data: 'Dữ Liệu:', - TRANS_gas: 'Gas:', - TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', - - /* Send Transaction Modals */ - TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', - TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', - TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', - TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', - TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', - TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', - TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', - - /* Offline Transaction */ - OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', - OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', - OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', - OFFLINE_Step1_Button: 'Tạo Thông Tin', - OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', - OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', - OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', - OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', - OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', - OFFLINE_Step2_Label_3: 'Giá Gas', - OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_4: 'Giới hạn Gas', - OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', - OFFLINE_Step2_Label_6: 'Dữ Liệu', - OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', - OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', - OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', - OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', - - /* DAO */ - DAO_bal1: 'Tại Block 1,919,999', - DAO_bal2: 'Hiện Tại', - DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', - DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', - DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', - DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', - DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', - DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', - DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', - DAOModal_Title: 'Đảm bảo rằng...', - DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', - DAOModal_2: 'Số Dao Token đến', - DAOModal_3: 'Hoàn Lại', // "in return for" - - /* Digix */ - DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', - DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', - DGD_Label_2: 'Cung Cấp Phí Tối Đa:', - DGD_Label_3: 'Giá Gas:', - DGD_Generate: 'Tạo Khiếu Nại', - DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', - - /* Deploy Contracts */ - DEP_generate: 'Tạo Bytecode', - DEP_generated: 'Bytecode Đã Được Tạo', - DEP_signtx: 'Chữ Ký Giao Dịch', - DEP_interface: 'Đã Tạo Giao Diện', - - /* My Wallet */ - MYWAL_Nick: 'Tên Gọi Của Ví', - MYWAL_Address: 'Địa Chỉ Ví', - MYWAL_Bal: 'Số Dư', - MYWAL_Edit: 'Chỉnh Sửa', - MYWAL_View: 'Xem', - MYWAL_Remove: 'Gỡ Bỏ', - MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', - MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', - MYWAL_Viewing: 'Xem Ví: ', - MYWAL_Hide: 'Ẩn Thông Tin Ví', - MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', - MYWAL_Name: 'Tên Ví', - MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', - MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', - MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', - VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', - - /* Chrome Extension */ - CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', - CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Vui lòng nhập số dư hợp lệ.', - ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', - ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', - ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', - ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', - ERROR_6: 'Địa chỉ không hợp lệ. ', - ERROR_7: 'Mật khẩu không hợp lệ. ', - ERROR_8: 'Tổng số không hợp lệ. ', - ERROR_9: 'Giới hạn gas không hợp lệ. ', - ERROR_10: 'Dữ liệu không hợp lệ. ', - ERROR_11: 'Tổng số gas không hợp lệ. ', - ERROR_12: 'Nonce không hợp lệ. ', - ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', - ERROR_14: 'Tên gọi này đã được sữ dụng. ', - ERROR_15: 'Không tìm thấy Ví. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', - ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', - ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', - ERROR_20: 'Biểu tượng không hợp lệ', - SUCCESS_1: 'Địa Chỉ Hợp Lệ', - SUCCESS_2: 'Ví đã được giải mã thành công', - SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', - SUCCESS_4: 'Ví của bạn đã được thêm thành công:', - SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', - SUCCESS_6: 'Tập Tin Được Chọn: ', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Chân Thành Cảm Ơn: ', - TranslatorName_1: 'Phạm Thế Vũ', - TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ - TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', - HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Lưu ý:', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', - HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', - - HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', - HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', - HELP_0_Desc_2: 'Tạo ví mới.', - HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', - HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', - HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', - - HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', - HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', - HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', - HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', - HELP_1_Desc_4: 'Bám "Tạo Ví', - HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', - - HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', - HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', - HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', - HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', - HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', - HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', - HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', - - HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', - HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', - HELP_2b_Desc_3: 'Tải tệp zip về máy.', - HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', - HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', - HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', - HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', - HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', - - HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', - HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', - HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', - HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', - HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', - HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_3_Desc_6: 'Bấm "Mở Khóa".', - HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', - HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - - HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', - HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', - HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', - HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', - HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', - HELP_4_Desc_5: 'Bấm "Mở Khóa"', - HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', - HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', - HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', - HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', - HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', - HELP_4CX_Desc_11: 'Xác nhận giao dịch', - HELP_4CX_Desc_12: '', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = vi; +// Turkish +'use strict'; +var tr = function() {} +tr.code = 'tr'; +tr.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + NAV_DeployContract: 'Deploy Contract', + + /* Navigation*/ + NAV_YourWallets: 'Cüzdanin', + NAV_AddWallet: 'Cüzdan ekle', + NAV_GenerateWallet: 'Cüzdan oluştur', + NAV_BulkGenerate: 'Birkaç Cüzdan oluştur', + NAV_SendEther: 'Ether gönder', + NAV_SendTokens: 'Tokens gönder', + NAV_Offline: 'Offline gönder', + NAV_WithdrawDAO: 'DAO çek', + DAO_TitleLong: 'DAO tokenlerini ETH olarak çek', + NAV_ClaimDGD: 'DGD talep et', + DGD_TitleLong: 'DGD tokenlerini talep et', + NAV_MyWallets: 'Cüzdanim', + NAV_ViewWallet: 'Cüzdan bilgilerni göster', + NAV_Help: 'Yardim et', + NAV_Contact: 'Iletişime geç', + + /* General */ + x_AddessDesc: 'Bu "hesap numarası" veya "genel anahtar" dir. Birisi ether göndermek istiyorsa bu adresi kullanmasi gerekir. Ikon adresini kontrol etmek kolay bir yoldur', + x_Address: 'Adresin', + x_Cancel: 'Iptal et', + x_Download: 'Indir', + x_Json: 'JSON dosya (şifrelenmemis)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON dosya (Tavsiye edilen· şifrelenmiş · Mist/Geth formati)', + x_Keystore2: 'Keystore/JSON dosya', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Parola', + x_Print: 'Cüzdanin kağıt versiyonunu yazdir', + x_PrintDesc: 'ProTavsiye: Eğer yazıcınız olmasa bile, "Yazdır" seçeneğini tıklayın ve PDF dosyası olarak kaydedin!', + x_PrintShort: 'Yazdir', + x_PrivKey: 'Özel anahtar (şifrelenmemis)', + x_PrivKey2: 'Özel anahtar', + x_PrivKeyDesc: 'Bu özel anahtarinin şifrelenmemiş metin sürümüdür. Birisi şifrelenmemiş özel anahtarı bulduysa, şifre olmadan cüzdani acabilir. Bu nedenle, şifrelenmiş sürümlerini genellikle tavsiye edilir.', + x_Save: 'Indir', + x_TXT: 'TXT dosya (şifrelenmemis)', + x_CSV: 'CSV dosya (şifrelenmemis)', + x_Wallet: 'Cüzdan', + +/* Header */ + MEW_Warning_1: 'Cüzdani acmadan veya yeni bir cüzdan olusturmadan önce her zaman URL\'yi gözden geçirin. Phishing sitelerinden dikkat!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani', + CX_Tagline: 'Acik kaynak JavaScript Client-Side Ether cüzdani Chrome Extension', + + /* Footer */ + FOOTER_1: 'Acik kaynak, javascript Client-Side Ethererum cüzdani ve Ether islemleri', + FOOTER_1b: 'tarafından yaratıldı', + FOOTER_2: 'Bağışlar büyük takdirle kabuledilir:', + FOOTER_3: 'Client-side cüzdan olusturma', + FOOTER_4: 'Verzicht', + + /* Sidebar */ + sidebar_AccountInfo: 'Hesap bilgiler: ', + sidebar_AccountAddr: 'Hesap adres: ', + sidebar_AccountBal: 'Bakiye: ', + sidebar_TokenBal: 'Token bakiye: ', + sidebar_Equiv: 'Eşdeğer Değerler: ', /* Belki sadece Esdeger yeter */ + sidebar_TransHistory: 'Işlem geçmişi: ', + sidebar_DGDBal: 'DGD Crowdsale bilgileri: ', + sidebar_donation: 'MyEtherWallet gizlilik ve güvenlike adanmış ücretsiz ve açık kaynak kodlu bir hizmettir. Ne kadar cok bagis edilirse o kadar cok yeni özellik programlamaya, görüşlerinizi işlemeye yatitim yapabiliriz. Biz sadece dünyayı değiştirmek isteyen iki kişiyiz. Bize yardım edermisin?', + sidebar_donate: 'Bağışta bulun', + sidebar_thanks: 'TEŞEKKÜRLER!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Cüzdanını nasıl acmak istersin?', + decrypt_Title: 'Özel anahtarinin formatini sec:', + decrypt_Select: 'Bir cüzdan sec:', + + /* Add Wallet */ + ADD_Label_1: 'Ne yapmak istiyorsun?', + ADD_Radio_1: 'Yeni cüzdan olustur', + ADD_Radio_2: 'Cüzdan dosyayi sec (Keystore / JSON)', + ADD_Radio_2_alt: 'Cüzdan dosyayi sec: ', + ADD_Radio_2_short: 'CÜZDAN DOSYAYI SEC...', + ADD_Radio_3: 'Özel anahatarini Yaspistir/Yaz ', + ADD_Radio_4: 'Izlenecek hesap adresi ekle', /* maybe another word for watch/izlencek --> Takip edilecek? */ + ADD_Label_2: 'Bir nickname oluştur: ', + ADD_Label_3: 'Cüzdan şifrelidir. Parolayi yaz: ', + ADD_Label_4: 'Izlenecek hesap adresi ekle', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Adresi ekle: ', + ADD_Label_6: 'Cüzdani ac: ', + ADD_Label_6_short: 'Ac', + ADD_Label_7: 'Hesap ekle', + + /* Generate Wallets */ + GEN_desc: 'Birden birkac cüzdan olusturmak istiryorsan burdan yapabilirsin: ', + GEN_Label_1: 'Güçlü bir şifre sec (en az 9 sembol)', + GEN_Placeholder_1: 'Bunu kaydetmeyi unutma!', + GEN_SuccessMsg: 'Başarı! Cüzdan oluşturuldu.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Keystore/JSON dosyayi veya özel anahtranini kaydet. Yukarıdaki şifreni unutma.', + GEN_Label_3: 'Adresini kaydet.', + GEN_Label_4: 'Cüzdanin kağıt versiyonunu yazdir veya QR code versiyonunu sakla. (Isteye bagli)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Oluşturulacak cüzdan sayısı', + BULK_Label_2: 'Cüzdanlari olustur', + BULK_SuccessMsg: 'Başarı! Cüzdanlarin olusturuldu.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Bu Adrese gönder: ', + SEND_amount: 'Gönderilecek miktar: ', + SEND_amount_short: 'Miktar', + SEND_custom: 'Kullanici özel', /*maybe another word here too */ + SEND_gas: 'Gas', + SEND_TransferTotal: 'Tüm dengeyi gönder', + SEND_generate: 'Generate Transaction', + SEND_raw: 'İşlem oluştur', /* add Binär */ + SEND_signed: 'Imzali İşlem', + SEND_trans: 'Islemi gönder', + SENDModal_Title: 'Uyarı! ', + + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'şu an ', + SENDModal_Content_2: 'bu adresse', + SENDModal_Content_3: 'Göndermek üzeresin. Emin misin?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'Hayir, cikar beni burdan!', + SENDModal_Yes: 'Evet, Eminim! Islemi tamamla.', + + /* Tokens */ + TOKEN_Addr: 'Adres: ', + TOKEN_Symbol: 'Token symbolu: ', + TOKEN_Dec: 'Ondalık: ', + + /* Send Transaction */ + TRANS_desc: 'Eğer Token göndermek istiyorsan, bunun yerine "Token Gönder" sayfasını kullan.', + TRANS_warning: '"Yalnızca ETH" ya da "Yalnızca ETC" fonksiyonu kullanıyorsan, bir sözleşme yoluyla gönderiyorsun. Bazı servisler bu işlemleri kabul etmekde sorunları var. Daha fazla oku.', + TRANS_standard: 'ETH (Standart işlem)', + TRANS_eth: 'Yalnızca ETH', + TRANS_etc: 'Yalnızca ETC', + TRANS_advanced: '+Gelişmiş: Daha Gaz veya veri ekle', + TRANS_data: 'Veri: ', + TRANS_gas: 'Gas: ', + TRANS_sendInfo: '21000 gaz kullanan standart bir islem 0,000441 ETH ile mal olur. Biz hizli bir sekilde mayinlanmasi için, 000000021 ETH\'dan biraz daha yüksek gaz fiyatini kullaniyoruz. Biz herhangi bir islem ücreti almiyoruz.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Yalnızca ETH" and "Yalnızca ETC" islemler', + TRANSModal_Content_0: 'Farklı işlemler ve farklı hizmetleri hakkında bir not:', + TRANSModal_Content_1: '**ETH (Standart islem): ** Bu standart bir islem baslatir bir hesapten direkt baska bir hesapa. Standart gas 21000\'dir. Bu islemlen gönderileren islem ETC zincirinde\'de yer bulabilir.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** Bilinen sorun yok, ikisinden birini sec', /* */ + TRANSModal_Yes: 'Güzel, şimdi anladım.', + TRANSModal_No: 'Aman, kafam daha cok karıştı. Yardım et.', + + /* Offline Transaction */ + OFFLINE_Title: 'Olustur & offline islem', + OFFLINE_Desc: 'Offline islemler 3. adimda gerçeklestirir. 1. ve 3. adimi internete bagli olan bir bilgisayarda, 2. adimi offline olan bir bilgisayarda tamamliyorsun. Böyle özel anahtarinin internete bagli olan bir bilgisayara ulasmasini engelnenir.', + OFFLLINE_Step1_Title: 'Adim 1: Bilgileri olustur (Online Bilgisayar)', + OFFLINE_Step1_Button: 'Bilgileri olustur', + OFFLINE_Step1_Label_1: 'Adres\'den: ', + OFFLINE_Step1_Label_2: 'Nota: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Adim 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'Adrese: ', + OFFLINE_Step2_Label_2: 'Gönderilen miktar', + OFFLINE_Step2_Label_3: 'Gas fiyati ', + OFFLINE_Step2_Label_3b: 'Bu online bilgisayarınızda adım 1\'de gösterilirdi.', + OFFLINE_Step2_Label_4: 'Gas limiti ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Veri', + OFFLINE_Step2_Label_5b: 'Bu online bilgisayarınızda adım 1\'de gösterilir.', + OFFLINE_Step2_Label_6: 'Veri', + OFFLINE_Step2_Label_6b: 'Bu istege bagli. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Adim 3: Gönder / Islemi duyur (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'block 1,919,999\'ta', + DAO_bal2: 'şimdiki', + DAO_TitleETH: 'DAO ETH olarak cek', + DAO_TitleETC: 'DAO ETC olarak cek', + DAO_ETC_Label_1: 'ETC hangi adrese gönderilmesini istiyorsun', + DAO_ETC_Label_2: '"Beyaz Şapka Grubu" ETC\'lerini geri almak için yorulmadan çalışmaktadır. Eğer istiyorsan, senin çekiminden yüzdesi bağışlayarak "teşekkür ederim" diyebilirsin.', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Evet. Sadece büyük kırmızı düğmeye bas. Bu kadar kolay.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Sadece emin olmak için...', + + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'Cekmek üzeresin', + DAOModal_2: 'DAO token\'i ', + DAOModal_3: ' yerine', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Tahmini bedel:', + DGD_Label_2: 'Maximum bedel:', + DGD_Label_3: 'Gas fiyati:', + DGD_Generate: 'Talep oluştur', /* Maybe "Talep" is the wrong word for "Claim" */ + DGD_Content: 'Suan DGD token\'lerini talep etmekdesin.', + + /* Deploy Contracts */ + DEP_generate: 'Bytecode oluştur', + DEP_generated: 'Oluşturulan Bytecode', + DEP_signtx: 'Islmemi Imzala', + DEP_interface: 'Interface oluştur', + + /* My Wallet */ + MYWAL_Nick: 'Cüzdan nickname', + MYWAL_Address: 'Cüzdan adres', + MYWAL_Bal: 'Bakiye', + MYWAL_Edit: 'Düzenle', + MYWAL_View: 'Göster', + MYWAL_Remove: 'Kaldir', + MYWAL_RemoveWal: 'Cüzdani kaldir:', + MYWAL_WatchOnly: 'Sadece izlenen hesaplar', + MYWAL_Viewing: 'Izlenen Cüzdan: ', + MYWAL_Hide: 'Cüzdan bilgilerini gizle', + MYWAL_Edit_2: 'Cüzdani düzenle: ', + MYWAL_Name: 'Cüzdan Ismi', + MYWAL_Content_1: 'Uyarı! Cüzdanını silmek üzeresin: ', + MYWAL_Content_2: 'Bunu kaldırmadan önce ** özel anahtarıni ve / veya Keystore Dosya ve şifreni ** kaydettiğinden emin ol.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'Su an cüzdan eklenmemis. Cüzdan ekle tikla ["Add Wallet"](/cx-wallet.html#add-wallet) ve bir cüzdan ekle!', + CX_quicksend: 'Gönder', // if no appropriate translation, just use "Send" maybe add hizli + + /* Error Messages */ + ERROR_1: 'Geçerli tutar yaz.', + ERROR_2: 'Sifren en az 9 sembol\'dan olusmasi lazim. Güçlü bir parola sectiginden emin ol. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'Geçerli bir cüzdan dosyası değil. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units Var olmayan bir birim, bu birimlerden birini kullan lütfen', + ERROR_6: 'Geçersiz adres. ', + ERROR_7: 'Geçersiz parola. ', + ERROR_8: 'Yetersiz bakiye. ', /*maybe yetersiz bakiye */ + ERROR_9: 'Geçersiz gas limit. ', + ERROR_10: 'Geçersiz data value. ', + ERROR_11: 'Yetersiz gas. ', /*maybe yetersiz gas */ + ERROR_12: 'Geçersiz veri. ', + ERROR_13: 'Geçersiz imzali isleme. ', + ERROR_14: 'Secdigin Nickname baska bir cüzdanda kullaniliyor. ', + ERROR_15: 'Cüzdan bulunmadi. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Geçersiz sembol', + SUCCESS_1: 'Geçerli adres', + SUCCESS_2: 'Cüzdan basariyla desifre edildi', + SUCCESS_3: 'İşlem teslim edildi TX ID: ', + SUCCESS_4: 'Cüzdanın başarıyla eklendi: ', + SUCCESS_5: 'Başarıyla oy verdiniz. DAO aktif bir katılımcı olduğunuz için teşekkür ederiz.', + SUCCESS_6: 'Dosya secildi ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: 'ffidan61', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = tr; + +},{}],61:[function(require,module,exports){ + 'use strict'; + var ar = require('./ar'); + var bg = require('./bg'); + var de = require('./de'); + var de = require('./de'); + var el = require('./el'); + var en = require('./en'); + var es = require('./es'); + var et = require('./et'); + var fi = require('./fi'); + var fr = require('./fr'); + var he = require('./he'); + var hi = require('./hi'); + var hu = require('./hu'); + var id = require('./id'); + var it = require('./it'); + var ja = require('./ja'); + var ko = require('./ko'); + var nl = require('./nl'); + var no = require('./no'); + var pl = require('./pl'); + var pt = require('./pt'); + var ptbr = require('./ptbr'); + var ru = require('./ru'); + var sk = require('./sk'); + var sl = require('./sl'); + var sv = require('./sv'); + var tr = require('./tr'); + var uk = require('./uk'); + var vi = require('./vi'); + var zh = require('./zh'); + + var translate = function($translateProvider) { + $translateProvider.translations(ar.code, translate.marked(ar.data)); + $translateProvider.translations(bg.code, translate.marked(bg.data)); + $translateProvider.translations(de.code, translate.marked(de.data)); + $translateProvider.translations(el.code, translate.marked(el.data)); + $translateProvider.translations(en.code, translate.marked(en.data)); + $translateProvider.translations(es.code, translate.marked(es.data)); + $translateProvider.translations(et.code, translate.marked(et.data)); + $translateProvider.translations(fi.code, translate.marked(fi.data)); + $translateProvider.translations(fr.code, translate.marked(fr.data)); + $translateProvider.translations(he.code, translate.marked(he.data)); + $translateProvider.translations(hi.code, translate.marked(hi.data)); + $translateProvider.translations(hu.code, translate.marked(hu.data)); + $translateProvider.translations(id.code, translate.marked(id.data)); + $translateProvider.translations(it.code, translate.marked(it.data)); + $translateProvider.translations(ja.code, translate.marked(ja.data)); + $translateProvider.translations(ko.code, translate.marked(ko.data)); + $translateProvider.translations(nl.code, translate.marked(nl.data)); + $translateProvider.translations(no.code, translate.marked(no.data)); + $translateProvider.translations(pl.code, translate.marked(pl.data)); + $translateProvider.translations(pt.code, translate.marked(pt.data)); + $translateProvider.translations(ptbr.code, translate.marked(ptbr.data)); + $translateProvider.translations(ru.code, translate.marked(ru.data)); + $translateProvider.translations(sk.code, translate.marked(sk.data)); + $translateProvider.translations(sl.code, translate.marked(sl.data)); + $translateProvider.translations(sv.code, translate.marked(sv.data)); + $translateProvider.translations(tr.code, translate.marked(tr.data)); + $translateProvider.translations(uk.code, translate.marked(uk.data)); + $translateProvider.translations(vi.code, translate.marked(vi.data)); + $translateProvider.translations(zh.code, translate.marked(zh.data)); + $translateProvider.preferredLanguage('en'); + $translateProvider.useSanitizeValueStrategy(null); + } + +translate.marked = function(data) { + var tData = data; + for (var key in tData) if (tData.hasOwnProperty(key)) tData[key] = marked(tData[key]); + return tData; +} +module.exports = translate; + +},{"./ar":35,"./bg":36,"./de":37,"./el":38,"./en":39,"./es":40,"./et":41,"./fi":42,"./fr":43,"./he":44,"./hi":45,"./hu":46,"./id":47,"./it":48,"./ja":49,"./ko":50,"./nl":51,"./no":52,"./pl":53,"./pt":54,"./ptbr":55,"./ru":56,"./sk":57,"./sl":58,"./sv":59,"./tr":60,"./uk":62,"./vi":63,"./zh":64}],62:[function(require,module,exports){ +// Ukranian +'use strict'; +var uk = function() {} +uk.code = 'uk'; +uk.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_CSV: 'CSV file (unencrypted)', + x_Cancel: 'Cancel', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore / JSON File', + x_KeystoreDesc: 'This Keystore/JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + SUCCESS_6: 'File Selected: ', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = uk; },{}],63:[function(require,module,exports){ -// Chinese -'use strict'; -var zh = function() {} -zh.code = 'zh'; -zh.data = { - - /* Navigation*/ - NAV_YourWallets: 'Your Wallets', - NAV_AddWallet: 'Add Wallet', - NAV_GenerateWallet: 'Generate Wallet', - NAV_BulkGenerate: 'Bulk Generate', - NAV_SendEther: 'Send Ether', - NAV_SendTokens: 'Send Tokens', - NAV_Offline: 'Send Offline', - NAV_WithdrawDAO: 'Withdraw DAO', - DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', - NAV_ClaimDGD: 'Claim DGD', - DGD_TitleLong: 'Claim Your DGD Tokens', - NAV_DeployContract: 'Deploy Contract', - NAV_MyWallets: 'My Wallets', - NAV_ViewWallet: 'View Wallet Info', - NAV_Help: 'Help', - NAV_Contact: 'Contact', - - /* General */ - x_Address: 'Your Address', - x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', - x_Cancel: 'Cancel', - x_CSV: 'CSV file (unencrypted)', - x_Download: 'Download', - x_Json: 'JSON File (unencrypted)', - x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', - x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', - x_Keystore2: 'Keystore/JSON File', - x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', - x_Password: 'Password', - x_Print: 'Print Paper Wallet', - x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', - x_PrintShort: 'Print', - x_PrivKey: 'Private Key (unencrypted)', - x_PrivKey2: 'Private Key', - x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', - x_Save: 'Save', - x_TXT: 'TXT file (unencrypted)', - x_Wallet: 'Wallet', - - /* Header */ - MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', - CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', - MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', - CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', - - /* Footer */ - FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', - FOOTER_1b: 'Created by', - FOOTER_2: 'Donations greatly appreciated:', - FOOTER_3: 'Client-side wallet generation by', - FOOTER_4: 'Disclaimer', - - /* Sidebar */ - sidebar_AccountInfo: 'Account Information: ', - sidebar_AccountAddr: 'Account Address: ', - sidebar_AccountBal: 'Account Balance: ', - sidebar_TokenBal: 'Token Balances: ', - sidebar_Equiv: 'Equivalent Values: ', - sidebar_TransHistory: 'Transaction History: ', - sidebar_DGDBal: 'DGD Crowdsale Information:', - sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', - sidebar_donate: 'Donate', - sidebar_thanks: 'THANK YOU!!!', - - /* Decrypt Panel */ - decrypt_Access: 'How would you like to access your wallet?', - decrypt_Title: 'Select the format of your private key:', - decrypt_Select: 'Select a Wallet:', - - /* Add Wallet */ - ADD_Label_1: 'What would you like to do?', - ADD_Radio_1: 'Generate New Wallet', - ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', - ADD_Radio_2_alt: 'Select Your Wallet File: ', - ADD_Radio_2_short: 'SELECT WALLET FILE...', - ADD_Radio_2_success: 'File Selected: ', - ADD_Radio_3: 'Paste/Type Your Private Key ', - ADD_Radio_4: 'Add an Account to Watch', - ADD_Label_2: 'Create a Nickname:', - ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', - ADD_Label_4: 'Add an Account to Watch', - ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', - ADD_Label_5: 'Enter the Address: ', - ADD_Label_6: 'Unlock your Wallet: ', - ADD_Label_6_short: 'Unlock', - ADD_Label_7: 'Add Account', - - /* Generate Wallets */ - GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', - GEN_Label_1: 'Enter a strong password (at least 9 characters)', - GEN_Placeholder_1: 'Do NOT forget to save this!', - GEN_SuccessMsg: 'Success! Your wallet has been generated.', - GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', - GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', - GEN_Label_3: 'Save Your Address.', - GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', - - /* Bulk Generate Wallets */ - BULK_Label_1: 'Number of Wallets To Generate', - BULK_Label_2: 'Generate Wallets', - BULK_SuccessMsg: 'Success! Your wallets have been generated.', - - /* Sending Ether and Tokens */ - SEND_addr: 'To Address: ', - SEND_amount: 'Amount to Send: ', - SEND_amount_short: 'Amount', - SEND_custom: 'Custom', - SEND_gas: 'Gas', - SEND_TransferTotal: 'Send Entire Balance', - SEND_generate: 'Generate Transaction', - SEND_raw: 'Raw Transaction', - SEND_signed: 'Signed Transaction', - SEND_trans: 'Send Transaction', - SENDModal_Title: 'Warning! ', - /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ - SENDModal_Content_1: 'You are about to send', - SENDModal_Content_2: 'to address', - SENDModal_Content_3: 'Are you sure you want to do this?', - SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', - SENDModal_No: 'No, get me out of here!', - SENDModal_Yes: 'Yes, I am sure! Make transaction.', - - /* Tokens */ - TOKEN_Addr: 'Address: ', - TOKEN_Symbol: 'Token Symbol: ', - TOKEN_Dec: 'Decimals: ', - - /* Send Transaction */ - TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', - TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', - TRANS_standard: 'ETH (Standard Transaction)', - TRANS_eth: 'Only ETH', - TRANS_etc: 'Only ETC', - TRANS_advanced: '+Advanced: Add More Gas or Data ', - TRANS_data: ' Data: ', - TRANS_gas: ' Gas: ', - TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', - - /* Send Transaction Modals */ - TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', - TRANSModal_Content_0: 'A note about the different transactions and different services:', - TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', - TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', - TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', - TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', - TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', - TRANSModal_Yes: 'Sweet, I get it now.', - TRANSModal_No: 'Oh gosh, Im more confused. Help me.', - - /* Offline Transaction */ - OFFLINE_Title: 'Generate & Send Offline Transaction', - OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', - OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', - OFFLINE_Step1_Button: 'Generate Information', - OFFLINE_Step1_Label_1: 'From Address: ', - OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', - OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', - OFFLINE_Step2_Label_1: 'To Address: ', - OFFLINE_Step2_Label_2: 'Value / Amount to Send', - OFFLINE_Step2_Label_3: 'Gas Price ', - OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_4: 'Gas Limit ', - OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', - OFFLINE_Step2_Label_5: 'Nonce', - OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', - OFFLINE_Step2_Label_6: 'Data', - OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', - OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', - OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', - OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', - - /* DAO */ - DAO_bal1: 'at block 1,919,999', - DAO_bal2: 'current', - DAO_TitleETH: 'Withdraw DAO For ETH', - DAO_TitleETC: 'Withdraw DAO For ETC', - DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', - DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', - DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', - DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', - DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', - DAOModal_Title: 'Just making sure...', - // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. - DAOModal_1: 'You are about to withdraw', - DAOModal_2: 'DAO Tokens to', - DAOModal_3: 'for', // "in return for" - - /* Digix */ - DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', - DGD_Label_1: 'Estimated fee consumption:', - DGD_Label_2: 'Provided Maximum Fee:', - DGD_Label_3: 'Gas Price:', - DGD_Generate: 'Generate Claim', - DGD_Content: 'You are about to claim your DGD Tokens.', - - /* Deploy Contracts */ - DEP_generate: 'Generate Bytecode', - DEP_generated: 'Generated Bytecode', - DEP_signtx: 'Sign Transaction', - DEP_interface: 'Generated Interface', - - /* My Wallet */ - MYWAL_Nick: 'Wallet Nickname', - MYWAL_Address: 'Wallet Address', - MYWAL_Bal: 'Balance', - MYWAL_Edit: 'Edit', - MYWAL_View: 'View', - MYWAL_Remove: 'Remove', - MYWAL_RemoveWal: 'Remove Wallet:', - MYWAL_WatchOnly: 'Your Watch-Only Accounts', - MYWAL_Viewing: 'Viewing Wallet: ', - MYWAL_Hide: 'Hide Wallet Info', - MYWAL_Edit_2: 'Edit Wallet: ', - MYWAL_Name: 'Wallet Name', - MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', - MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', - MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', - - /* View Wallet Details */ - VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', - VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', - VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', - - /* Chrome Extension */ - CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', - CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" - - /* Error Messages */ - ERROR_1: 'Please enter valid amount.', - ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', - ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', - ERROR_4: 'This is not a valid wallet file. ', - ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', - ERROR_6: 'Invalid address. ', - ERROR_7: 'Invalid password. ', - ERROR_8: 'Invalid amount. ', - ERROR_9: 'Invalid gas limit. ', - ERROR_10: 'Invalid data value. ', - ERROR_11: 'Invalid gas amount. ', - ERROR_12: 'Invalid nonce. ', - ERROR_13: 'Invalid signed transaction. ', - ERROR_14: 'A wallet with this nickname already exists. ', - ERROR_15: 'Wallet not found. ', - ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', - ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', - ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', - ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', - ERROR_20: 'Invalid symbol', - SUCCESS_1: 'Valid address', - SUCCESS_2: 'Wallet successfully decrypted', - SUCCESS_3: 'Transaction submitted. TX ID: ', - SUCCESS_4: 'Your wallet was successfully added: ', - SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', - - /* Geth Error Messages */ - GETH_InvalidSender: 'Invalid sender', - GETH_Nonce: 'Nonce too low', - GETH_Cheap: 'Gas price too low for acceptance', - GETH_Balance: 'Insufficient balance', - GETH_NonExistentAccount: 'Account does not exist or account balance too low', - GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', - GETH_IntrinsicGas: 'Intrinsic gas too low', - GETH_GasLimit: 'Exceeds block gas limit', - GETH_NegativeValue: 'Negative value', - - /* Tranlsation Info */ - translate_version: '0.3', - Translator_Desc: 'Thank you to our translators: ', - TranslatorName_1: '', - TranslatorAddr_1: '', - /* Translator 1: Insert Comments Here */ - TranslatorName_2: ' ', - TranslatorAddr_2: ' ', - /* Translator 2: Insert Comments Here */ - TranslatorName_3: ' ', - TranslatorAddr_3: ' ', - /* Translator 3: Insert Comments Here */ - TranslatorName_4: ' ', - TranslatorAddr_4: ' ', - /* Translator 4: Insert Comments Here */ - TranslatorName_5: ' ', - TranslatorAddr_5: ' ', - /* Translator 5: Insert Comments Here */ - - - - /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ - HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', - HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', - HELP_Remind_Title: 'Some reminders', - HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', - HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', - HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', - - HELP_0_Title: '0) I\'m new. What do I do?', - HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', - HELP_0_Desc_2: 'Create a new wallet.', - HELP_0_Desc_3: 'Back the wallet up.', - HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', - HELP_0_Desc_5: 'Transfer Ether to this new wallet.', - - HELP_1_Title: '1) How do I create a new wallet? ', - HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', - HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', - HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', - HELP_1_Desc_4: 'Click "GENERATE".', - HELP_1_Desc_5: 'Your wallet has now been generated.', - - HELP_2a_Title: '2a) How do I save/backup my wallet?', - HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', - HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', - HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', - HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', - HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', - HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', - - HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', - HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_2b_Desc_2: 'Click download zip in the upper right.', - HELP_2b_Desc_3: 'Move zip to an airgapped computer.', - HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', - HELP_2b_Desc_5: 'Generate a wallet with a strong password.', - HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', - HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', - HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', - - HELP_3_Title: '3) How do I verify I have access to my new wallet?', - HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', - HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', - HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', - HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', - HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', - HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', - - HELP_4_Title: '4) How do I send Ether from one wallet to another?', - HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', - HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', - HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', - HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', - HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', - HELP_4_Desc_9: 'Click "Generate Transaction".', - HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', - HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', - - HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', - HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', - HELP_4CX_Desc_2: 'QuickSend:', - HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', - HELP_4CX_Desc_4: 'Click the "QuickSend" button.', - HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', - HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', - HELP_4CX_Desc_8: 'Click "Send Transaction". ', - HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', - HELP_4CX_Desc_10: 'Enter the password for that wallet.', - HELP_4CX_Desc_11: 'Click "Send Transaction."', - HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', - - HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', - HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', - HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', - HELP_5_Desc_3: 'Click download zip in the upper right.', - HELP_5_Desc_4: 'Move zip to an airgapped computer.', - HELP_5_Desc_5: 'Unzip it.', - HELP_5_Desc_6: 'Double-Click `index.html`.', - HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', - HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', - HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', - - HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', - HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', - HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', - HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', - HELP_5CX_Desc_4: 'Click "Extensions" on the left.', - HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', - HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', - HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', - HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', - - HELP_6_Title: '6) How do I split my ETH / ETC? ', - HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', - HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', - HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', - HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', - HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', - HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', - HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', - HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', - HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', - HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', - HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', - HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', - HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', - HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', - HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', - - HELP_7_Title: '7) How do I send Tokens & add custom tokens?', - HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', - HELP_7_Desc_1: 'Navigate to the "Send Token" page.', - HELP_7_Desc_2: 'Unlock your wallet.', - HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', - HELP_7_Desc_4: 'Enter the amount you would like to send.', - HELP_7_Desc_5: 'Select which token you would like to send.', - HELP_7_Desc_6: 'If you do not see the token listed:', - HELP_7_Desc_7: 'Click "Custom".', - HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', - HELP_7_Desc_9: 'Click "Save".', - HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', - HELP_7_Desc_11: 'Click "Generate Transaction".', - HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', - HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', - HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', - HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', - - HELP_8_Title: '8) What happens if your site goes down?', - HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', - HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', - HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', - HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', - - HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', - HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', - HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', - HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', - - HELP_9_Title: '9) Is the "Send Ether" page offline?', - HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', - - HELP_10_Title: '10) How do I make an offline transaction?', - HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', - HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', - HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', - HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', - HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', - HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', - HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', - HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', - HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', - HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', - - HELP_11_Title: '11) How do I send to a contract?', - HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', - HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', - HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', - HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', - HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', - HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', - HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', - HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', - HELP_12_Desc_4: 'Go to the "My Wallets" page.', - HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', - HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', - HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', - HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', - HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', - HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', - HELP_12_Desc_11: 'Using your unencrypted private key...', - HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', - HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', - HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', - HELP_12_Desc_15: 'If you are on a Mac:', - HELP_12_Desc_15b: 'If you are on a PC:', - HELP_12_Desc_16: 'Open Text Edit and paste this private key.', - HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', - HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt/`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', - HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt/`', - HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', - HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', - HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', - HELP_12_Desc_23: 'Open Notepad & paste the private key', - HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C://`', - HELP_12_Desc_25: 'Run the command, `geth account import C:/nothing_special_delete_me.txt`', - HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', - HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt/`', - HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', - - HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', - HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', - - HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', - HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', - - HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', - HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', - - HELP_16_Title: '16) How do I check the balance of my account? ', - HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', - - HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', - HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', - - HELP_18_Title: '18) Where is my geth wallet file?', - - HELP_19_Title: '19) Where is my Mist wallet file? ', - HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', - - HELP_20_Title: '20) Where is my pre-sale wallet file?', - HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', - - HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', - HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', - HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', - HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', - HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', - HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', - HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', - HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', - HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', - - HELP_SecCX_Title: 'Security - MyEtherWallet CX ', - HELP_SecCX_Desc_1: 'Where is this extension saving my information?', - HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', - HELP_SecCX_Desc_3: 'What information is saved? ', - HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', - HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', - HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', - - HELP_Sec_Title: 'Security', - HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', - HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', - HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', - HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', - HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', - HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', - HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', - HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', - - HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', - HELP_Contact_Title: 'Ways to Get in Touch' -}; - -module.exports = zh; +// Vietnamese +'use strict'; +var vi = function() {} +vi.code = 'vi'; +vi.data = { + + /* Geth Error Messages */ + GETH_InvalidSender: 'Sai người nhận', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas quá thấp', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Tài khoản không tồn tại hoặc số dư quá thấp', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Navigation*/ + NAV_YourWallets: 'Ví Của Bạn', + NAV_AddWallet: 'Thêm Ví', + NAV_GenerateWallet: 'Tạo Ví', + NAV_BulkGenerate: 'Tạo Nhiều Ví', + NAV_SendEther: 'Gửi Ether', + NAV_SendTokens: 'Gửi Token', + NAV_Offline: 'Giao Dịch Offline', + NAV_WithdrawDAO: 'Thu Hồi DAO Token', + DAO_TitleLong: 'Thu Hồi DAO Token và Hoàn Trả ETH', + NAV_ClaimDGD: 'Khiếu Nại Về DGD', + DGD_TitleLong: 'Khiếu Nại DGD Token Của Bạn', + NAV_DeployContract: 'Phát Triển Hợp Đồng', + NAV_MyWallets: 'Ví Của Tôi', + NAV_ViewWallet: 'Thông Tin Ví', + NAV_Help: 'Trợ Giúp', + NAV_Contact: 'Liên Hệ', + + /* General */ + x_Address: 'Địa Chỉ Của Bạn', + x_AddessDesc: 'Bạn có thể xem đây là Địa chỉ ví cá nhân của bạn. Bạn có thể gửi "Địa chỉ ví" này đến người mà bạn muốn nhận ETH từ họ. Biểu tượng bên cạnh giúp việc nhận dạng "Địa chỉ ví" của bạn dễ dàng hơn.', + x_CSV: 'Định Dạng CSV (Không mã hoá)', + x_Cancel: 'Huỷ', + x_Download: 'Tải Về Máy', + x_Json: 'Định Dạng JSON (Không mã hoá)', + x_JsonDesc: 'Định Dạng JSON là một tập tin chứa dữ liệu ví chưa được mã hoá của Private Key. Bạn có thể đăng nhập vào ví của bạn bằng việc sử dụng định dạng JSON mà không cần đến mật khẩu. Vì vậy, bất kỳ người nào sở hữu định dạng JSON của bạn thì họ đều có khả năng đăng nhập vào ví của bạn mà không cần đến mật khẩu.', + x_Keystore: 'Định Dạng Keystore/JSON (Đã mã hoá. Định Dạng này sử dụng cho Mist/Geth)', + x_Keystore2: 'Định Dạng Keystore / JSON', + x_KeystoreDesc: 'Định dạng Keystore/JSON là tập một tin chứa dữ liệu ví đã được mã hoá của Private Key và sử dụng cho Mist & Geth. Do đó bạn có thể dễ dàng bỏ nó vào bên trong Mist & Geth và tiếp tục sử dụng ví của bạn. Đây là một tập tin được đề xuất nhằm sao lưu dữ liệu ví cá nhân.', + x_Password: 'Mật Khẩu', + x_Print: 'Tạo Ví Giấy', + x_PrintDesc: 'Mẹo: kích chuột trái vào nút "In Ví" sau đó chọn "Save this as a PDF" để lưu nó thành định dạng PDF trên máy tính của bạn nếu bạn không sở hửu máy in cá nhân!', + x_PrintShort: 'In Ví', + x_PrivKey: 'Private Key (Không mã hoá)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'Đây là một đoạn dữ liệu có định dạng bằng văn bản không bị mã hoá và nó chính là private key của bạn. Nếu người nào sở hữu Private Key của bạn thì họ có thể truy cập vào ví của bạn mà không cần đến mật khẩu. Vì vậy, Chúng tôi khuyên bạn nên dùng phiên bản có định dạng đã được mã hoá.', + x_Save: 'Lưu', + x_TXT: 'Định Dạng TXT (Không mã Hoá)', + x_Wallet: 'Ví', + + /* Header */ + MEW_Warning_1: 'Chú Ý! Kiểm tra cẩn thận URL trước khi bạn muốn đăng nhập vào ví hoặc tạo một ví mới. Cảnh giác cao đối với những trang web lừa đảo!', + CX_Warning_1: 'Hãy chắc chắn rằng bạn đã thực hiện việc sao lưu dữ liệu cho những ví bạn đang sử dụng tại đây. Nhiều khả năng có thể xảy ra sẽ dẩn đến việc mất đi dữ liệu mà bạn lưu tại phần mở rộng của Chrome (bao gồm việc gỡ bỏ cài đặt và cài đặt lại các phần mở rộng). Phần mở rộng này là cách dễ dàng để truy cập vào ví của bạn, nhưng nó không phải là nơi để bạn sao lưu dữ liệu.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Nhà Phát Triển:', + FOOTER_2: 'Quyên Góp & Ủng Hộ Vào "Quỹ Phát Triển" Từ Bạn Là Một Hành Động Đáng Trân Trọng:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Những Điều Cần Lưu Ý', + + /* Sidebar */ + sidebar_AccountInfo: 'Thông Tin Tài Khoản: ', + sidebar_AccountAddr: 'Địa Chỉ Tài Khoản: ', + sidebar_AccountBal: 'Số Dư Tài Khoản: ', + sidebar_TokenBal: 'Số Dư Token: ', + sidebar_Equiv: 'Giá Trị Tương Đương: ', + sidebar_TransHistory: 'Lịch Sử Giao Dịch: ', + sidebar_DGDBal: 'Thông Tin Crowdsale DGD:', + sidebar_donation: 'MyEtherWallet là một ứng dụng miễn phí được xây dựng trên mã nguồn mở nhằm bảo vệ quyền riêng tư và sự bảo mật của người sử dụng. các khoản quyên góp mà chúng tôi nhận được sẽ giúp chúng tôi có cơ hội dành nhiều thơi gian hơn cho việc lắng nghe những phản hồi từ người sử dụng nhằm tạo ra những ứng dụng mới nhằm đáp ứng những mong muốn từ người sử dụng. Chúng tôi hiện tại là hai cá nhân đang cố gắng làm cho thế giới ngày một tốt hơn. Hãy cùng chung giúp chúng tôi', + sidebar_donate: 'Quyên Góp', + sidebar_thanks: 'Xin Chân Thành Cảm Ơn!!!', + + /* Decrypt Panel */ + decrypt_Access: 'Làm thế nào để truy cập vào ví của bạn?', + decrypt_Title: 'Chọn Loại Định Dạng Private Key Thích Hợp:', + decrypt_Select: 'Chọn ví:', + + /* Add Wallet */ + ADD_Label_1: 'Bạn đang cần làm gì?', + ADD_Radio_1: 'Tạo Ví Mới', + ADD_Radio_2: 'Chọn Tập Tin Ví Của Bạn (Keystore / JSON)', + ADD_Radio_2_alt: 'Chọn Tập Tin Ví Của Bạn: ', + ADD_Radio_2_short: 'CHỌN TẬP TIN VÍ...', + ADD_Radio_3: 'Dán/Gõ Private Key Ví Của Bạn ', + ADD_Radio_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Label_2: 'Tạo Tên Gọi:', + ADD_Label_3: 'Ví của bạn sẽ được giải mã. Xin vui lòng điền mật khẩu: ', + ADD_Label_4: 'Thêm Tài Khoản Để Theo Dõi', + ADD_Warning_1: 'Bạn có thể thêm bất kỳ tài khoản nào bạn muốn theo dõi trên ví mà không cần đến Mật khẩu bảo mật. Việc này không có nghĩa là bạn đã truy cập vào bên trong ví. Do đó bạn sẽ không thực hiện được giao dịch tại chức năng này.', + ADD_Label_5: 'Điền Địa Chỉ Ví: ', + ADD_Label_6: 'Mở Khoá Cho Ví Của Bạn: ', + ADD_Label_6_short: 'Mở Khoá', + ADD_Label_7: 'Thêm Tài Khoản', + + /* Generate Wallets */ + GEN_desc: 'Nếu bạn muốn tạo nhiều ví cùng một lúc, bạn có thể thực hiện tại đây: ', + GEN_Label_1: 'Tạo mật khẩu thật mạnh nhằm bảo mật tài khoản (ít nhất 9 ký tự)', + GEN_Placeholder_1: 'Lưu nó lại một cách cẩn thận!', + GEN_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + GEN_Warning: '**Bạn cần sử dụng tập tin chứa định dạng Keystore/JSON cùng với Mật khẩu hoặc Private Key của bạn** cho việc đăng nhập vào ví này trong tương lai. Hãy sao lưu và cất giữ nó cẩn thận tại kho lưu trữ của bạn! Không có cách nào để khôi phục Ví của bạn nếu bạn không sao lưu dữ liệu ví lại. Đọc Thêm [trang trợ giúp] (https://www.myetherwallet.com/#help) để được hướng dẫn cụ thể.', + GEN_Label_2: 'Lưu lại tập tin chứa định dạng Keystore/JSON hoặc Private Key. Đừng quên mật khẩu mà bạn đã tạo phía trên.', + GEN_Label_3: 'Địa Chỉ Ví (bạn cần lưu lại cho việc sử dụng).', + GEN_Label_4: 'Bạn có thể in ví giấy hoặc lưu giữ mã QR một cách cẩn thận.', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Số Lượng Ví Cần Tạo', + BULK_Label_2: 'Tạo Ví', + BULK_SuccessMsg: 'Ví của bạn đã được tạo thành công.', + + /* Sending Ether and Tokens */ + SEND_addr: 'Địa Chỉ Đến: ', + SEND_amount: 'Số Lượng Cần Gửi: ', + SEND_amount_short: 'Số Lượng', + SEND_custom: 'Tuỳ Chỉnh', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Gửi Hết Số Dư Hiện Có', + SEND_generate: 'Tạo Giao Dịch', + SEND_raw: 'Định Dạng Giao Dịch', + SEND_signed: 'Chữ Ký Giao Dich', + SEND_trans: 'Gửi Đi', + SENDModal_Title: 'Cảnh Báo! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'Bạn muốn gửi đi', + SENDModal_Content_2: 'Địa chỉ đến', + SENDModal_Content_3: 'Bạn đã chắc chắn muốn thực hiện giao dịch này', + SENDModal_Content_4: 'Lưu Ý: Nếu bạn gặp lỗi, bạn cần phải thêm ether vào tài khoản của bạn để thanh toán chi phí gas của việc gửi Token. Gas được thanh toán bằng ether.', + SENDModal_No: 'Không, Đưa tôi ra khỏi đây!', + SENDModal_Yes: 'Có, Tôi chắc chắn! Hãy thực hiện giao dịch.', + + /* Tokens */ + TOKEN_Addr: 'Địa Chỉ: ', + TOKEN_Symbol: 'Ký Hiệu Token: ', + TOKEN_Dec: 'Phân Số Thập Phân: ', + + /* Send Transaction */ + TRANS_desc: 'Nếu bạn muốn gửi Token, xin vui lòng sử dụng danh mục "Gửi Token".', + TRANS_warning: 'Nếu bạn sử dụng chức năng "Chỉ ETH" hoặc "Chỉ ETC" trong việc gửi đi thông qua một hợp đồng thông minh. Những dịch vụ có chức năng chấp nhận các giao dịch. Đọc Thêm.', + TRANS_standard: 'ETH (Giao Dịch Phổ Thông)', + TRANS_eth: 'Chỉ ETH', + TRANS_etc: 'Chỉ ETC', + TRANS_advanced: 'Nâng Cao: Thêm Gas hoặc Dữ Liệu', + TRANS_data: 'Dữ Liệu:', + TRANS_gas: 'Gas:', + TRANS_sendInfo: 'Mỗi Giao dịch Phổ Thông sử dụng hết 21000 gas có giá tương đương 0.000441 ETH. Chúng tôi áp dụng giá Gas dành cho một giao dịch cao hơn so với mức tối thiểu là 0.000000021 ETH nhằm đảm bảo một giao dịch được diễn ra nhanh. Chúng tôi hoàn toàn không nhận được khoản tiền phát sinh nào từ phí giao dịch.', + + /* Send Transaction Modals */ + TRANSModal_Title: 'Giao Dịch "Chỉ ETH" Và "Chỉ ETC"', + TRANSModal_Content_0: 'Một số lưu ý về sự khác biệt của từng loại giao dịch và sự khác biệt của từng dịch vụ:', + TRANSModal_Content_1: '**ETH (Giao Dịch Phổ Thông): ** Phương pháp này mặc định rằng nó sẽ tạo giao dịch từ một địa chỉ gửi đến địa chỉ nhận khác và nó sẽ tiêu thụ hết 21000 gas. Theo giả thuyết thì bất kì số ETH gửi đi thông qua phương pháp này sẽ được thực hiện lại tương tự trên chuổi ETC.', + TRANSModal_Content_2: '**Chỉ ETH: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETH**.', + TRANSModal_Content_3: '**Chỉ ETC: ** Phương pháp này sẽ thực hiện giao dịch thông qua [Hợp đồng thông minh nhằm "tránh việc phát lại" được phát triển bởi Timon Rapp (theo lời cảnh báo của VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) vì vậy giao dịch này chỉ được thực hiện trên chuổi **ETC**. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Giao Dịch chỉ được thực hiện thông qua giao dịch phổ thông. Nếu bạn thực hiện thông qua hợp đồng "Chỉ", thì bạn cần phải liên hệ trực tiếp với nhân viên hỗ trợ của họ để họ tự thêm vào hoặc hoàn lại tiền cho bạn. [bạn cũng có thể thử với công cụ "chia tách" của Shapeshift.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** không có sự cố nào xảy ra khi thực hiện giao dịch.', + TRANSModal_Yes: 'Tuyệt vời, Tôi dã hiểu.', + TRANSModal_No: 'Tôi gặp gặp phải một vài vấn đề khó hiểu.Làm ơn giúp tôi hiểu rõ hơn.', + + /* Offline Transaction */ + OFFLINE_Title: 'Tạo và Gửi đối với giao dịch offline', + OFFLINE_Desc: 'Tạo một giao dịch Offline sẽ được thực hiện với 3 bước. bạn sẽ hoàn thành bước 1 và 3 trên cùng 1 máy tính đang trong tình trạng online và thực hiện bước 2 trên một máy tính đang trong tình trạng offline/airgapped. Việc này sẽ đảm bảo Private Key của bạn không có bất cứ một liên kết nào với một thiết bị đang kết nối internet nào khác.', + OFFLLINE_Step1_Title: 'Bước 1: Tạo Thông Tin (Máy tính đang Online)', + OFFLINE_Step1_Button: 'Tạo Thông Tin', + OFFLINE_Step1_Label_1: 'Địa Chỉ Gửi: ', + OFFLINE_Step1_Label_2: 'Lưu ý: Đây phải là tài khoản gửi, không phải tài khoản đến. Nonce sẽ được tạo ra từ tài khoản có nguồn gốc. Nếu sử dụng máy tính có tình trạng airgapped, thì nó sẽ trở thành địa chỉ của tài khoản lưu trữ lạnh.', + OFFLINE_Step2_Title: 'Bước 2: Tạo Giao Dịch (Máy Tính Đang Offline)', + OFFLINE_Step2_Label_1: 'Địa Chỉ Đến: ', + OFFLINE_Step2_Label_2: 'Đơn vị / Tổng số gửi:', + OFFLINE_Step2_Label_3: 'Giá Gas', + OFFLINE_Step2_Label_3b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_4: 'Giới hạn Gas', + OFFLINE_Step2_Label_4b: '21000 măc định sẽ là số gas giới hạn. khi bạn gửi đi một hợp đồng hoặc thêm dữ liệu, việc này sẽ cần phải làm khác đi. Lượng Gas không được sử dụng sẽ hoàn trả cho bạn.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'Điều này đã được hiển thị ở bước 1 trên máy tính trực tuyến của bạn.', + OFFLINE_Step2_Label_6: 'Dữ Liệu', + OFFLINE_Step2_Label_6b: 'Đây là phần tùy chọn. Dữ liệu thường được sử dụng khi bạn gửi các giao dịch hợp đồng.', + OFFLINE_Step2_Label_7: 'Nhập / Chọn Private Key / JSON của bạn.', + OFFLINE_Step3_Title: 'Bước 3: Gửi / Làm rõ Giao Dịch (Máy tính đang Online)', + OFFLINE_Step3_Label_1: 'Dán chữ ký Giao Dịch được tạo từ Bước 2 vào đây và chọn nút "Thực hiện Giao Dịch".', + + /* DAO */ + DAO_bal1: 'Tại Block 1,919,999', + DAO_bal2: 'Hiện Tại', + DAO_TitleETH: 'Thu Hồi DAO Và Hoàn Trả ETH', + DAO_TitleETC: 'Thu Hồi DAO Và Hoàn Trả ETC', + DAO_ETC_Label_1: 'Địa chỉ mà bạn muốn số lượng ETC của bạn được gửi đến?', + DAO_ETC_Label_2: 'Nhóm Whitehat đã làm việc cật lực để đòi lại số ETC và mang về cho bạn. Bạn có thể nói lời cảm ơn đến họ bằng cách quyên góp một phần tỷ lệ % từ khoảng hoàn lại của bạn. ', + DAO_Desc: 'Sử dụng phần này cho việc thu hồi DAO Token và hoàn trả lại **ETH & ETC**. Nếu bạn muốn gửi DAO Token, xin vui lòng sử dụng mục "gửi Token".', + DAO_Inst: 'Đúng rồi, Bạn chỉ cần chọn vào nút lớn màu đỏ.', + DAO_Warning: 'Nếu bạn nhận được một thông báo lỗi "số dư tài khoản không đủ cho Gas", thì bạn cần có mộ lượng nhỏ ether trong tài khoản được dùng để thanh toán chi phí gas. Bạn hãy thêm vào 0.001 ether vào tài khoản và thực hiện lại. ', + DAOModal_Title: 'Đảm bảo rằng...', + DAOModal_1: 'Bạn Muốn thực hiện việc "Thu Hồi"', + DAOModal_2: 'Số Dao Token đến', + DAOModal_3: 'Hoàn Lại', // "in return for" + + /* Digix */ + DGD_Desc: 'Khiếu nại về DigixDAO(DGD) Token & Danh Hiệu. Để thực hiện việc khiếu nại, bạn phải tham gia vào buổi bán token vào ngày 30 và 31 tháng 3 năm 2016. Nếu bạn muốn gửi DGD, xin vui lòng sử dụng Mục "Gửi Token".', + DGD_Label_1: 'Phí Giao Dịch Ước Tínhn:', + DGD_Label_2: 'Cung Cấp Phí Tối Đa:', + DGD_Label_3: 'Giá Gas:', + DGD_Generate: 'Tạo Khiếu Nại', + DGD_Content: 'Bạn Muốn Khiếu Nại về DGD Token?', + + /* Deploy Contracts */ + DEP_generate: 'Tạo Bytecode', + DEP_generated: 'Bytecode Đã Được Tạo', + DEP_signtx: 'Chữ Ký Giao Dịch', + DEP_interface: 'Đã Tạo Giao Diện', + + /* My Wallet */ + MYWAL_Nick: 'Tên Gọi Của Ví', + MYWAL_Address: 'Địa Chỉ Ví', + MYWAL_Bal: 'Số Dư', + MYWAL_Edit: 'Chỉnh Sửa', + MYWAL_View: 'Xem', + MYWAL_Remove: 'Gỡ Bỏ', + MYWAL_RemoveWal: 'Gỡ Bỏ Ví:', + MYWAL_WatchOnly: 'Tài khoản theo dõi của bạn', + MYWAL_Viewing: 'Xem Ví: ', + MYWAL_Hide: 'Ẩn Thông Tin Ví', + MYWAL_Edit_2: 'Chỉnh Sửa Ví: ', + MYWAL_Name: 'Tên Ví', + MYWAL_Content_1: 'Cảnh Báo! Bạn Muốn gỡ bỏ Ví của bạn: ', + MYWAL_Content_2: 'Hãy chắc chắn bạn đã **Lưu giữ Private Key hoặc Tập Tin chứa định dạng Keystore và mật khẩu** Trước khi bạn gỡ bỏ nó.', + MYWAL_Content_3: 'Nếu bạn muốn sử dụng địa chỉ Ví này với MyEtherWallet CX trong tương lai, bạn sẽ cần phải tự thêm vào lại bằng cách sử dụng tập tin Private Key / JSON và mật khẩu.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. Bạn có thể muốn làm điều này để [nhập tài khoản của bạn vào Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). Nếu bạn muốn kiểm tra số dư của bạn, chúng tôi khuyên bạn sử dụng một blockchain explorer như [etherscan.io] (http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'Việc này cho phép bạn tải về các phiên bản khác nhau của Private Key và in lại ví giấy của bạn. ', + VIEWWALLET_SuccessMsg: 'Đã Thành Công! Đây là thông tin chi tiết về Ví của bạn.', + + /* Chrome Extension */ + CX_error_1: 'Bạn không có bất kỳ ví nào được lưu lại. Chọn Nút ["Thêm Ví"](/cx-wallet.html#add-wallet) để thêm ví!', + CX_quicksend: 'Gửi Nhanh', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Vui lòng nhập số dư hợp lệ.', + ERROR_2: 'Mật khẩu của bạn phải có ít nhất 9 ký tự. Hãy đảm bảo rằng nó là một mật khẩu mạnh. ', + ERROR_3: 'Lấy làm tiếc! Chúng tôi không nhận ra loại Định Dạng từ tập tin ví. ', + ERROR_4: 'Đây không phải là một tập tin ví hợp lệ. ', + ERROR_5: 'Đơn vị này không tồn tại, xin vui lòng sử dụng một trong những đơn vị sau đây ', + ERROR_6: 'Địa chỉ không hợp lệ. ', + ERROR_7: 'Mật khẩu không hợp lệ. ', + ERROR_8: 'Tổng số không hợp lệ. ', + ERROR_9: 'Giới hạn gas không hợp lệ. ', + ERROR_10: 'Dữ liệu không hợp lệ. ', + ERROR_11: 'Tổng số gas không hợp lệ. ', + ERROR_12: 'Nonce không hợp lệ. ', + ERROR_13: 'Chữ ký giao dịch không hợp lệ. ', + ERROR_14: 'Tên gọi này đã được sữ dụng. ', + ERROR_15: 'Không tìm thấy Ví. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'Đã có một ví với địa chỉ này đang tồn tại trong mục lưu trữ. Vui lòng kiểm tra trang ví của bạn. ', + ERROR_18: 'Bạn cần có ít nhất 0.001 ether trong tài khoản để thanh toán chi phí gas. Hãy thêm một số ether và thực hiện lại. ', + ERROR_19: 'Toàn bộ gas sẽ được sử dụng trong giao dịch này. Việc làm này có nghĩa là bạn đã bỏ phiếu cho đề xuất này hoặc kỳ hạn của cuộc tranh luận đã kết thúc.', + ERROR_20: 'Biểu tượng không hợp lệ', + SUCCESS_1: 'Địa Chỉ Hợp Lệ', + SUCCESS_2: 'Ví đã được giải mã thành công', + SUCCESS_3: 'Giao dịch đã gửi đi, TX ID:', + SUCCESS_4: 'Ví của bạn đã được thêm thành công:', + SUCCESS_5: 'Bạn đã bỏ phiếu thành công. Cảm ơn vì đã tham gia tích cực trong The DAO.', + SUCCESS_6: 'Tập Tin Được Chọn: ', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Chân Thành Cảm Ơn: ', + TranslatorName_1: 'Phạm Thế Vũ', + TranslatorAddr_1: 'https://www.facebook.com/pham.vu.56211', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: 'và Ethereum Vietnam', /* Ethereum Vietnam please! */ + TranslatorAddr_2: 'https://www.facebook.com/ethereumvietnam', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'Nêu bạn khởi tạo tài khoản hoặc tải xuống tệp ví trước ngày 31 tháng 12 năm 2015, xin vui lòng kiểm tra dữ liệu ví và tải xuống phiên bản mới nhất của tệp. Bấm vào đây để biết thêm chi tiết.', + HELP_Desc: 'Mọi thắc mắc và góp ý, xin vui lòng liên hệ với chúng tôi. [Liên Hệ](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Lưu ý:', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, và một số thư viện JavaScript vẫn đang được thử nghiệm.** Mặc dù chúng tôi đã chạy thử nghiệm nhiều lần và đã có hàng trăm ngàn tài khoản được đăng ký và sử dụng thành côngd trên khắp thế giới, khả năng sự cố xảy ra ngoài ý muốn là không thể tránh khỏi. Không nên đầu tư nhiều hơn số tiền bạn có thể mất, và thận trọng khi sử dụng . Trong trường hợp sự cố xảy ra , chúng tôi rất lấy làm tiếc sorry nhưng * * Chúng tôi không chịu trách nhiệm về Ether thất lạc', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX không phải là "web wallet". Vì vậy thôn0 tin tài khoản và Ether của bạn không do chúng tôi nắm giữi. Mọi dữ liệu đều nằm trong máy tính cá nhân hay trình duyệt web của bạn. Chúng tôi chỉ cung cấp công cụ nhằm giúp đỡ người sử dụng lưu trữ và, truy cập thông tin của bạn và giao dịch trên hệ thống blockchain.', + HELP_Remind_Desc_3: 'Nếu bạn không lưu trữ private key và mật khẩu, sẽ không có cách nào phục hồi và truy cập được dữ liệu ví. Lưu trữ các thông tin quan trọng qua nhiều cách và địa điểm khác nhau là cách tốt nhất để bảo vệ tài sản của bạn.', + + HELP_0_Title: '0) Tôi là người mới sử dụng; tôi nên bắt đầu từ đâu?', + HELP_0_Desc_1: 'MyEtherWallet cung cấp công cụ cho bạn khả năng thiết lập ví và lưu trữ Ether chứ không phải sàn giao dịch. Mọi quá trình do bạn thực hiện đều diễn ra trên máy tính cá nhân của bạn chứ không tại bất kì server nào. Vì vậy, khi thiết lập ví cá nhân, **bạn là người có trách nhiệm hoàn toàn đối với bảo mật và an toàn của chính bản thân**.', + HELP_0_Desc_2: 'Tạo ví mới.', + HELP_0_Desc_3: 'Sao lưu ví như thế nào?.', + HELP_0_Desc_4: 'Kiểm tra đăng nhập và sao lưu đúng cách các thông tin quan trọng.', + HELP_0_Desc_5: 'Gửi Ether tới một ví mới.', + + HELP_1_Title: '1) Tạo ví mới bằng cách nào? ', + HELP_1_Desc_1: 'Truy cập mục "Tạo Ví Mới".', + HELP_1_Desc_2: 'Chọn "Thêm Ví" và bấm "Tạo Ví"', + HELP_1_Desc_3: 'Nhập mật khẩu một cách thận trọng, nếu mật khẩu quá dài và khó nhớ, hãy sao lưu lại! Bạn sẽ cần mật khẩu này để thực hiện các giao dịch sau này.', + HELP_1_Desc_4: 'Bám "Tạo Ví', + HELP_1_Desc_5: 'Ví mới của bạn đã được khởi tạo!', + + HELP_2a_Title: '2a) Sao lưu thông tin ví như thế nào?', + HELP_2a_Desc_1: 'Bạn luôn luôn nên sao lưu các dữ liệu quan trọng tại nhiều nơi không chỉ máy tính cá nhân của bạn nằm tránh thất lạc thông tin khi may tính không sử dụng được - ví dụ như USB hoặc in ra.', + HELP_2a_Desc_2: 'Sao lưu địa chỉs. Địa chỉ này có thể được chia sẽ với người khác trong trường hợ cần thực hiện giao dịch.', + HELP_2a_Desc_3: 'Sao lưu private key. Private Key này tuyệt đống không chia sẽ với người khác. Private key của bạn có thể được sử dụng nhằm truy cập ví và thực hiện các giao dịch mà không cần mật khẩu! Có 3 loại private keys:', + HELP_2a_Desc_4: 'Sao lưu địa chỉ ví, private key, và bản PDF của ví giấy taị nơi an toàn ví dụ như ổ cứng hoặc USB.', + HELP_2a_Desc_5: 'Nên in ví ra giấy hoặc viết các thông tin quan trọng lên giấy.', + HELP_2a_Desc_6: 'Sao lưu nhiều cách khác nhau nhằm đảm bảo an toàn bảo mật và dữ liệu trong ví của bạn trong những trường hợp ổ cứng bị hư hại, hoặc thất lạc USB, ví giấy.', + + HELP_2b_Title: '2b) Bằng cách nào có thể lưu trữ dữ liệu local và offline trên MyEtherWallet?', + HELP_2b_Desc_1: 'Tuy cập github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Bấm "download zip" ở góc trên bên phải.', + HELP_2b_Desc_3: 'Tải tệp zip về máy.', + HELP_2b_Desc_4: 'Giải nén và truy cập file `index.html`.', + HELP_2b_Desc_5: 'Tạo ví như hướng dẫn.', + HELP_2b_Desc_6: 'Sao lưu địa chỉ và private key.Sao lưu mật khẩu nếu khó nhớ.', + HELP_2b_Desc_7: 'Sử dụng nhiều cách khác nhau để sao lưu (USB, Ổ cứng, in ra giấy.', + HELP_2b_Desc_8: 'Đăng nhập để kiểm tra thông tin sao lưu là chính xác. Chú ý xác nhận địa chỉ lưu xuống và địa chỉ sau khi đăng nhậ cóp trùng khớ. ', + + HELP_3_Title: '3) Bằng cách nào để xác nhận mình có khả năng truy cập vào ví mới khởi tạo?', + HELP_3_Desc_1: '**Trước khi thực hiện bất cứ giao dịch nào**, xin vui lòng kiểm tra và xác nhận khả năng truy cập.', + HELP_3_Desc_2: 'Truy cập mục "Xem Ví".', + HELP_3_Desc_3: 'Chọn mục "Xem thông tin ví".', + HELP_3_Desc_4: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập.', + HELP_3_Desc_5: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_3_Desc_6: 'Bấm "Mở Khóa".', + HELP_3_Desc_7: 'Sau khi thông tin ví được hiển thị, xác nhận địa chỉ ví cạnh hình tròn có nhiều màu sắc.Hình này tượng trưng cho địa chỉ ví của bạn.Dối chiếu thật kỹ địa chỉ hiển thị và địa chỉ bạn sao lưu.', + HELP_3_Desc_8: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + + HELP_4_Title: '4) Bằng cách nào để gửi Ether từ một ví tới một ví khác?', + HELP_4_Desc_1: 'Nếu bạn có ý định di chuyển một số lượng lớn Ether, chúng tôi khuyến khích thử nghiệm trước với 0.001 ether nhằm xác nhận mọi thao tác và truy cập ví nơi đến là chính xác.', + HELP_4_Desc_2: 'Truy cập mục "Gửi Ether".', + HELP_4_Desc_3: 'Chọn tệp ví tải xuống hoặc nhập private key để đăng nhập', + HELP_4_Desc_4: 'Nếu tệp ví của bạn đã đươc mã hóa, nhập mật khẩu để tiếp tục đăng nhập.', + HELP_4_Desc_5: 'Bấm "Mở Khóa"', + HELP_4_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Nhập địa chỉ nơi nhận tại mục "Địa Chỉ Đến:".', + HELP_4CX_Desc_7: 'Nhập số lượng muốn gửi. Bạn cũng có thể chọn "Gửi Hết Số Dư Hiện Có" nếu muốn gửi toàn bộ số Ether trong tài khoản.', + HELP_4CX_Desc_8: 'Bấm "Gửi Đi". ', + HELP_4CX_Desc_9: 'Kiểm tra và xác nhận địa chỉ nhận.', + HELP_4CX_Desc_10: 'Nhập mật khẩu ví.', + HELP_4CX_Desc_11: 'Xác nhận giao dịch', + HELP_4CX_Desc_12: '', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = vi; },{}],64:[function(require,module,exports){ +// Chinese +'use strict'; +var zh = function() {} +zh.code = 'zh'; +zh.data = { + + /* Navigation*/ + NAV_YourWallets: 'Your Wallets', + NAV_AddWallet: 'Add Wallet', + NAV_GenerateWallet: 'Generate Wallet', + NAV_BulkGenerate: 'Bulk Generate', + NAV_SendEther: 'Send Ether', + NAV_SendTokens: 'Send Tokens', + NAV_Offline: 'Send Offline', + NAV_WithdrawDAO: 'Withdraw DAO', + DAO_TitleLong: 'Withdraw Your Dao Tokens For ETH', + NAV_ClaimDGD: 'Claim DGD', + DGD_TitleLong: 'Claim Your DGD Tokens', + NAV_DeployContract: 'Deploy Contract', + NAV_MyWallets: 'My Wallets', + NAV_ViewWallet: 'View Wallet Info', + NAV_Help: 'Help', + NAV_Contact: 'Contact', + + /* General */ + x_Address: 'Your Address', + x_AddessDesc: 'You may know this as your "Account #" or your "Public Key". It is what you send people so they can send you ether. That icon is an easy way to recognize your address.', + x_Cancel: 'Cancel', + x_CSV: 'CSV file (unencrypted)', + x_Download: 'Download', + x_Json: 'JSON File (unencrypted)', + x_JsonDesc: 'This is the unencrypted, JSON format of your private key. This means you do not need the password but anyone who finds your JSON can access your wallet & Ether without the password.', + x_Keystore: 'Keystore/JSON File (Recommended · Encrypted · Mist/Geth Format)', + x_Keystore2: 'Keystore/JSON File', + x_KeystoreDesc: 'This Keystore / JSON file matches the format used by Mist & Geth so you can easily import it in the future. It is the recommended file to download and back up.', + x_Password: 'Password', + x_Print: 'Print Paper Wallet', + x_PrintDesc: 'ProTip: Click print and save this as a PDF, even if you do not own a printer!', + x_PrintShort: 'Print', + x_PrivKey: 'Private Key (unencrypted)', + x_PrivKey2: 'Private Key', + x_PrivKeyDesc: 'This is the unencrypted text version of your private key, meaning no password is necessary. If someone were to find your unencrypted private key, they could access your wallet without a password. For this reason, encrypted versions are typically recommended.', + x_Save: 'Save', + x_TXT: 'TXT file (unencrypted)', + x_Wallet: 'Wallet', + + /* Header */ + MEW_Warning_1: 'Always check the URL before accessing your wallet or creating a new wallet. Beware of phishing sites!', + CX_Warning_1: 'Make sure you have **external backups** of any wallets you store here. Many things could happen that would cause you to lose the data in this Chrome Extension, including uninstalling and reinstalling the extension. This extension is a way to easily access your wallets, **not** a way to back them up.', + MEW_Tagline: 'Open Source JavaScript Client-Side Ether Wallet', + CX_Tagline: 'Open Source JavaScript Client-Side Ether Wallet Chrome Extension', + + /* Footer */ + FOOTER_1: 'An open source, javascript, client-side tool for generating Ethereum Wallets & sending transactions.', + FOOTER_1b: 'Created by', + FOOTER_2: 'Donations greatly appreciated:', + FOOTER_3: 'Client-side wallet generation by', + FOOTER_4: 'Disclaimer', + + /* Sidebar */ + sidebar_AccountInfo: 'Account Information: ', + sidebar_AccountAddr: 'Account Address: ', + sidebar_AccountBal: 'Account Balance: ', + sidebar_TokenBal: 'Token Balances: ', + sidebar_Equiv: 'Equivalent Values: ', + sidebar_TransHistory: 'Transaction History: ', + sidebar_DGDBal: 'DGD Crowdsale Information:', + sidebar_donation: 'MyEtherWallet is a free, open-source service dedicated to your privacy and security. The more donations we receive, the more time we spend creating new features, listening to your feedback, and giving you what you want. We are just two people trying to change the world. Help us?', + sidebar_donate: 'Donate', + sidebar_thanks: 'THANK YOU!!!', + + /* Decrypt Panel */ + decrypt_Access: 'How would you like to access your wallet?', + decrypt_Title: 'Select the format of your private key:', + decrypt_Select: 'Select a Wallet:', + + /* Add Wallet */ + ADD_Label_1: 'What would you like to do?', + ADD_Radio_1: 'Generate New Wallet', + ADD_Radio_2: 'Select Your Wallet File (Keystore / JSON)', + ADD_Radio_2_alt: 'Select Your Wallet File: ', + ADD_Radio_2_short: 'SELECT WALLET FILE...', + ADD_Radio_2_success: 'File Selected: ', + ADD_Radio_3: 'Paste/Type Your Private Key ', + ADD_Radio_4: 'Add an Account to Watch', + ADD_Label_2: 'Create a Nickname:', + ADD_Label_3: 'Your wallet is encrypted. Please enter the password: ', + ADD_Label_4: 'Add an Account to Watch', + ADD_Warning_1: 'You can add any account to "watch" on the wallets tab without uploading a private key. This does ** not ** mean you have access to this wallet, nor can you transfer Ether from it.', + ADD_Label_5: 'Enter the Address: ', + ADD_Label_6: 'Unlock your Wallet: ', + ADD_Label_6_short: 'Unlock', + ADD_Label_7: 'Add Account', + + /* Generate Wallets */ + GEN_desc: 'If you want to generate multiple wallets, you can do so here: ', + GEN_Label_1: 'Enter a strong password (at least 9 characters)', + GEN_Placeholder_1: 'Do NOT forget to save this!', + GEN_SuccessMsg: 'Success! Your wallet has been generated.', + GEN_Warning: '**You need your Keystore/JSON File & password or Private Key** to access this wallet in the future. Please save & back it up externally! There is no way to recover a wallet if you do not save it. Read the [help page](https://www.myetherwallet.com/#help) for instructions.', + GEN_Label_2: 'Save your Keystore/JSON or Private Key. Don\'t forget your password above.', + GEN_Label_3: 'Save Your Address.', + GEN_Label_4: 'Print your paper wallet, or store a QR code verison. (optional)', + + /* Bulk Generate Wallets */ + BULK_Label_1: 'Number of Wallets To Generate', + BULK_Label_2: 'Generate Wallets', + BULK_SuccessMsg: 'Success! Your wallets have been generated.', + + /* Sending Ether and Tokens */ + SEND_addr: 'To Address: ', + SEND_amount: 'Amount to Send: ', + SEND_amount_short: 'Amount', + SEND_custom: 'Custom', + SEND_gas: 'Gas', + SEND_TransferTotal: 'Send Entire Balance', + SEND_generate: 'Generate Transaction', + SEND_raw: 'Raw Transaction', + SEND_signed: 'Signed Transaction', + SEND_trans: 'Send Transaction', + SENDModal_Title: 'Warning! ', + /* full sentence reads "You are about to send "10 ETH" to address "0x1234". Are you sure you want to do this? " */ + SENDModal_Content_1: 'You are about to send', + SENDModal_Content_2: 'to address', + SENDModal_Content_3: 'Are you sure you want to do this?', + SENDModal_Content_4: 'NOTE: If you encounter an error, you most likely need to add ether to your account to cover the gas cost of sending tokens. Gas is paid in ether.', + SENDModal_No: 'No, get me out of here!', + SENDModal_Yes: 'Yes, I am sure! Make transaction.', + + /* Tokens */ + TOKEN_Addr: 'Address: ', + TOKEN_Symbol: 'Token Symbol: ', + TOKEN_Dec: 'Decimals: ', + + /* Send Transaction */ + TRANS_desc: 'If you want to send Tokens, please use the "Send Token" page instead.', + TRANS_warning: 'If you are using the "Only ETH" or "Only ETC" Functions you are sending via a contract. Some services have issues accepting these transactions. Read more.', + TRANS_standard: 'ETH (Standard Transaction)', + TRANS_eth: 'Only ETH', + TRANS_etc: 'Only ETC', + TRANS_advanced: '+Advanced: Add More Gas or Data ', + TRANS_data: ' Data: ', + TRANS_gas: ' Gas: ', + TRANS_sendInfo: 'A standard transaction using 21000 gas will cost 0.000441 ETH. We use a slightly-above-minimum gas price of 0.000000021 ETH to ensure it gets mined quickly. We do not take a transaction fee.', + + /* Send Transaction Modals */ + TRANSModal_Title: '"Only ETH" and "Only ETC" Transactions', + TRANSModal_Content_0: 'A note about the different transactions and different services:', + TRANSModal_Content_1: '**ETH (Standard Transaction): ** This generates a default transaction directly from one address to another. It has a default gas of 21000. It is likely that any ETH sent via this method will be replayed onto the ETC chain.', + TRANSModal_Content_2: '**Only ETH: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETH** chain.', + TRANSModal_Content_3: '**Only ETC: ** This sends via [Timon Rapp\'s replay protection contract (as recommended by VB)](https://blog.ethereum.org/2016/07/26/onward_from_the_hard_fork/) so that you only send on the **ETC** chain. ', + TRANSModal_Content_4: '**Coinbase & ShapeShift: ** Only send via Standard Transaction. If you send via the "Only" contracts, you will need to reach out to their support staff to manually add your balance or refund you. [You can try Shapeshift\'s "split" tool as well.](https://split.shapeshift.io/)', + TRANSModal_Content_5: '**Kraken & Poloniex:** No known issues. Use whatever.', + TRANSModal_Yes: 'Sweet, I get it now.', + TRANSModal_No: 'Oh gosh, Im more confused. Help me.', + + /* Offline Transaction */ + OFFLINE_Title: 'Generate & Send Offline Transaction', + OFFLINE_Desc: 'Generating offline transactions can be done in three steps. You will complete steps 1 and 3 on an online computer, and step 2 on an offline/airgapped computer. This ensures your private keys do not touch an internet-connected device.', + OFFLLINE_Step1_Title: 'Step 1: Generate Information (Online Computer)', + OFFLINE_Step1_Button: 'Generate Information', + OFFLINE_Step1_Label_1: 'From Address: ', + OFFLINE_Step1_Label_2: 'Note: This is the FROM address, not the TO address. Nonce is generated from the originating account. If using an airgapped computer, it would be the address of the cold-storage account.', + OFFLINE_Step2_Title: 'Step 2: Generate Transaction (Offline Computer)', + OFFLINE_Step2_Label_1: 'To Address: ', + OFFLINE_Step2_Label_2: 'Value / Amount to Send', + OFFLINE_Step2_Label_3: 'Gas Price ', + OFFLINE_Step2_Label_3b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_4: 'Gas Limit ', + OFFLINE_Step2_Label_4b: '21000 is the default gas limit. When you send contracts or add\'l data, this may need to be different. Any unused gas will be returned to you.', + OFFLINE_Step2_Label_5: 'Nonce', + OFFLINE_Step2_Label_5b: 'This was displayed in Step 1 on your online computer.', + OFFLINE_Step2_Label_6: 'Data', + OFFLINE_Step2_Label_6b: 'This is optional. Data is often used when you send transactions to contracts.', + OFFLINE_Step2_Label_7: 'Enter / Select your Private Key / JSON.', + OFFLINE_Step3_Title: 'Step 3: Send / Publish Transaction (Online Computer)', + OFFLINE_Step3_Label_1: 'Paste the signed transaction from Step 2 here and press the "SEND TRANSACTION" button.', + + /* DAO */ + DAO_bal1: 'at block 1,919,999', + DAO_bal2: 'current', + DAO_TitleETH: 'Withdraw DAO For ETH', + DAO_TitleETC: 'Withdraw DAO For ETC', + DAO_ETC_Label_1: 'What address do you want your ETC to be sent to?', + DAO_ETC_Label_2: 'The "White Hat Group" has been working tirelessly to get your ETC back to you. You can say "thank you" by donating a percentage of your withdrawal, if you choose to. ', + DAO_Desc: 'Use this tab to Withdraw your DAO Tokens for ETH **& ETC**. If you wish to send DAO, please use the Send Tokens Tab.', + DAO_Inst: 'Yes. Just push the big red button. It\'s that easy.', + DAO_Warning: 'If you are getting an "Insufficient balance for gas" error, you must have a small amount of ether in your account in order to cover the cost of gas. Add 0.001 ether to this account and try again. ', + DAOModal_Title: 'Just making sure...', + // full sentence is "You are about to withdraw 100 DAO tokens to address 0x12344 for 1 ETH. + DAOModal_1: 'You are about to withdraw', + DAOModal_2: 'DAO Tokens to', + DAOModal_3: 'for', // "in return for" + + /* Digix */ + DGD_Desc: 'Claim your DigixDAO (DGD) tokens & badges. In order to claim, you must have participated in the token sale on March 30th/31st, 2016. If you wish to send DGD, please use the Send Tokens Tab.', + DGD_Label_1: 'Estimated fee consumption:', + DGD_Label_2: 'Provided Maximum Fee:', + DGD_Label_3: 'Gas Price:', + DGD_Generate: 'Generate Claim', + DGD_Content: 'You are about to claim your DGD Tokens.', + + /* Deploy Contracts */ + DEP_generate: 'Generate Bytecode', + DEP_generated: 'Generated Bytecode', + DEP_signtx: 'Sign Transaction', + DEP_interface: 'Generated Interface', + + /* My Wallet */ + MYWAL_Nick: 'Wallet Nickname', + MYWAL_Address: 'Wallet Address', + MYWAL_Bal: 'Balance', + MYWAL_Edit: 'Edit', + MYWAL_View: 'View', + MYWAL_Remove: 'Remove', + MYWAL_RemoveWal: 'Remove Wallet:', + MYWAL_WatchOnly: 'Your Watch-Only Accounts', + MYWAL_Viewing: 'Viewing Wallet: ', + MYWAL_Hide: 'Hide Wallet Info', + MYWAL_Edit_2: 'Edit Wallet: ', + MYWAL_Name: 'Wallet Name', + MYWAL_Content_1: 'Warning! You are about to remove your wallet: ', + MYWAL_Content_2: 'Be sure you have **saved the private key and/or Keystore File and the password** before you remove it.', + MYWAL_Content_3: 'If you want to use this wallet with your MyEtherWallet CX in the future, you will need to manually re-add it using the private key/JSON and password.', + + /* View Wallet Details */ + VIEWWALLET_Subtitle: 'This allows you to download different versions of private keys and re-print your paper wallet. You may want to do this in order to [import your account into Geth/Mist](http://ethereum.stackexchange.com/questions/465/how-to-import-a-plain-private-key-into-geth/). If you want to check your balance, we recommend using a blockchain explorer like [etherscan.io](http://etherscan.io/).', + VIEWWALLET_Subtitle_Short: 'This allows you to download different versions of private keys and re-print your paper wallet. ', + VIEWWALLET_SuccessMsg: 'Success! Here are your wallet details.', + + /* Chrome Extension */ + CX_error_1: 'You don\'t have any wallets saved. Click ["Add Wallet"](/cx-wallet.html#add-wallet) to add one!', + CX_quicksend: 'QuickSend', // if no appropriate translation, just use "Send" + + /* Error Messages */ + ERROR_1: 'Please enter valid amount.', + ERROR_2: 'Your password must be at least 9 characters. Please ensure it is a strong password. ', + ERROR_3: 'Sorry! We don\'t recognize this type of wallet file. ', + ERROR_4: 'This is not a valid wallet file. ', + ERROR_5: 'This unit doesn\'t exists, please use the one of the following units ', + ERROR_6: 'Invalid address. ', + ERROR_7: 'Invalid password. ', + ERROR_8: 'Invalid amount. ', + ERROR_9: 'Invalid gas limit. ', + ERROR_10: 'Invalid data value. ', + ERROR_11: 'Invalid gas amount. ', + ERROR_12: 'Invalid nonce. ', + ERROR_13: 'Invalid signed transaction. ', + ERROR_14: 'A wallet with this nickname already exists. ', + ERROR_15: 'Wallet not found. ', + ERROR_16: 'It doesnt look like a proposal with this ID exists yet or there is an error reading this proposal. ', + ERROR_17: 'A wallet with this address already exists in storage. Please check your wallets page. ', + ERROR_18: 'You need to have at least 0.001 ether in your account to cover the cost of gas. Please add some ether and try again. ', + ERROR_19: 'All gas would be used on this transaction. This means you have already voted on this proposal or the debate period has ended.', + ERROR_20: 'Invalid symbol', + SUCCESS_1: 'Valid address', + SUCCESS_2: 'Wallet successfully decrypted', + SUCCESS_3: 'Transaction submitted. TX ID: ', + SUCCESS_4: 'Your wallet was successfully added: ', + SUCCESS_5: 'You have successfully voted. Thank you for being an active participant in The DAO.', + + /* Geth Error Messages */ + GETH_InvalidSender: 'Invalid sender', + GETH_Nonce: 'Nonce too low', + GETH_Cheap: 'Gas price too low for acceptance', + GETH_Balance: 'Insufficient balance', + GETH_NonExistentAccount: 'Account does not exist or account balance too low', + GETH_InsufficientFunds: 'Insufficient funds for gas * price + value', + GETH_IntrinsicGas: 'Intrinsic gas too low', + GETH_GasLimit: 'Exceeds block gas limit', + GETH_NegativeValue: 'Negative value', + + /* Tranlsation Info */ + translate_version: '0.3', + Translator_Desc: 'Thank you to our translators: ', + TranslatorName_1: '', + TranslatorAddr_1: '', + /* Translator 1: Insert Comments Here */ + TranslatorName_2: ' ', + TranslatorAddr_2: ' ', + /* Translator 2: Insert Comments Here */ + TranslatorName_3: ' ', + TranslatorAddr_3: ' ', + /* Translator 3: Insert Comments Here */ + TranslatorName_4: ' ', + TranslatorAddr_4: ' ', + /* Translator 4: Insert Comments Here */ + TranslatorName_5: ' ', + TranslatorAddr_5: ' ', + /* Translator 5: Insert Comments Here */ + + + + /* Help - Nothing after this point has to be translated. If you feel like being extra helpful, go for it. */ + HELP_Warning: 'If you created a wallet -or- downloaded the repo before **Dec. 31st, 2015**, please check your wallets & download a new version of the repo. Click for details.', + HELP_Desc: 'Do you see something missing? Have another question? [Get in touch with us](mailto:myetherwallet@gmail.com), and we will not only answer your question, we will update this page to be more useful to people in the future!', + HELP_Remind_Title: 'Some reminders', + HELP_Remind_Desc_1: '**Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the underlying Javascript libraries we use are under active development.** While we have thoroughly tested & tens of thousands of wallets have been successfully created by people all over the globe, there is always the remote possibility that something unexpected happens that causes your ETH to be lost. Please do not invest more than you are willing to lose, and please be careful. If something were to happen, we are sorry, but **we are not responsible for the lost Ether**.', + HELP_Remind_Desc_2: 'MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You do not create an account or give us your Ether to hold onto. All data never leaves your computer/your browser. We make it easy for you to create, save, and access your information and interact with the blockchain.', + HELP_Remind_Desc_3: 'If you do not save your private key & password, there is no way to recover access to your wallet or the funds it holds. Back them up in multiple physical locations – not just on your computer!', + + HELP_0_Title: '0) I\'m new. What do I do?', + HELP_0_Desc_1: 'MyEtherWallet gives you the ability to generate new wallets so you can store your Ether yourself, not on an exchange. This process happens entirely on your computer, not our servers. Therefore, when you generate a new wallet, **you are responsible for safely backing it up**.', + HELP_0_Desc_2: 'Create a new wallet.', + HELP_0_Desc_3: 'Back the wallet up.', + HELP_0_Desc_4: 'Verify you have access to this new wallet and have correctly saved all necessary information.', + HELP_0_Desc_5: 'Transfer Ether to this new wallet.', + + HELP_1_Title: '1) How do I create a new wallet? ', + HELP_1_Desc_1: 'Go to the "Generate Wallet" page.', + HELP_1_Desc_2: 'Go to the "Add Wallet" page & select "Generate New Wallet"', + HELP_1_Desc_3: 'Enter a strong password. If you think you may forget it, save it somewhere safe. You will need this password to send transactions.', + HELP_1_Desc_4: 'Click "GENERATE".', + HELP_1_Desc_5: 'Your wallet has now been generated.', + + HELP_2a_Title: '2a) How do I save/backup my wallet?', + HELP_2a_Desc_1: 'You should always back up your wallet externally and in multiple physical locations - like on a USB drive and/or a piece of paper.', + HELP_2a_Desc_2: 'Save the address. You can keep it to yourself or share it with others. That way, others can transfer ether to you.', + HELP_2a_Desc_3: 'Save versions of the private key. Do not share it with anyone else. Your private key is necessary when you want to access your Ether to send it! There are 3 types of private keys:', + HELP_2a_Desc_4: 'Place your address, versions of the private key, and the PDF version of your paper wallet in a folder. Save this on your computer and a USB drive.', + HELP_2a_Desc_5: 'Print the wallet if you have a printer. Otherwise, write down your private key and address on a piece of paper. Store this as a secure location, separate from your computer and the USB drive.', + HELP_2a_Desc_6: 'Keep in mind, you must prevent loss of the keys and password due to loss or failure of you hard drive failure, or USB drive, or piece of paper. You also must keep in mind physical loss / damage of an entire area (think fire or flood).', + + HELP_2b_Title: '2b) How do I safely / offline / cold storage with MyEtherWallet?', + HELP_2b_Desc_1: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_2b_Desc_2: 'Click download zip in the upper right.', + HELP_2b_Desc_3: 'Move zip to an airgapped computer.', + HELP_2b_Desc_4: 'Unzip it and double-click `index.html`.', + HELP_2b_Desc_5: 'Generate a wallet with a strong password.', + HELP_2b_Desc_6: 'Save the address. Save versions of the private key. Save the password if you might not remember it forever.', + HELP_2b_Desc_7: 'Store these papers / USBs in multiple physically separate locations.', + HELP_2b_Desc_8: 'Go to the "View Wallet Info" page and type in your private key / password to ensure they are correct and access your wallet. Check that the address you wrote down is the same.', + + HELP_3_Title: '3) How do I verify I have access to my new wallet?', + HELP_3_Desc_1: '**Before you send any Ether to your new wallet**, you should ensure you have access to it.', + HELP_3_Desc_2: 'Navigate to the "View Wallet Info" page.', + HELP_3_Desc_3: 'Navigate to the MyEtherWallet.com "View Wallet Info" page.', + HELP_3_Desc_4: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_3_Desc_5: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_3_Desc_6: 'Click the "Unlock Wallet" button.', + HELP_3_Desc_7: 'Your wallet information should show up. Find your account address, next to a colorful, circular icon. This icon visually represents your address. Be certain that the address is the address you have saved to your text document and is on your paper wallet.', + HELP_3_Desc_8: 'If you are planning on holding a large amount of ether, we recommend that send a small amount of ether from new wallet before depositting a large amount. Send 0.001 ether to your new wallet, access that wallet, send that 0.001 ether to another address, and ensure everything works smoothly.', + + HELP_4_Title: '4) How do I send Ether from one wallet to another?', + HELP_4_Desc_1: 'If you plan to move a large amount of ether, you should test sending a small amount to your wallet first to ensure everything goes as planned.', + HELP_4_Desc_2: 'Navigate to the "Send Ether" page.', + HELP_4_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_4_Desc_4: 'If the wallet is encrypted, a text box will automatically appear. Enter the password.', + HELP_4_Desc_5: 'Click the "Unlock Wallet" button.', + HELP_4_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4_Desc_8: 'Note: Since the end of June 2016, you will need to make sure to split your ETH/ETC before sending ether like you normally would. See Question #6 below for more information.', + HELP_4_Desc_9: 'Click "Generate Transaction".', + HELP_4_Desc_10: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_4_Desc_11: 'Click the blue "Send Transaction" button below that.', + HELP_4_Desc_12: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_4_Desc_13: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain. ', + + HELP_4CX_Title: '4) How do I send Ether using MyEtherWallet CX?', + HELP_4CX_Desc_1: 'First, you need to add a wallet. Once you have done that, you have 2 options: the "QuickSend" functionality from the Chrome Extension icon or the "Send Ether" page.', + HELP_4CX_Desc_2: 'QuickSend:', + HELP_4CX_Desc_3: 'Click the Chrome Extension Icon.', + HELP_4CX_Desc_4: 'Click the "QuickSend" button.', + HELP_4CX_Desc_5: 'Select the wallet you wish to send from.', + HELP_4CX_Desc_6: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_4CX_Desc_7: 'Enter the amount you would like to send. You can also click the "Send Entire Balance" link if you would like the transfer the entire balance.', + HELP_4CX_Desc_8: 'Click "Send Transaction". ', + HELP_4CX_Desc_9: 'Verify the address and the amount you are sending is correct.', + HELP_4CX_Desc_10: 'Enter the password for that wallet.', + HELP_4CX_Desc_11: 'Click "Send Transaction."', + HELP_4CX_Desc_12: 'Using "Send Ether" Page: ', + + HELP_5_Title: '5) How do I run MyEtherWallet.com offline/locally? ', + HELP_5_Desc_1: 'You can run MyEtherWallet.com on your computer instead of from the GitHub servers. You can generatea a wallet completely offline and send transactions from the "Offline Transaction" page.', + HELP_5_Desc_2: 'Go to our github: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages).', + HELP_5_Desc_3: 'Click download zip in the upper right.', + HELP_5_Desc_4: 'Move zip to an airgapped computer.', + HELP_5_Desc_5: 'Unzip it.', + HELP_5_Desc_6: 'Double-Click `index.html`.', + HELP_5_Desc_7: 'MyEtherWallet.com is now running entirely on your computer.', + HELP_5_Desc_8: 'In case you are not familiar, you need to keep the entire folder in order to run the website, not just `index.html`. Don\'t touch or move anything around in the folder. If you are storing a backup of the MyEtherWallet repo for the future, we recommend just storing the ZIP so you can be sure the folder contents stay intact.', + HELP_5_Desc_9: 'As we are constantly updating MyEtherWallet.com, we recommend you periodically update your saved version of the repo.', + + HELP_5CX_Title: '5) How can I install this extension from the repo instead of the Chrome Store? ', + HELP_5CX_Desc_1: 'Go to our github and find the most recent Chrome Extension relase: [https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases](https://github.com/kvhnuke/etherwallet/tree/mercury/chrome-extension-releases).', + HELP_5CX_Desc_2: 'Scroll to the very bottom and right click on the latest release. Click "save link as".', + HELP_5CX_Desc_3: 'Go to Google Chrome and find you settings (in the menu in the upper right).', + HELP_5CX_Desc_4: 'Click "Extensions" on the left.', + HELP_5CX_Desc_5: 'Check the "Developer Mode" button at the top of that page.', + HELP_5CX_Desc_6: 'Click the "Load unpacked extension..." button.', + HELP_5CX_Desc_7: 'Navigate to the now-unzipped folder that you downloaded earlier. Click "select".', + HELP_5CX_Desc_8: 'The extension should now show up in your extensions and in your Chrome Extension bar.', + + HELP_6_Title: '6) How do I split my ETH / ETC? ', + HELP_6_Desc_1: 'When the hard fork happened, any ETH you had in your wallet now has an equal amount of ETC. If you send ETH using a standard transaction, it will also send ETC. To prevent this, you must "split" your original wallet into two wallets. Moving forward, you need to make sure only ETH goes to your ETH wallet and only ETC goes to your ETC wallet.', + HELP_6_Desc_2: 'You can also send all your ETH & ETC using a standard transaction to Kraken or Poloniex. These exchanges will automatically split your ETH and ETC. You can then move those funds to new wallets, or sell your ETC or ETH.', + HELP_6_Desc_3: '[Even more information about wallets and reply attacks can be found here](https://steemit.com/ethereum/@ktmgen/eli5-understanding-wallets-in-eth-and-etc-a-comment-from-reddit).', + HELP_6_Desc_4: 'Generate a new clean post-fork ETH wallet for yourself (to be the final destination of pure ETH).', + HELP_6_Desc_5: 'Generate a new clean post-fork ETC wallet for yourself (to be the final destination of pure ETC).', + HELP_6_Desc_6: 'Back up these new wallets and verify you can access them. See #2a and #3 above.', + HELP_6_Desc_7: 'Send 0.1234 ETH to your new "ETH" wallet using "Only ETH" option on the "Send Ether" page.', + HELP_6_Desc_8: 'Send 0.5678 ETC to your new "ETC" wallet using "Only ETC" option on the "Send Ether" page.', + HELP_6_Desc_9: 'Check that only the 0.1234 ETH moved on etherscan.io. Check that only the 0.5678 ETC moved on gastracker.io.', + HELP_6_Desc_10: 'Send a 0.0001 ETH transaction from your new ETH wallet. Check etherscan.io. Make sure the 0.0001 ETH moved.', + HELP_6_Desc_11: 'Generate (but do not send) a 0.0002 ETC transaction from your new ETC wallet. Copy the "Signed Transaction" field. ', + HELP_6_Desc_12: 'Go to [classicetherwallet.com](http://classicetherwallet.com/#offline-transaction) and paste that ETC TX into classicetherwallet.com\'s offline tab at the very bottom and send. Check gastracker.io. Make sure the 0.0002 ETC moved.', + HELP_6_Desc_13: 'If everything receives correctly and sends correctly then you are golden.', + HELP_6_Desc_14: 'Send total remaining ETH balance using the "Only ETH" option and repeat for the ETC balance using "Only ETC".', + HELP_6_Desc_15: 'Moving forward, you can use the standard transactions for these new wallets without risk of replay attacks. ', + + HELP_7_Title: '7) How do I send Tokens & add custom tokens?', + HELP_7_Desc_0: '[Ethplorer.io](https://ethplorer.io/) is a great way to explore tokens and find the decimals of a token.', + HELP_7_Desc_1: 'Navigate to the "Send Token" page.', + HELP_7_Desc_2: 'Unlock your wallet.', + HELP_7_Desc_3: 'Enter the address you would like to send to in the "To Address:" field.', + HELP_7_Desc_4: 'Enter the amount you would like to send.', + HELP_7_Desc_5: 'Select which token you would like to send.', + HELP_7_Desc_6: 'If you do not see the token listed:', + HELP_7_Desc_7: 'Click "Custom".', + HELP_7_Desc_8: 'Enter the address, name, and decimals of the token. These are provided by the developers of the token and are also needed when you "Add a Watch Token" to Mist.', + HELP_7_Desc_9: 'Click "Save".', + HELP_7_Desc_10: 'You can now send that token as well as see it\'s balance in the sidebar.', + HELP_7_Desc_11: 'Click "Generate Transaction".', + HELP_7_Desc_12: 'A couple more fields will appear. This is your browser generating the transaction.', + HELP_7_Desc_13: 'Click the blue "Send Transaction" button below that.', + HELP_7_Desc_14: 'A pop-up will appear. Verify that the amount and the address you are sending to are correct. Then click "Yes, I am sure! Make transaction." button.', + HELP_7_Desc_15: 'The transaction will be submitted. The TX ID will display. You can click that TX ID to see it on the blockchain.', + + HELP_8_Title: '8) What happens if your site goes down?', + HELP_8_Desc_1: 'MyEtherWallet is not a web wallet. You don\'t have a login and nothing ever gets saved to our servers. It is simply an interface that allows you interact with the blockchain.', + HELP_8_Desc_2: 'If MyEtherWallet.com goes down, you would have to find another way (like geth or Ethereum Wallet / Mist) to do what we are doing. But you wouldn\'t have to "get" your Ether out of MyEtherWallet because it\'s not in MyEtherWallet. It\'s in whatever wallet your generated via our site.', + HELP_8_Desc_3: 'You can import your unencrypted private key and your Geth/Mist Format (encrypted) files directly into geth / Ethereum Wallet / Mist very easily now. See question #12 below.', + HELP_8_Desc_4: 'In addition, the likelihood of us taking MyEtherWallet down is slim to none. It costs us almost nothing to maintain as we aren\'t storing any information. If we do take the domain down, it still is, and always will be, publicly available at [https://github.com/kvhnuke/etherwallet](https://github.com/kvhnuke/etherwallet/tree/gh-pages). You can download the ZIP there and run it locally. ', + + HELP_8CX_Title: '8) What happens if MyEtherWallet CX disappears?', + HELP_8CX_Desc_1: 'First, all data is saved on your computer, not our servers. I know it can be confusing, but when you look at the Chrome Extension, you are NOT looking at stuff saved on our servers somewhere - it\'s all saved on your own computer.', + HELP_8CX_Desc_2: 'That said, it is **very important** that you back up all your information for any new wallets generated with MyEtherWallet CX. That way if anything happens to MyEtherWallet CX or your computer, you still have all the information necessary to access your Ether. See the #2a for how to back up your wallets.', + HELP_8CX_Desc_3: 'If for some reason MyEtherWallet CX disappears from the Chrome Store, you can find the source on Github and load it manually. See #5 above.', + + HELP_9_Title: '9) Is the "Send Ether" page offline?', + HELP_9_Desc_1: ' No, the send transaction page is not offline. It needs the internet in order to get the current gas price, nonce of your account, and broadcast the transaction (aka "send"). However, it only sends the signed transaction. Your private key safely stays with you. We also now provide an "Offline Transaction" page so that you can ensure your private keys are on an offline/airgapped computer at all times.', + + HELP_10_Title: '10) How do I make an offline transaction?', + HELP_10_Desc_1: 'Navigate to the "Offline Transaction" page via your online computer.', + HELP_10_Desc_2: 'Enter the "From Address". Please note, this is the address you are sending FROM, not TO. This generates the nonce and gas price.', + HELP_10_Desc_3: 'Move to your offline computer. Enter the "TO ADDRESS" and the "AMOUNT" you wish to send.', + HELP_10_Desc_4: 'Enter the "GAS PRICE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_5: 'Enter the "NONCE" as it was displayed to you on your online computer in step #1.', + HELP_10_Desc_6: 'The "GAS LIMIT" has a default value of 21000. This will cover a standard transaction. If you are sending to a contract or are including additional data with your transaction, you will need to increase the gas limit. Any excess gas will be returned to you.', + HELP_10_Desc_7: 'If you wish, enter some data. If you enter data, you will need to include more than the 21000 default gas limit. All data is in HEX format.', + HELP_10_Desc_8: 'Select your wallet file -or- your private key and unlock your wallet.', + HELP_10_Desc_9: 'Press the "GENERATE SIGNED TRANSACTION" button.', + HELP_10_Desc_10: 'The data field below this button will populate with your signed transaction. Copy this and move it back to your online computer. ', + HELP_10_Desc_11: 'On your online computer, paste the signed transaction into the text field in step #3 and click "SEND Ether". This will broadcast your transaction.', + + HELP_11_Title: '11) How do I send to a contract?', + HELP_11_Desc_1: 'Sending to a contract often requires you to include data or additional gas or both', + HELP_11_Desc_2: 'Navigate to the "Send Ether" page. ', + HELP_11_Desc_3: 'Select your wallet file -or- your private key and unlock your wallet. ', + HELP_11_Desc_4: 'Enter a "To Address" and "Amount to Send"', + HELP_11_Desc_5: 'Click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_12_Title: '12) How do I import a wallet created with MyEtherWallet into geth / Ethereum Wallet / Mist?', + HELP_12_Desc_1: 'Using an Geth/Mist JSON file from MyEtherWallet v2+....', + HELP_12_Desc_2: 'Go to the "View Wallet Info" page.', + HELP_12_Desc_3: 'Unlock your wallet using your **encrypted** private key or JSON file. ', + HELP_12_Desc_4: 'Go to the "My Wallets" page.', + HELP_12_Desc_5: 'Select the wallet you want to import into Mist, click the "View" icon, enter your password, and access your wallet. ', + HELP_12_Desc_6: 'Find the "Download JSON file - Geth/Mist Format (encrypted)" section. Press the "Download" button below that. You now have your keystore file.', + HELP_12_Desc_7: 'Open the Ethereum Wallet application. ', + HELP_12_Desc_8: 'In the menu bar, go "Accounts" -> "Backup" -> "Accounts"', + HELP_12_Desc_9: 'This will open your keystore folder. Copy the file you just downloaded (`UTC--2016-04-14......../`) into that keystore folder.', + HELP_12_Desc_10: 'Your account should show up immediately under "Accounts."', + HELP_12_Desc_11: 'Using your unencrypted private key...', + HELP_12_Desc_12: 'If you do not already have your unencrypted private key, navigate to the "View Wallet Details" page.', + HELP_12_Desc_13: 'Select your wallet file -or- enter/paste your private key to unlock your wallet.', + HELP_12_Desc_14: 'Copy Your Private Key (unencrypted).', + HELP_12_Desc_15: 'If you are on a Mac:', + HELP_12_Desc_15b: 'If you are on a PC:', + HELP_12_Desc_16: 'Open Text Edit and paste this private key.', + HELP_12_Desc_17: 'Go to the menu bar and click "Format" -> "Make Plain Text".', + HELP_12_Desc_18: 'Save this file to your `desktop/` as `nothing_special_delete_me.txt`. Make sure it says "UTF-8" and "If no extension is provided use .txt" in the save dialog.', + HELP_12_Desc_19: 'Open terminal and run the following command: `geth account import ~/Desktop/nothing_special_delete_me.txt`', + HELP_12_Desc_20: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it. ', + HELP_12_Desc_21: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_22: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts".', + HELP_12_Desc_23: 'Open Notepad & paste the private key', + HELP_12_Desc_24: 'Save the file as `nothing_special_delete_me.txt` at `C:`', + HELP_12_Desc_25: 'Run the command, `geth account import C:\\nothing_special_delete_me.txt`', + HELP_12_Desc_26: 'This will prompt you to make a new password. This is the password you will use in geth / Ethereum Wallet / Mist whenever you send a transaction, so don\'t forget it.', + HELP_12_Desc_27: 'After successful import, delete `nothing_special_delete_me.txt`', + HELP_12_Desc_28: 'The next time you open the Ethereum Wallet application, your account will be listed under "Accounts". ', + + HELP_13_Title: '13) What does "Gas Limit Too Low" Mean?', + HELP_13_Desc_1: 'Most likely, this means you are attempting to send Ether to a contract. Sending to a contract requires a bit more data and therefore a bit more gas. On the "Send Ether" page, click the "+ Advanced: Add More Gas or Data" button below the amount field. This will display two additional fields that you can use to increase the gas above the default 21000, or add data to your transaction.', + + HELP_14_Title: '14) Some sites randomize (seed) the private key generation via mouse movements. MyEtherWallet.com doesn\'t do this. Is the random number generation for MyEtherWallet safe?', + HELP_14_Desc_1: 'While the mouse moving thing is clever and we understand why people like it, the reality is window.crypto ensures more entropy than your mouse movements. The mouse movements aren\'t unsafe, it\'s just that we (and tons of other crypto experments) believe in window.crypto. In addition, MyEtherWallet.com can be used on touch devices. Here\'s a [conversation between an angry redditor and Vitalik Buterin regarding mouse movements v. window.crypto](https://www.reddit.com/r/ethereum/comments/2bilqg/note_there_is_a_paranoid_highsecurity_way_to/cj5sgrm) and here is the [the window.crypto w3 spec](https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#dfn-GlobalCrypto).', + + HELP_15_Title: '15) Why hasn\'t the account I just created show up in the blockchain explorer? (ie: etherchain, etherscan)', + HELP_15_Desc_1: 'Accounts will only show up in a blockchain explorer once the account has activity on it—for example, once you have transferred some Ether to it.', + + HELP_16_Title: '16) How do I check the balance of my account? ', + HELP_16_Desc_1: 'You can use a blockchain explorer like [etherscan.io](http://etherscan.io/). Paste your address into the search bar and it will pull up your account and transaction history. For example, here\'s what our [donation account](http://etherscan.io/address/0x7cb57b5a97eabe94205c07890be4c1ad31e486a8) looks like on etherscan.io', + + HELP_17_Title: '17) Why isn\'t my balance showing up when I unlock my wallet? ', + HELP_17_Desc_1: ' This is most likely due to the fact that you are behind a firewall. The API that we use to get the balance and convert said balance is often blocked by firewalls for whatever reason. You will still be able to send transactions, you just need to use a different method to see said balance, like etherscan.io', + + HELP_18_Title: '18) Where is my geth wallet file?', + + HELP_19_Title: '19) Where is my Mist wallet file? ', + HELP_19_Desc_1: 'Mist files are typically found in the file locations above, but it\'s much easier to open Mist, select "Accounts" in the top bar, select "Backup", and select "Accounts". This will open the folder where your files are stored.', + + HELP_20_Title: '20) Where is my pre-sale wallet file?', + HELP_20_Desc_1: 'Wherever you saved it. ;) It also was emailed to you, so check there. Look for the file called `"ethereum_wallet_backup.json"` and select that file. This wallet file will be encrypted with a password that you created during the purchase of the pre-sale.', + + HELP_21_Title: '21) Couldn\'t everybody put in random private keys, look for a balance, and send to their own account? ', + HELP_21_Desc_1: 'Short version: yes, but finding an account with a balance would take longer than the universe...so...no.', + HELP_21_Desc_2: 'Long ELI5 Version: So Ethereum is based on [Public Key Cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography), specifically [Elliptic curve cryptography](https://eprint.iacr.org/2013/734.pdf) which is very widely used, not just in Ethereum. Most servers are protected via ECC. Bitcoin uses the same, as well as SSH and TLS and a lot of other stuff. The Ethereum keys specifically are 256-bit keys, which are stronger than 128-bit and 192-bit, which are also widely used and still considered secure by experts.', + HELP_21_Desc_3: 'In this you have a private key and a public key. The private key can derive the public key, but the public key cannot be turned back into the private key. The fact that the internet and the world’s secrets are using this cryptography means that if there is a way to go from public key to private key, your lost ether is the least of everyone’s problems.', + HELP_21_Desc_4: 'Now, that said, YES if someone else has your private key then they can indeed send ether from your account. Just like if someone has your password to your email, they can read and send your email, or the password to your bank account, they could make transfers. You could download the Keystore version of your private key which is the private key that is encrypted with a password. This is like having a password that is also protected by another password.', + HELP_21_Desc_5: 'And YES, in theory you could just type in a string of 64 hexadecimal characters until you got one that matched. In fact, smart people could write a program to very quickly check random private keys. This is known as "brute-forcing" or "mining" private keys. People have thought about this long and hard. With a few very high end servers, they may be able to check 1M+ keys / second. However, even checking that many per second would not yield access to make the cost of running those servers even close to worthwhile - it is more likely you, and your great-grandchildren, will die before getting a match.', + HELP_21_Desc_6: 'If you know anything about Bitcoin, [this will put it in perspective:](http://bitcoin.stackexchange.com/questions/32331/two-people-with-same-public-address-how-will-people-network-know-how-to-deliver) *To illustrate how unlikely this is: suppose every satoshi of every bitcoin ever to be generated was sent to its own unique private keys. The probability that among those keys there could be two that would correspond to the same address is roughly one in 100 quintillion.', + HELP_21_Desc_7: '[If you want something a bit more technical:](http://security.stackexchange.com/questions/25375/why-not-use-larger-cipher-keys/25392#25392) *These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.', + HELP_21_Desc_8: 'Of course, this all assumes that keys are generated in a truly random way & with sufficient entropy. The keys generated here meet that criteria, as do Jaxx and Mist/geth. The Ethereum wallets are all pretty good. Keys generated by brainwallets do not, as a person\'s brain is not capable of creating a truly random seed. There have been a number of other issues regarding lack of entropy or seeds not being generated in a truly random way in Bitcoin-land, but that\'s a separate issue that can wait for another day.', + + HELP_SecCX_Title: 'Security - MyEtherWallet CX ', + HELP_SecCX_Desc_1: 'Where is this extension saving my information?', + HELP_SecCX_Desc_2: 'The information you store in this Chrome Extension is saved via [chrome.storage](http://chrome.storage/). - this is the same place your passwords are saved when you save your password in Chrome.', + HELP_SecCX_Desc_3: 'What information is saved? ', + HELP_SecCX_Desc_4: 'The address, nickname, private key is stored in chrome.storage. The private key is encrypted using the password you set when you added the wallet. The nickname and wallet address is not encrypted.', + HELP_SecCX_Desc_5: 'Why aren\'t the nickname and wallet address encrypted? ', + HELP_SecCX_Desc_6: 'If we were to encrypt these items, you would need to enter a password each time you wanted to view your account balance or view the nicknames. If this concerns you, we recommend you use MyEtherWallet.com instead of this Chrome Extension.', + + HELP_Sec_Title: 'Security', + HELP_Sec_Desc_1: 'If one of your first questions is "Why should I trust these people?", that is a good thing. Hopefully the following will help ease your fears. ', + HELP_Sec_Desc_2: 'We\'ve been up and running since August 2015. If you search for ["myetherwallet" on reddit](https://www.reddit.com/search?q=myetherwallet), you can see numerous people who use us with great success.', + HELP_Sec_Desc_3: 'We aren\'t going to take your money or steal your private key(s). There is no malicious code on this site. In fact the "GENERATE WALLET" pages are completely client-side. That means that all the code is executed on ** your computer** and it is never saved and transmitted anywhere.', + HELP_Sec_Desc_4: 'Check the URL -- This site is being served through GitHub and you can see the source code here: [https://github.com/kvhnuke/etherwallet/tree/gh-pages](https://github.com/kvhnuke/etherwallet/tree/gh-pages) to the domains: [http://kvhnuke.github.io/etherwallet/](http://kvhnuke.github.io/etherwallet) and [https://www.myetherwallet.com](https://www.myetherwallet.com). You can verify it\'s hosted at GitHub by using [viewdns.info/dnsrecord/?domain=myetherwallet.com](http://viewdns.info/dnsrecord/?domain=myetherwallet.com") - last two A record IPs are owned by GitHub for their custom domain hosting.', + HELP_Sec_Desc_5: 'For generating wallets, you can download the [source code](https://github.com/kvhnuke/etherwallet/tree/gh-pages). See #5 above.', + HELP_Sec_Desc_6: 'Do a test run and check and see what network activity is happening. The easiest way for you to do this is to right click on the page and click "inspect element". Go to the "Network" tab. Generate a test wallet. You will see there is no network activity. You may see something happening that looks like data:image/gif and data:image/png. Those are the QR codes being generated...on your computer...by your computer. No bytes were transferred.', + HELP_Sec_Desc_7: 'Now, to be safe, move over to the "Resources" page. Here you can see all the different elements that make up a website. If you click through Local Storage, Cookies, and Cache, you will see nothing is being stored. Nothing is being saved. Refresh the page and you are back to square one.', + HELP_Sec_Desc_8: 'If you do not feel comfortable using this tool, then by all means, do not use it. We created this tool as a helpful way for people to generate wallets and make transactions without needing to dive into command line or run a full node. Again, feel free to reach out if you have concerns and we will respond as quickly as possible. Thanks! ', + + HELP_FAQ_Title: 'More Helpful Answers to Frequent Questions', + HELP_Contact_Title: 'Ways to Get in Touch' +}; + +module.exports = zh; + +},{}],65:[function(require,module,exports){ (function (Buffer){ -'use strict'; -var uiFuncs = function() {} -uiFuncs.getTxData = function($scope) { - return { - to: $scope.tx.to, - value: $scope.tx.value, - unit: $scope.tx.unit, - gasLimit: $scope.tx.gasLimit, - data: $scope.tx.data, - from: $scope.wallet.getAddressString(), - privKey: $scope.wallet.getPrivateKeyString() - }; -} -uiFuncs.isTxDataValid = function(txData) { - if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; - else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; - else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; - else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; - if (txData.to == "0xCONTRACT") txData.to = ''; -} -uiFuncs.generateClassicTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getClassicTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendClassicTx = function(signedTx, callback) { - ajaxReq.sendClassicRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.generateTx = function(txData, callback) { - try { - uiFuncs.isTxDataValid(txData); - ajaxReq.getTransactionData(txData.from, function(data) { - if (data.error) throw data.msg; - data = data.data; - var rawTx = { - nonce: ethFuncs.sanitizeHex(data.nonce), - gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), - gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), - to: ethFuncs.sanitizeHex(txData.to), - value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), - data: ethFuncs.sanitizeHex(txData.data) - } - var eTx = new ethUtil.Tx(rawTx); - eTx.sign(new Buffer(txData.privKey, 'hex')); - rawTx.rawTx = JSON.stringify(rawTx); - rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); - rawTx.isError = false; - if (callback !== undefined) callback(rawTx); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} -uiFuncs.sendTx = function(signedTx, callback) { - ajaxReq.sendRawTx(signedTx, function(data) { - var resp = {}; - if (data.error) { - resp = { - isError: true, - error: globalFuncs.getGethMsg(data.msg) - }; - } else { - resp = { - isError: false, - data: data.data - }; - } - if (callback !== undefined) callback(resp); - }); -} -uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { - try { - ajaxReq.getTransactionData(fromAdd, function(data) { - if (data.error) throw data.msg; - data = data.data; - var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); - var maxVal = new BigNumber(data.balance).minus(gasPrice); - maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); - if (callback !== undefined) callback({ - isError: false, - unit: "ether", - value: maxVal - }); - }); - } catch (e) { - if (callback !== undefined) callback({ - isError: true, - error: e - }); - } -} +'use strict'; +var uiFuncs = function() {} +uiFuncs.getTxData = function($scope) { + return { + to: $scope.tx.to, + value: $scope.tx.value, + unit: $scope.tx.unit, + gasLimit: $scope.tx.gasLimit, + data: $scope.tx.data, + from: $scope.wallet.getAddressString(), + privKey: $scope.wallet.getPrivateKeyString() + }; +} +uiFuncs.isTxDataValid = function(txData) { + if (txData.to != "0xCONTRACT" && !ethFuncs.validateEtherAddress(txData.to)) throw globalFuncs.errorMsgs[5]; + else if (!globalFuncs.isNumeric(txData.value) || parseFloat(txData.value) < 0) throw globalFuncs.errorMsgs[7]; + else if (!globalFuncs.isNumeric(txData.gasLimit) || parseFloat(txData.gasLimit) <= 0) throw globalFuncs.errorMsgs[8]; + else if (!ethFuncs.validateHexString(txData.data)) throw globalFuncs.errorMsgs[9]; + if (txData.to == "0xCONTRACT") txData.to = ''; +} +uiFuncs.generateClassicTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getClassicTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendClassicTx = function(signedTx, callback) { + ajaxReq.sendClassicRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.generateTx = function(txData, callback) { + try { + uiFuncs.isTxDataValid(txData); + ajaxReq.getTransactionData(txData.from, function(data) { + if (data.error) throw data.msg; + data = data.data; + var rawTx = { + nonce: ethFuncs.sanitizeHex(data.nonce), + gasPrice: ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice)), + gasLimit: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(txData.gasLimit)), + to: ethFuncs.sanitizeHex(txData.to), + value: ethFuncs.sanitizeHex(ethFuncs.decimalToHex(etherUnits.toWei(txData.value, txData.unit))), + data: ethFuncs.sanitizeHex(txData.data) + } + var eTx = new ethUtil.Tx(rawTx); + eTx.sign(new Buffer(txData.privKey, 'hex')); + rawTx.rawTx = JSON.stringify(rawTx); + rawTx.signedTx = '0x' + eTx.serialize().toString('hex'); + rawTx.isError = false; + if (callback !== undefined) callback(rawTx); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} +uiFuncs.sendTx = function(signedTx, callback) { + ajaxReq.sendRawTx(signedTx, function(data) { + var resp = {}; + if (data.error) { + resp = { + isError: true, + error: globalFuncs.getGethMsg(data.msg) + }; + } else { + resp = { + isError: false, + data: data.data + }; + } + if (callback !== undefined) callback(resp); + }); +} +uiFuncs.transferAllBalance = function(fromAdd, gasLimit, callback) { + try { + ajaxReq.getTransactionData(fromAdd, function(data) { + if (data.error) throw data.msg; + data = data.data; + var gasPrice = new BigNumber(ethFuncs.sanitizeHex(ethFuncs.addTinyMoreToGas(data.gasprice))).times(gasLimit); + var maxVal = new BigNumber(data.balance).minus(gasPrice); + maxVal = etherUnits.toEther(maxVal, 'wei') < 0 ? 0 : etherUnits.toEther(maxVal, 'wei'); + if (callback !== undefined) callback({ + isError: false, + unit: "ether", + value: maxVal + }); + }); + } catch (e) { + if (callback !== undefined) callback({ + isError: true, + error: e + }); + } +} module.exports = uiFuncs; }).call(this,require("buffer").Buffer) -},{"buffer":121}],65:[function(require,module,exports){ -'use strict'; -var validator = function() {} -validator.isValidAddress = function(address){ - return ethFuncs.validateEtherAddress(address); -} -validator.isPositiveNumber = function(value){ - return globalFuncs.isNumeric(value) && parseFloat(value) > 0; -} -validator.isValidHex = function(hex){ - return ethFuncs.validateHexString(hex); -} -validator.isValidPrivKey = function(privkeyLen){ - return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; -} -validator.isPasswordLenValid = function(pass, len){ - if(pass === 'undefined' || pass == null ) return false; - return pass.length > len; -} +},{"buffer":122}],66:[function(require,module,exports){ +'use strict'; +var validator = function() {} +validator.isValidAddress = function(address){ + return ethFuncs.validateEtherAddress(address); +} +validator.isPositiveNumber = function(value){ + return globalFuncs.isNumeric(value) && parseFloat(value) >= 0; +} +validator.isValidHex = function(hex){ + return ethFuncs.validateHexString(hex); +} +validator.isValidPrivKey = function(privkeyLen){ + return privkeyLen == 64 || privkeyLen == 128 || privkeyLen == 132; +} +validator.isPasswordLenValid = function(pass, len){ + if(pass === 'undefined' || pass == null ) return false; + return pass.length > len; +} module.exports = validator; -},{}],66:[function(require,module,exports){ + +},{}],67:[function(require,module,exports){ /** * @license AngularJS v1.5.8 * (c) 2010-2016 Google, Inc. http://angularjs.org @@ -19053,11 +19580,11 @@ angular.module('ngSanitize').filter('linky', ['$sanitize', function($sanitize) { })(window, window.angular); -},{}],67:[function(require,module,exports){ +},{}],68:[function(require,module,exports){ require('./angular-sanitize'); module.exports = 'ngSanitize'; -},{"./angular-sanitize":66}],68:[function(require,module,exports){ +},{"./angular-sanitize":67}],69:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -19109,7 +19636,7 @@ return 'pascalprecht.translate'; })); -},{}],69:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ /*! * angular-translate - v2.11.1 - 2016-07-17 * @@ -22583,9 +23110,9 @@ return 'pascalprecht.translate'; })); -},{}],70:[function(require,module,exports){ +},{}],71:[function(require,module,exports){ /** - * @license AngularJS v1.5.8 + * @license AngularJS v1.5.6 * (c) 2010-2016 Google, Inc. http://angularjs.org * License: MIT */ @@ -22643,7 +23170,7 @@ function minErr(module, ErrorConstructor) { return match; }); - message += '\nhttp://errors.angularjs.org/1.5.8/' + + message += '\nhttp://errors.angularjs.org/1.5.6/' + (module ? module + '/' : '') + code; for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') { @@ -22712,6 +23239,7 @@ function minErr(module, ErrorConstructor) { includes: true, arrayRemove: true, copy: true, + shallowCopy: true, equals: true, csp: true, jq: true, @@ -23407,13 +23935,7 @@ function arrayRemove(array, value) { * * If a destination is provided, all of its elements (for arrays) or properties (for objects) * are deleted and then all elements/properties from the source are copied to it. * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. - * * If `source` is identical to `destination` an exception will be thrown. - * - *
- *
- * Only enumerable properties are taken into account. Non-enumerable properties (both on `source` - * and on `destination`) will be ignored. - *
+ * * If `source` is identical to 'destination' an exception will be thrown. * * @param {*} source The source that will be used to make a copy. * Can be any type, including primitives, `null`, and `undefined`. @@ -23422,42 +23944,41 @@ function arrayRemove(array, value) { * @returns {*} The copy or updated `destination`, if `destination` was specified. * * @example - - -
-
-
-
- Gender: -
- - -
-
form = {{user | json}}
-
master = {{master | json}}
-
-
- - // Module: copyExample - angular. - module('copyExample', []). - controller('ExampleController', ['$scope', function($scope) { - $scope.master = {}; - - $scope.reset = function() { - // Example with 1 argument - $scope.user = angular.copy($scope.master); - }; + + +
+
+ Name:
+ E-mail:
+ Gender: male + female
+ + +
+
form = {{user | json}}
+
master = {{master | json}}
+
+ + +
+
*/ function copy(source, destination) { var stackSource = []; @@ -23564,7 +24085,7 @@ function copy(source, destination) { case '[object Uint8ClampedArray]': case '[object Uint16Array]': case '[object Uint32Array]': - return new source.constructor(copyElement(source.buffer), source.byteOffset, source.length); + return new source.constructor(copyElement(source.buffer)); case '[object ArrayBuffer]': //Support: IE10 @@ -23596,6 +24117,31 @@ function copy(source, destination) { } } +/** + * Creates a shallow copy of an object, an array or a primitive. + * + * Assumes that there are no proto properties for objects. + */ +function shallowCopy(src, dst) { + if (isArray(src)) { + dst = dst || []; + + for (var i = 0, ii = src.length; i < ii; i++) { + dst[i] = src[i]; + } + } else if (isObject(src)) { + dst = dst || {}; + + for (var key in src) { + if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { + dst[key] = src[key]; + } + } + } + + return dst || src; +} + /** * @ngdoc function @@ -24936,34 +25482,7 @@ function setupModuleLoader(window) { } -/* global shallowCopy: true */ - -/** - * Creates a shallow copy of an object, an array or a primitive. - * - * Assumes that there are no proto properties for objects. - */ -function shallowCopy(src, dst) { - if (isArray(src)) { - dst = dst || []; - - for (var i = 0, ii = src.length; i < ii; i++) { - dst[i] = src[i]; - } - } else if (isObject(src)) { - dst = dst || {}; - - for (var key in src) { - if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { - dst[key] = src[key]; - } - } - } - - return dst || src; -} - -/* global toDebugString: true */ +/* global: toDebugString: true */ function serializeObject(obj) { var seen = []; @@ -25067,7 +25586,6 @@ function toDebugString(obj) { $HttpParamSerializerJQLikeProvider, $HttpBackendProvider, $xhrFactoryProvider, - $jsonpCallbacksProvider, $LocationProvider, $LogProvider, $ParseProvider, @@ -25105,11 +25623,11 @@ function toDebugString(obj) { * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". */ var version = { - full: '1.5.8', // all of these placeholder strings will be replaced by grunt's + full: '1.5.6', // all of these placeholder strings will be replaced by grunt's major: 1, // package task minor: 5, - dot: 8, - codeName: 'arbitrary-fallbacks' + dot: 6, + codeName: 'arrow-stringification' }; @@ -25140,7 +25658,7 @@ function publishExternalAPI(angular) { 'isDate': isDate, 'lowercase': lowercase, 'uppercase': uppercase, - 'callbacks': {$$counter: 0}, + 'callbacks': {counter: 0}, 'getTestability': getTestability, '$$minErr': minErr, '$$csp': csp, @@ -25229,7 +25747,6 @@ function publishExternalAPI(angular) { $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider, $httpBackend: $HttpBackendProvider, $xhrFactory: $xhrFactoryProvider, - $jsonpCallbacks: $jsonpCallbacksProvider, $location: $LocationProvider, $log: $LogProvider, $parse: $ParseProvider, @@ -25306,7 +25823,7 @@ function publishExternalAPI(angular) { * ## Angular's jqLite * jqLite provides only the following jQuery methods: * - * - [`addClass()`](http://api.jquery.com/addClass/) - Does not support a function as first argument + * - [`addClass()`](http://api.jquery.com/addClass/) * - [`after()`](http://api.jquery.com/after/) * - [`append()`](http://api.jquery.com/append/) * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters @@ -25333,7 +25850,7 @@ function publishExternalAPI(angular) { * - [`ready()`](http://api.jquery.com/ready/) * - [`remove()`](http://api.jquery.com/remove/) * - [`removeAttr()`](http://api.jquery.com/removeAttr/) - * - [`removeClass()`](http://api.jquery.com/removeClass/) - Does not support a function as first argument + * - [`removeClass()`](http://api.jquery.com/removeClass/) * - [`removeData()`](http://api.jquery.com/removeData/) * - [`replaceWith()`](http://api.jquery.com/replaceWith/) * - [`text()`](http://api.jquery.com/text/) @@ -25468,7 +25985,7 @@ function jqLiteBuildFragment(html, context) { nodes.push(context.createTextNode(html)); } else { // Convert html into DOM nodes - tmp = fragment.appendChild(context.createElement("div")); + tmp = tmp || fragment.appendChild(context.createElement("div")); tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase(); wrap = wrapMap[tag] || wrapMap._default; tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1>") + wrap[2]; @@ -27281,10 +27798,10 @@ function createInjector(modulesToLoad, strictDi) { if (msie <= 11) { return false; } - // Support: Edge 12-13 only - // See: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/6156135/ + // Workaround for MS Edge. + // Check https://connect.microsoft.com/IE/Feedback/Details/2211653 return typeof func === 'function' - && /^(?:class\b|constructor\()/.test(stringifyFn(func)); + && /^(?:class\s|constructor\()/.test(stringifyFn(func)); } function invoke(fn, self, locals, serviceName) { @@ -28025,13 +28542,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28057,13 +28568,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} parent the parent element which will append the element as * a child (so long as the after element is not present) * @param {DOMElement=} after the sibling element after which the element will be appended - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28084,13 +28589,7 @@ var $AnimateProvider = ['$provide', function($provide) { * digest once the animation has completed. * * @param {DOMElement} element the element which will be removed from the DOM - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28114,13 +28613,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be added (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28144,13 +28637,7 @@ var $AnimateProvider = ['$provide', function($provide) { * * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} className the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28175,13 +28662,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {DOMElement} element the element which the CSS classes will be applied to * @param {string} add the CSS class(es) that will be added (multiple classes are separated via spaces) * @param {string} remove the CSS class(es) that will be removed (multiple classes are separated via spaces) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -28222,13 +28703,7 @@ var $AnimateProvider = ['$provide', function($provide) { * @param {string=} className an optional CSS class that will be applied to the element for the duration of the animation. If * this value is left as empty then a CSS class of `ng-inline-animate` will be applied to the element. * (Note that if no animation is detected then this value will not be applied to the element.) - * @param {object=} options an optional collection of options/styles that will be applied to the element. - * The object can have the following properties: - * - * - **addClass** - `{string}` - space-separated CSS classes to add to element - * - **from** - `{Object}` - CSS properties & values at the beginning of animation. Must have matching `to` - * - **removeClass** - `{string}` - space-separated CSS classes to remove from element - * - **to** - `{Object}` - CSS properties & values at end of animation. Must have matching `from` + * @param {object=} options an optional collection of options/styles that will be applied to the element * * @return {Promise} the animation callback promise */ @@ -29316,9 +29791,8 @@ function $TemplateCacheProvider() { * There are many different options for a directive. * * The difference resides in the return value of the factory function. - * You can either return a {@link $compile#directive-definition-object Directive Definition Object (see below)} - * that defines the directive properties, or just the `postLink` function (all other properties will have - * the default values). + * You can either return a "Directive Definition Object" (see below) that defines the directive properties, + * or just the `postLink` function (all other properties will have the default values). * *
* **Best Practice:** It's recommended to use the "directive definition object" form. @@ -29382,125 +29856,6 @@ function $TemplateCacheProvider() { * }); * ``` * - * ### Life-cycle hooks - * Directive controllers can provide the following methods that are called by Angular at points in the life-cycle of the - * directive: - * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and - * had their bindings initialized (and before the pre & post linking functions for the directives on - * this element). This is a good place to put initialization code for your controller. - * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The - * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an - * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a - * component such as cloning the bound value to prevent accidental mutation of the outer value. - * * `$doCheck()` - Called on each turn of the digest cycle. Provides an opportunity to detect and act on - * changes. Any actions that you wish to take in response to the changes that you detect must be - * invoked from this hook; implementing this has no effect on when `$onChanges` is called. For example, this hook - * could be useful if you wish to perform a deep equality check, or to check a Date object, changes to which would not - * be detected by Angular's change detector and thus not trigger `$onChanges`. This hook is invoked with no arguments; - * if detecting changes, you must store the previous value(s) for comparison to the current values. - * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing - * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in - * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent - * components will have their `$onDestroy()` hook called before child components. - * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link - * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. - * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since - * they are waiting for their template to load asynchronously and their own compilation and linking has been - * suspended until that occurs. - * - * #### Comparison with Angular 2 life-cycle hooks - * Angular 2 also uses life-cycle hooks for its components. While the Angular 1 life-cycle hooks are similar there are - * some differences that you should be aware of, especially when it comes to moving your code from Angular 1 to Angular 2: - * - * * Angular 1 hooks are prefixed with `$`, such as `$onInit`. Angular 2 hooks are prefixed with `ng`, such as `ngOnInit`. - * * Angular 1 hooks can be defined on the controller prototype or added to the controller inside its constructor. - * In Angular 2 you can only define hooks on the prototype of the Component class. - * * Due to the differences in change-detection, you may get many more calls to `$doCheck` in Angular 1 than you would to - * `ngDoCheck` in Angular 2 - * * Changes to the model inside `$doCheck` will trigger new turns of the digest loop, which will cause the changes to be - * propagated throughout the application. - * Angular 2 does not allow the `ngDoCheck` hook to trigger a change outside of the component. It will either throw an - * error or do nothing depending upon the state of `enableProdMode()`. - * - * #### Life-cycle hook examples - * - * This example shows how you can check for mutations to a Date object even though the identity of the object - * has not changed. - * - * - * - * angular.module('do-check-module', []) - * .component('app', { - * template: - * 'Month: ' + - * 'Date: {{ $ctrl.date }}' + - * '', - * controller: function() { - * this.date = new Date(); - * this.month = this.date.getMonth(); - * this.updateDate = function() { - * this.date.setMonth(this.month); - * }; - * } - * }) - * .component('test', { - * bindings: { date: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * var previousValue; - * this.log = []; - * this.$doCheck = function() { - * var currentValue = this.date && this.date.valueOf(); - * if (previousValue !== currentValue) { - * this.log.push('doCheck: date mutated: ' + this.date); - * previousValue = currentValue; - * } - * }; - * } - * }); - *
- * - * - * - *
- * - * This example show how you might use `$doCheck` to trigger changes in your component's inputs even if the - * actual identity of the component doesn't change. (Be aware that cloning and deep equality checks on large - * arrays or objects can have a negative impact on your application performance) - * - * - * - *
- * - * - *
{{ items }}
- * - *
- *
- * - * angular.module('do-check-module', []) - * .component('test', { - * bindings: { items: '<' }, - * template: - * '
{{ $ctrl.log | json }}
', - * controller: function() { - * this.log = []; - * - * this.$doCheck = function() { - * if (this.items_ref !== this.items) { - * this.log.push('doCheck: items changed'); - * this.items_ref = this.items; - * } - * if (!angular.equals(this.items_clone, this.items)) { - * this.log.push('doCheck: items mutated'); - * this.items_clone = angular.copy(this.items); - * } - * }; - * } - * }); - *
- *
* * * ### Directive Definition Object @@ -29676,6 +30031,25 @@ function $TemplateCacheProvider() { * The `$transclude` function also has a method on it, `$transclude.isSlotFilled(slotName)`, which returns * `true` if the specified slot contains content (i.e. one or more DOM nodes). * + * The controller can provide the following methods that act as life-cycle hooks: + * * `$onInit()` - Called on each controller after all the controllers on an element have been constructed and + * had their bindings initialized (and before the pre & post linking functions for the directives on + * this element). This is a good place to put initialization code for your controller. + * * `$onChanges(changesObj)` - Called whenever one-way (`<`) or interpolation (`@`) bindings are updated. The + * `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an + * object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a + * component such as cloning the bound value to prevent accidental mutation of the outer value. + * * `$onDestroy()` - Called on a controller when its containing scope is destroyed. Use this hook for releasing + * external resources, watches and event handlers. Note that components have their `$onDestroy()` hooks called in + * the same order as the `$scope.$broadcast` events are triggered, which is top down. This means that parent + * components will have their `$onDestroy()` hook called before child components. + * * `$postLink()` - Called after this controller's element and its children have been linked. Similar to the post-link + * function this hook can be used to set up DOM event handlers and do direct DOM manipulation. + * Note that child elements that contain `templateUrl` directives will not have been compiled and linked since + * they are waiting for their template to load asynchronously and their own compilation and linking has been + * suspended until that occurs. + * + * * #### `require` * Require another directive and inject its controller as the fourth argument to the linking function. The * `require` property can be a string, an array or an object: @@ -29873,8 +30247,8 @@ function $TemplateCacheProvider() { * any other controller. * * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. - * This is the same as the `$transclude` parameter of directive controllers, - * see {@link ng.$compile#-controller- the controller section for details}. + * This is the same as the `$transclude` + * parameter of directive controllers, see there for details. * `function([scope], cloneLinkingFn, futureParentElement)`. * * #### Pre-linking function @@ -30676,19 +31050,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } // We must run this hook in an apply since the $$postDigest runs outside apply $rootScope.$apply(function() { - var errors = []; for (var i = 0, ii = onChangesQueue.length; i < ii; ++i) { - try { - onChangesQueue[i](); - } catch (e) { - errors.push(e); - } + onChangesQueue[i](); } // Reset the queue to trigger a new schedule next time there is a change onChangesQueue = undefined; - if (errors.length) { - throw errors; - } }); } finally { onChangesTtl++; @@ -31329,7 +31695,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { addTextInterpolateDirective(directives, node.nodeValue); break; case NODE_TYPE_COMMENT: /* Comment */ - collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective); + try { + match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); + if (match) { + nName = directiveNormalize(match[1]); + if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { + attrs[nName] = trim(match[2]); + } + } + } catch (e) { + // turns out that under some circumstances IE9 throws errors when one attempts to read + // comment's node value. + // Just ignore it and continue. (Can't seem to reproduce in test case.) + } break; } @@ -31337,24 +31715,6 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return directives; } - function collectCommentDirectives(node, directives, attrs, maxPriority, ignoreDirective) { - // function created because of performance, try/catch disables - // the optimization of the whole function #14848 - try { - var match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); - if (match) { - var nName = directiveNormalize(match[1]); - if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[2]); - } - } - } catch (e) { - // turns out that under some circumstances IE9 throws errors when one attempts to read - // comment's node value. - // Just ignore it and continue. (Can't seem to reproduce in test case.) - } - } - /** * Given a node with an directive-start it collects all of the siblings until it finds * directive-end. @@ -31870,22 +32230,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(elementControllers, function(controller) { var controllerInstance = controller.instance; if (isFunction(controllerInstance.$onChanges)) { - try { - controllerInstance.$onChanges(controller.bindingInfo.initialChanges); - } catch (e) { - $exceptionHandler(e); - } + controllerInstance.$onChanges(controller.bindingInfo.initialChanges); } if (isFunction(controllerInstance.$onInit)) { - try { - controllerInstance.$onInit(); - } catch (e) { - $exceptionHandler(e); - } - } - if (isFunction(controllerInstance.$doCheck)) { - controllerScope.$watch(function() { controllerInstance.$doCheck(); }); - controllerInstance.$doCheck(); + controllerInstance.$onInit(); } if (isFunction(controllerInstance.$onDestroy)) { controllerScope.$on('$destroy', function callOnDestroyHook() { @@ -32149,16 +32497,18 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // copy the new attributes on the old attrs object forEach(src, function(value, key) { - // Check if we already set this attribute in the loop above. - // `dst` will never contain hasOwnProperty as DOM parser won't let it. - // You will get an "InvalidCharacterError: DOM Exception 5" error if you - // have an attribute like "has-own-property" or "data-has-own-property", etc. - if (!dst.hasOwnProperty(key) && key.charAt(0) !== '$') { + if (key == 'class') { + safeAddClass($element, value); + dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; + } else if (key == 'style') { + $element.attr('style', $element.attr('style') + ';' + value); + dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; + // `dst` will never contain hasOwnProperty as DOM parser won't let it. + // You will get an "InvalidCharacterError: DOM Exception 5" error if you + // have an attribute like "has-own-property" or "data-has-own-property", etc. + } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { dst[key] = value; - - if (key !== 'class' && key !== 'style') { - dstAttr[key] = srcAttr[key]; - } + dstAttr[key] = srcAttr[key]; } }); } @@ -32533,7 +32883,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { forEach(bindings, function initializeBinding(definition, scopeName) { var attrName = definition.attrName, optional = definition.optional, - mode = definition.mode, // @, =, <, or & + mode = definition.mode, // @, =, or & lastValue, parentGet, parentSet, compare, removeWatch; @@ -33019,21 +33369,18 @@ function $DocumentProvider() { * * ## Example: * - * The example below will overwrite the default `$exceptionHandler` in order to (a) log uncaught - * errors to the backend for later inspection by the developers and (b) to use `$log.warn()` instead - * of `$log.error()`. - * * ```js - * angular. - * module('exceptionOverwrite', []). - * factory('$exceptionHandler', ['$log', 'logErrorsToBackend', function($log, logErrorsToBackend) { - * return function myExceptionHandler(exception, cause) { - * logErrorsToBackend(exception, cause); - * $log.warn(exception, cause); - * }; - * }]); + * angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { + * return function(exception, cause) { + * exception.message += ' (caused by "' + cause + '")'; + * throw exception; + * }; + * }); * ``` * + * This example will override the normal action of `$exceptionHandler`, to make angular + * exceptions fail hard when they happen, instead of just logging to the console. + * *
* Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind` * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler} @@ -33043,7 +33390,7 @@ function $DocumentProvider() { * `try { ... } catch(e) { $exceptionHandler(e); }` * * @param {Error} exception Exception associated with the error. - * @param {string=} cause Optional information about the context in which + * @param {string=} cause optional information about the context in which * the error was thrown. * */ @@ -33113,7 +33460,7 @@ function $HttpParamSerializerProvider() { * * `{'foo': 'bar'}` results in `foo=bar` * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object) * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element) - * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object) + * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object) * * Note that serializer will sort the request parameters alphabetically. * */ @@ -33664,7 +34011,7 @@ function $HttpProvider() { * * ### Overriding the Default Transformations Per Request * - * If you wish to override the request/response transformations only for a single request then provide + * If you wish override the request/response transformations only for a single request then provide * `transformRequest` and/or `transformResponse` properties on the configuration object passed * into `$http`. * @@ -33707,7 +34054,7 @@ function $HttpProvider() { * * cache a specific response - set config.cache value to TRUE or to a cache object * * If caching is enabled, but neither the default cache nor config.cache are set to a cache object, - * then the default `$cacheFactory("$http")` object is used. + * then the default `$cacheFactory($http)` object is used. * * The default cache value can be set by updating the * {@link ng.$http#defaults `$http.defaults.cache`} property or the @@ -34035,25 +34382,48 @@ function $HttpProvider() { config.headers = mergeHeaders(requestConfig); config.method = uppercase(config.method); config.paramSerializer = isString(config.paramSerializer) ? - $injector.get(config.paramSerializer) : config.paramSerializer; + $injector.get(config.paramSerializer) : config.paramSerializer; - var requestInterceptors = []; - var responseInterceptors = []; + var serverRequest = function(config) { + var headers = config.headers; + var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); + + // strip content-type if data is undefined + if (isUndefined(reqData)) { + forEach(headers, function(value, header) { + if (lowercase(header) === 'content-type') { + delete headers[header]; + } + }); + } + + if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { + config.withCredentials = defaults.withCredentials; + } + + // send request + return sendReq(config, reqData).then(transformResponse, transformResponse); + }; + + var chain = [serverRequest, undefined]; var promise = $q.when(config); // apply interceptors forEach(reversedInterceptors, function(interceptor) { if (interceptor.request || interceptor.requestError) { - requestInterceptors.unshift(interceptor.request, interceptor.requestError); + chain.unshift(interceptor.request, interceptor.requestError); } if (interceptor.response || interceptor.responseError) { - responseInterceptors.push(interceptor.response, interceptor.responseError); + chain.push(interceptor.response, interceptor.responseError); } }); - promise = chainInterceptors(promise, requestInterceptors); - promise = promise.then(serverRequest); - promise = chainInterceptors(promise, responseInterceptors); + while (chain.length) { + var thenFn = chain.shift(); + var rejectFn = chain.shift(); + + promise = promise.then(thenFn, rejectFn); + } if (useLegacyPromise) { promise.success = function(fn) { @@ -34080,18 +34450,14 @@ function $HttpProvider() { return promise; - - function chainInterceptors(promise, interceptors) { - for (var i = 0, ii = interceptors.length; i < ii;) { - var thenFn = interceptors[i++]; - var rejectFn = interceptors[i++]; - - promise = promise.then(thenFn, rejectFn); - } - - interceptors.length = 0; - - return promise; + function transformResponse(response) { + // make a copy since the response must be cacheable + var resp = extend({}, response); + resp.data = transformData(response.data, response.headers, response.status, + config.transformResponse); + return (isSuccess(response.status)) + ? resp + : $q.reject(resp); } function executeHeaderFns(headers, config) { @@ -34135,37 +34501,6 @@ function $HttpProvider() { // execute if header value is a function for merged headers return executeHeaderFns(reqHeaders, shallowCopy(config)); } - - function serverRequest(config) { - var headers = config.headers; - var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); - - // strip content-type if data is undefined - if (isUndefined(reqData)) { - forEach(headers, function(value, header) { - if (lowercase(header) === 'content-type') { - delete headers[header]; - } - }); - } - - if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { - config.withCredentials = defaults.withCredentials; - } - - // send request - return sendReq(config, reqData).then(transformResponse, transformResponse); - } - - function transformResponse(response) { - // make a copy since the response must be cacheable - var resp = extend({}, response); - resp.data = transformData(response.data, response.headers, response.status, - config.transformResponse); - return (isSuccess(response.status)) - ? resp - : $q.reject(resp); - } } $http.pendingRequests = []; @@ -34212,8 +34547,6 @@ function $HttpProvider() { * * @description * Shortcut method to perform `JSONP` request. - * If you would like to customise where and how the callbacks are stored then try overriding - * or decorating the {@link $jsonpCallbacks} service. * * @param {string} url Relative or absolute URL specifying the destination of the request. * The name of the callback should be the string `JSON_CALLBACK`. @@ -34487,7 +34820,7 @@ function $xhrFactoryProvider() { /** * @ngdoc service * @name $httpBackend - * @requires $jsonpCallbacks + * @requires $window * @requires $document * @requires $xhrFactory * @@ -34502,8 +34835,8 @@ function $xhrFactoryProvider() { * $httpBackend} which can be trained with responses. */ function $HttpBackendProvider() { - this.$get = ['$browser', '$jsonpCallbacks', '$document', '$xhrFactory', function($browser, $jsonpCallbacks, $document, $xhrFactory) { - return createHttpBackend($browser, $xhrFactory, $browser.defer, $jsonpCallbacks, $document[0]); + this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) { + return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]); }]; } @@ -34513,13 +34846,17 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc $browser.$$incOutstandingRequestCount(); url = url || $browser.url(); - if (lowercase(method) === 'jsonp') { - var callbackPath = callbacks.createCallback(url); - var jsonpDone = jsonpReq(url, callbackPath, function(status, text) { - // jsonpReq only ever sets status to 200 (OK), 404 (ERROR) or -1 (WAITING) - var response = (status === 200) && callbacks.getResponse(callbackPath); - completeRequest(callback, status, response, "", text); - callbacks.removeCallback(callbackPath); + if (lowercase(method) == 'jsonp') { + var callbackId = '_' + (callbacks.counter++).toString(36); + callbacks[callbackId] = function(data) { + callbacks[callbackId].data = data; + callbacks[callbackId].called = true; + }; + + var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), + callbackId, function(status, text) { + completeRequest(callback, status, callbacks[callbackId].data, "", text); + callbacks[callbackId] = noop; }); } else { @@ -34621,8 +34958,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc } }; - function jsonpReq(url, callbackPath, done) { - url = url.replace('JSON_CALLBACK', callbackPath); + function jsonpReq(url, callbackId, done) { // we can't use jQuery/jqLite here because jQuery does crazy stuff with script elements, e.g.: // - fetches local scripts via XHR and evals them // - adds and immediately removes script elements from the document @@ -34640,7 +34976,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc var text = "unknown"; if (event) { - if (event.type === "load" && !callbacks.wasCalled(callbackPath)) { + if (event.type === "load" && !callbacks[callbackId].called) { event = { type: "error" }; } text = event.type; @@ -34839,7 +35175,7 @@ function $InterpolateProvider() { * * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior. * - * #### Escaped Interpolation + * ####Escaped Interpolation * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash). * It will be rendered as a regular start/end marker, and will not be interpreted as an expression @@ -35262,87 +35598,6 @@ function $IntervalProvider() { }]; } -/** - * @ngdoc service - * @name $jsonpCallbacks - * @requires $window - * @description - * This service handles the lifecycle of callbacks to handle JSONP requests. - * Override this service if you wish to customise where the callbacks are stored and - * how they vary compared to the requested url. - */ -var $jsonpCallbacksProvider = function() { - this.$get = ['$window', function($window) { - var callbacks = $window.angular.callbacks; - var callbackMap = {}; - - function createCallback(callbackId) { - var callback = function(data) { - callback.data = data; - callback.called = true; - }; - callback.id = callbackId; - return callback; - } - - return { - /** - * @ngdoc method - * @name $jsonpCallbacks#createCallback - * @param {string} url the url of the JSONP request - * @returns {string} the callback path to send to the server as part of the JSONP request - * @description - * {@link $httpBackend} calls this method to create a callback and get hold of the path to the callback - * to pass to the server, which will be used to call the callback with its payload in the JSONP response. - */ - createCallback: function(url) { - var callbackId = '_' + (callbacks.$$counter++).toString(36); - var callbackPath = 'angular.callbacks.' + callbackId; - var callback = createCallback(callbackId); - callbackMap[callbackPath] = callbacks[callbackId] = callback; - return callbackPath; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#wasCalled - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {boolean} whether the callback has been called, as a result of the JSONP response - * @description - * {@link $httpBackend} calls this method to find out whether the JSONP response actually called the - * callback that was passed in the request. - */ - wasCalled: function(callbackPath) { - return callbackMap[callbackPath].called; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#getResponse - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @returns {*} the data received from the response via the registered callback - * @description - * {@link $httpBackend} calls this method to get hold of the data that was provided to the callback - * in the JSONP response. - */ - getResponse: function(callbackPath) { - return callbackMap[callbackPath].data; - }, - /** - * @ngdoc method - * @name $jsonpCallbacks#removeCallback - * @param {string} callbackPath the path to the callback that was sent in the JSONP request - * @description - * {@link $httpBackend} calls this method to remove the callback after the JSONP request has - * completed or timed-out. - */ - removeCallback: function(callbackPath) { - var callback = callbackMap[callbackPath]; - delete callbacks[callback.id]; - delete callbackMap[callbackPath]; - } - }; - }]; -}; - /** * @ngdoc service * @name $locale @@ -35682,12 +35937,6 @@ function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) { var locationPrototype = { - /** - * Ensure absolute url is initialized. - * @private - */ - $$absUrl:'', - /** * Are we in html5 mode? * @private @@ -37061,7 +37310,7 @@ AST.prototype = { var args = []; if (this.peekToken().text !== ')') { do { - args.push(this.filterChain()); + args.push(this.expression()); } while (this.expect(',')); } return args; @@ -38788,7 +39037,7 @@ function $ParseProvider() { * * **Methods** * - * - `then(successCallback, [errorCallback], [notifyCallback])` – regardless of when the promise was or + * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously * as soon as the result is available. The callbacks are called with a single argument: the result * or rejection reason. Additionally, the notify callback may be called zero or more times to @@ -38799,8 +39048,7 @@ function $ParseProvider() { * with the value which is resolved in that promise using * [promise chaining](http://www.html5rocks.com/en/tutorials/es6/promises/#toc-promises-queues)). * It also notifies via the return value of the `notifyCallback` method. The promise cannot be - * resolved or rejected from the notifyCallback method. The errorCallback and notifyCallback - * arguments are optional. + * resolved or rejected from the notifyCallback method. * * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` * @@ -39215,30 +39463,6 @@ function qFactory(nextTick, exceptionHandler) { return deferred.promise; } - /** - * @ngdoc method - * @name $q#race - * @kind function - * - * @description - * Returns a promise that resolves or rejects as soon as one of those promises - * resolves or rejects, with the value or reason from that promise. - * - * @param {Array.|Object.} promises An array or hash of promises. - * @returns {Promise} a promise that resolves or rejects as soon as one of the `promises` - * resolves or rejects, with the value or reason from that promise. - */ - - function race(promises) { - var deferred = defer(); - - forEach(promises, function(promise) { - when(promise).then(deferred.resolve, deferred.reject); - }); - - return deferred.promise; - } - var $Q = function Q(resolver) { if (!isFunction(resolver)) { throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver); @@ -39268,7 +39492,6 @@ function qFactory(nextTick, exceptionHandler) { $Q.when = when; $Q.resolve = resolve; $Q.all = all; - $Q.race = race; return $Q; } @@ -42620,11 +42843,10 @@ function $FilterProvider($provide) { * - `Object`: A pattern object can be used to filter specific properties on objects contained * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items * which have property `name` containing "M" and property `phone` containing "1". A special - * property name (`$` by default) can be used (e.g. as in `{$: "text"}`) to accept a match - * against any property of the object or its nested object properties. That's equivalent to the - * simple substring match with a `string` as described above. The special property name can be - * overwritten, using the `anyPropertyKey` parameter. - * The predicate can be negated by prefixing the string with `!`. + * property name `$` can be used (as in `{$:"text"}`) to accept a match against any + * property of the object or its nested object properties. That's equivalent to the simple + * substring match with a `string` as described above. The predicate can be negated by prefixing + * the string with `!`. * For example `{name: "!M"}` predicate will return an array of items which have property `name` * not containing "M". * @@ -42658,9 +42880,6 @@ function $FilterProvider($provide) { * Primitive values are converted to strings. Objects are not compared against primitives, * unless they have a custom `toString` method (e.g. `Date` objects). * - * @param {string=} anyPropertyKey The special property name that matches against any property. - * By default `$`. - * * @example @@ -42729,9 +42948,8 @@ function $FilterProvider($provide) { */ - function filterFilter() { - return function(array, expression, comparator, anyPropertyKey) { + return function(array, expression, comparator) { if (!isArrayLike(array)) { if (array == null) { return array; @@ -42740,7 +42958,6 @@ function filterFilter() { } } - anyPropertyKey = anyPropertyKey || '$'; var expressionType = getTypeForFilter(expression); var predicateFn; var matchAgainstAnyProp; @@ -42757,7 +42974,7 @@ function filterFilter() { //jshint -W086 case 'object': //jshint +W086 - predicateFn = createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp); + predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp); break; default: return array; @@ -42768,8 +42985,8 @@ function filterFilter() { } // Helper functions for `filterFilter` -function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstAnyProp) { - var shouldMatchPrimitives = isObject(expression) && (anyPropertyKey in expression); +function createPredicateFn(expression, comparator, matchAgainstAnyProp) { + var shouldMatchPrimitives = isObject(expression) && ('$' in expression); var predicateFn; if (comparator === true) { @@ -42797,25 +43014,25 @@ function createPredicateFn(expression, comparator, anyPropertyKey, matchAgainstA predicateFn = function(item) { if (shouldMatchPrimitives && !isObject(item)) { - return deepCompare(item, expression[anyPropertyKey], comparator, anyPropertyKey, false); + return deepCompare(item, expression.$, comparator, false); } - return deepCompare(item, expression, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expression, comparator, matchAgainstAnyProp); }; return predicateFn; } -function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstAnyProp, dontMatchWholeObject) { +function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) { var actualType = getTypeForFilter(actual); var expectedType = getTypeForFilter(expected); if ((expectedType === 'string') && (expected.charAt(0) === '!')) { - return !deepCompare(actual, expected.substring(1), comparator, anyPropertyKey, matchAgainstAnyProp); + return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp); } else if (isArray(actual)) { // In case `actual` is an array, consider it a match // if ANY of it's items matches `expected` return actual.some(function(item) { - return deepCompare(item, expected, comparator, anyPropertyKey, matchAgainstAnyProp); + return deepCompare(item, expected, comparator, matchAgainstAnyProp); }); } @@ -42824,11 +43041,11 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA var key; if (matchAgainstAnyProp) { for (key in actual) { - if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, anyPropertyKey, true)) { + if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) { return true; } } - return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, anyPropertyKey, false); + return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false); } else if (expectedType === 'object') { for (key in expected) { var expectedVal = expected[key]; @@ -42836,9 +43053,9 @@ function deepCompare(actual, expected, comparator, anyPropertyKey, matchAgainstA continue; } - var matchAnyProperty = key === anyPropertyKey; + var matchAnyProperty = key === '$'; var actualVal = matchAnyProperty ? actual : actual[key]; - if (!deepCompare(actualVal, expectedVal, comparator, anyPropertyKey, matchAnyProperty, matchAnyProperty)) { + if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) { return false; } } @@ -43576,22 +43793,21 @@ var uppercaseFilter = valueFn(uppercase); * @kind function * * @description - * Creates a new array or string containing only a specified number of elements. The elements are - * taken from either the beginning or the end of the source array, string or number, as specified by - * the value and sign (positive or negative) of `limit`. Other array-like objects are also supported - * (e.g. array subclasses, NodeLists, jqLite/jQuery collections etc). If a number is used as input, - * it is converted to a string. - * - * @param {Array|ArrayLike|string|number} input - Array/array-like, string or number to be limited. - * @param {string|number} limit - The length of the returned array or string. If the `limit` number + * Creates a new array or string containing only a specified number of elements. The elements + * are taken from either the beginning or the end of the source array, string or number, as specified by + * the value and sign (positive or negative) of `limit`. If a number is used as input, it is + * converted to a string. + * + * @param {Array|string|number} input Source array, string or number to be limited. + * @param {string|number} limit The length of the returned array or string. If the `limit` number * is positive, `limit` number of items from the beginning of the source array/string are copied. * If the number is negative, `limit` number of items from the end of the source array/string * are copied. The `limit` will be trimmed if it exceeds `array.length`. If `limit` is undefined, * the input will be returned unchanged. - * @param {(string|number)=} begin - Index at which to begin limitation. As a negative index, - * `begin` indicates an offset from the end of `input`. Defaults to `0`. - * @returns {Array|string} A new sub-array or substring of length `limit` or less if the input had - * less than `limit` elements. + * @param {(string|number)=} begin Index at which to begin limitation. As a negative index, `begin` + * indicates an offset from the end of `input`. Defaults to `0`. + * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array + * had less than `limit` elements. * * @example @@ -43679,157 +43895,67 @@ function limitToFilter() { if (isNaN(limit)) return input; if (isNumber(input)) input = input.toString(); - if (!isArrayLike(input)) return input; + if (!isArray(input) && !isString(input)) return input; begin = (!begin || isNaN(begin)) ? 0 : toInt(begin); begin = (begin < 0) ? Math.max(0, input.length + begin) : begin; if (limit >= 0) { - return sliceFn(input, begin, begin + limit); + return input.slice(begin, begin + limit); } else { if (begin === 0) { - return sliceFn(input, limit, input.length); + return input.slice(limit, input.length); } else { - return sliceFn(input, Math.max(0, begin + limit), begin); + return input.slice(Math.max(0, begin + limit), begin); } } }; } -function sliceFn(input, begin, end) { - if (isString(input)) return input.slice(begin, end); - - return slice.call(input, begin, end); -} - /** * @ngdoc filter * @name orderBy * @kind function * * @description - * Returns an array containing the items from the specified `collection`, ordered by a `comparator` - * function based on the values computed using the `expression` predicate. - * - * For example, `[{id: 'foo'}, {id: 'bar'}] | orderBy:'id'` would result in - * `[{id: 'bar'}, {id: 'foo'}]`. - * - * The `collection` can be an Array or array-like object (e.g. NodeList, jQuery object, TypedArray, - * String, etc). + * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically + * for strings and numerically for numbers. Note: if you notice numbers are not being sorted + * as expected, make sure they are actually being saved as numbers and not strings. + * Array-like values (e.g. NodeLists, jQuery objects, TypedArrays, Strings, etc) are also supported. * - * The `expression` can be a single predicate, or a list of predicates each serving as a tie-breaker - * for the preceeding one. The `expression` is evaluated against each item and the output is used - * for comparing with other items. - * - * You can change the sorting order by setting `reverse` to `true`. By default, items are sorted in - * ascending order. - * - * The comparison is done using the `comparator` function. If none is specified, a default, built-in - * comparator is used (see below for details - in a nutshell, it compares numbers numerically and - * strings alphabetically). - * - * ### Under the hood - * - * Ordering the specified `collection` happens in two phases: - * - * 1. All items are passed through the predicate (or predicates), and the returned values are saved - * along with their type (`string`, `number` etc). For example, an item `{label: 'foo'}`, passed - * through a predicate that extracts the value of the `label` property, would be transformed to: - * ``` - * { - * value: 'foo', - * type: 'string', - * index: ... - * } - * ``` - * 2. The comparator function is used to sort the items, based on the derived values, types and - * indices. - * - * If you use a custom comparator, it will be called with pairs of objects of the form - * `{value: ..., type: '...', index: ...}` and is expected to return `0` if the objects are equal - * (as far as the comparator is concerned), `-1` if the 1st one should be ranked higher than the - * second, or `1` otherwise. - * - * In order to ensure that the sorting will be deterministic across platforms, if none of the - * specified predicates can distinguish between two items, `orderBy` will automatically introduce a - * dummy predicate that returns the item's index as `value`. - * (If you are using a custom comparator, make sure it can handle this predicate as well.) - * - * Finally, in an attempt to simplify things, if a predicate returns an object as the extracted - * value for an item, `orderBy` will try to convert that object to a primitive value, before passing - * it to the comparator. The following rules govern the conversion: - * - * 1. If the object has a `valueOf()` method that returns a primitive, its return value will be - * used instead.
- * (If the object has a `valueOf()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 2. If the object has a custom `toString()` method (i.e. not the one inherited from `Object`) that - * returns a primitive, its return value will be used instead.
- * (If the object has a `toString()` method that returns another object, then the returned object - * will be used in subsequent steps.) - * 3. No conversion; the object itself is used. - * - * ### The default comparator - * - * The default, built-in comparator should be sufficient for most usecases. In short, it compares - * numbers numerically, strings alphabetically (and case-insensitively), for objects falls back to - * using their index in the original collection, and sorts values of different types by type. - * - * More specifically, it follows these steps to determine the relative order of items: - * - * 1. If the compared values are of different types, compare the types themselves alphabetically. - * 2. If both values are of type `string`, compare them alphabetically in a case- and - * locale-insensitive way. - * 3. If both values are objects, compare their indices instead. - * 4. Otherwise, return: - * - `0`, if the values are equal (by strict equality comparison, i.e. using `===`). - * - `-1`, if the 1st value is "less than" the 2nd value (compared using the `<` operator). - * - `1`, otherwise. - * - * **Note:** If you notice numbers not being sorted as expected, make sure they are actually being - * saved as numbers and not strings. - * - * @param {Array|ArrayLike} collection - The collection (array or array-like object) to sort. - * @param {(Function|string|Array.)=} expression - A predicate (or list of - * predicates) to be used by the comparator to determine the order of elements. + * @param {Array} array The array (or array-like object) to sort. + * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be + * used by the comparator to determine the order of elements. * * Can be one of: * - * - `Function`: A getter function. This function will be called with each item as argument and - * the return value will be used for sorting. - * - `string`: An Angular expression. This expression will be evaluated against each item and the - * result will be used for sorting. For example, use `'label'` to sort by a property called - * `label` or `'label.substring(0, 3)'` to sort by the first 3 characters of the `label` - * property.
- * (The result of a constant expression is interpreted as a property name to be used for - * comparison. For example, use `'"special name"'` (note the extra pair of quotes) to sort by a - * property called `special name`.)
- * An expression can be optionally prefixed with `+` or `-` to control the sorting direction, - * ascending or descending. For example, `'+label'` or `'-label'`. If no property is provided, - * (e.g. `'+'` or `'-'`), the collection element itself is used in comparisons. - * - `Array`: An array of function and/or string predicates. If a predicate cannot determine the - * relative order of two items, the next predicate is used as a tie-breaker. + * - `function`: Getter function. The result of this function will be sorted using the + * `<`, `===`, `>` operator. + * - `string`: An Angular expression. The result of this expression is used to compare elements + * (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by + * 3 first characters of a property called `name`). The result of a constant expression + * is interpreted as a property name to be used in comparisons (for example `"special name"` + * to sort object by the value of their `special name` property). An expression can be + * optionally prefixed with `+` or `-` to control ascending or descending sort order + * (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array + * element itself is used to compare where sorting. + * - `Array`: An array of function or string predicates. The first predicate in the array + * is used for sorting, but when two items are equivalent, the next predicate is used. * - * **Note:** If the predicate is missing or empty then it defaults to `'+'`. + * If the predicate is missing or empty then it defaults to `'+'`. * - * @param {boolean=} reverse - If `true`, reverse the sorting order. - * @param {(Function)=} comparator - The comparator function used to determine the relative order of - * value pairs. If omitted, the built-in comparator will be used. - * - * @returns {Array} - The sorted array. + * @param {boolean=} reverse Reverse the order of the array. + * @returns {Array} Sorted copy of the source array. * * * @example - * ### Ordering a table with `ngRepeat` - * - * The example below demonstrates a simple {@link ngRepeat ngRepeat}, where the data is sorted by - * age in descending order (expression is set to `'-age'`). The `comparator` is not set, which means - * it defaults to the built-in comparator. - * - + * The example below demonstrates a simple ngRepeat, where the data is sorted + * by age in descending order (predicate is set to `'-age'`). + * `reverse` is not set, which means it defaults to `false`. +
- +
@@ -43844,77 +43970,43 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample1', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; }]); - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - - - // Element locators - var names = element.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by age in reverse order', function() { - expect(names.get(0).getText()).toBe('Adam'); - expect(names.get(1).getText()).toBe('Julie'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('John'); - }); - - *
* + * The predicate and reverse parameters can be controlled dynamically through scope properties, + * as shown in the next example. * @example - * ### Changing parameters dynamically - * - * All parameters can be changed dynamically. The next example shows how you can make the columns of - * a table sortable, by binding the `expression` and `reverse` parameters to scope properties. - * - +
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- +
Sorting predicate = {{predicate}}; reverse = {{reverse}}

-
Name Phone Number
+ +
- - - + + + - + @@ -43923,335 +44015,100 @@ function sliceFn(input, begin, end) { - angular.module('orderByExample2', []) + angular.module('orderByExample', []) .controller('ExampleController', ['$scope', function($scope) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + $scope.predicate = 'age'; $scope.reverse = true; - $scope.friends = friends; - - $scope.sortBy = function(propertyName) { - $scope.reverse = ($scope.propertyName === propertyName) ? !$scope.reverse : false; - $scope.propertyName = propertyName; + $scope.order = function(predicate) { + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.predicate = predicate; }; }]); - + - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } - .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE + content: '\25bc'; } - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - - *
* - * @example - * ### Using `orderBy` inside a controller + * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the + * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the + * desired parameters. * - * It is also possible to call the `orderBy` filter manually, by injecting `orderByFilter`, and - * calling it with the desired parameters. (Alternatively, you could inject the `$filter` factory - * and retrieve the `orderBy` filter with `$filter('orderBy')`.) + * Example: * - - -
-
Sort by = {{propertyName}}; reverse = {{reverse}}
-
- -
-
- - - - - - - - - + + + + + + + + +
{{friend.name}} {{friend.phone}} {{friend.age}}
- - - - - - - - - - -
- - - - - - - - -
{{friend.name}}{{friend.phone}}{{friend.age}}
-
-
- - angular.module('orderByExample3', []) - .controller('ExampleController', ['$scope', 'orderByFilter', function($scope, orderBy) { - var friends = [ - {name: 'John', phone: '555-1212', age: 10}, - {name: 'Mary', phone: '555-9876', age: 19}, - {name: 'Mike', phone: '555-4321', age: 21}, - {name: 'Adam', phone: '555-5678', age: 35}, - {name: 'Julie', phone: '555-8765', age: 29} - ]; - - $scope.propertyName = 'age'; - $scope.reverse = true; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - - $scope.sortBy = function(propertyName) { - $scope.reverse = (propertyName !== null && $scope.propertyName === propertyName) - ? !$scope.reverse : false; - $scope.propertyName = propertyName; - $scope.friends = orderBy(friends, $scope.propertyName, $scope.reverse); - }; - }]); - - - .friends { - border-collapse: collapse; - } + * @example + + +
+
Sorting predicate = {{predicate}}; reverse = {{reverse}}
+ + + + + + + + + + + +
+ + + + + + + + +
{{friend.name}}{{friend.phone}}{{friend.age}}
+
+
- .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; - } + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) { + var orderBy = $filter('orderBy'); + $scope.friends = [ + { name: 'John', phone: '555-1212', age: 10 }, + { name: 'Mary', phone: '555-9876', age: 19 }, + { name: 'Mike', phone: '555-4321', age: 21 }, + { name: 'Adam', phone: '555-5678', age: 35 }, + { name: 'Julie', phone: '555-8765', age: 29 } + ]; + $scope.order = function(predicate) { + $scope.predicate = predicate; + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.friends = orderBy($scope.friends, predicate, $scope.reverse); + }; + $scope.order('age', true); + }]); + + .sortorder:after { - content: '\25b2'; // BLACK UP-POINTING TRIANGLE + content: '\25b2'; } .sortorder.reverse:after { - content: '\25bc'; // BLACK DOWN-POINTING TRIANGLE - } - - - // Element locators - var unsortButton = element(by.partialButtonText('unsorted')); - var nameHeader = element(by.partialButtonText('Name')); - var phoneHeader = element(by.partialButtonText('Phone')); - var ageHeader = element(by.partialButtonText('Age')); - var firstName = element(by.repeater('friends').column('friend.name').row(0)); - var lastName = element(by.repeater('friends').column('friend.name').row(4)); - - it('should sort friends by some property, when clicking on the column header', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - phoneHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Mary'); - - nameHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('Mike'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - }); - - it('should sort friends in reverse order, when clicking on the same column', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - ageHeader.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Adam'); - - ageHeader.click(); - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - }); - - it('should restore the original order, when clicking "Set to unsorted"', function() { - expect(firstName.getText()).toBe('Adam'); - expect(lastName.getText()).toBe('John'); - - unsortButton.click(); - expect(firstName.getText()).toBe('John'); - expect(lastName.getText()).toBe('Julie'); - }); - -
- *
- * - * @example - * ### Using a custom comparator - * - * If you have very specific requirements about the way items are sorted, you can pass your own - * comparator function. For example, you might need to compare some strings in a locale-sensitive - * way. (When specifying a custom comparator, you also need to pass a value for the `reverse` - * argument - passing `false` retains the default sorting order, i.e. ascending.) - * - - -
-
-

Locale-sensitive Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-

Default Comparator

- - - - - - - - - -
NameFavorite Letter
{{friend.name}}{{friend.favoriteLetter}}
-
-
-
- - angular.module('orderByExample4', []) - .controller('ExampleController', ['$scope', function($scope) { - $scope.friends = [ - {name: 'John', favoriteLetter: 'Ä'}, - {name: 'Mary', favoriteLetter: 'Ü'}, - {name: 'Mike', favoriteLetter: 'Ö'}, - {name: 'Adam', favoriteLetter: 'H'}, - {name: 'Julie', favoriteLetter: 'Z'} - ]; - - $scope.localeSensitiveComparator = function(v1, v2) { - // If we don't get strings, just compare by index - if (v1.type !== 'string' || v2.type !== 'string') { - return (v1.index < v2.index) ? -1 : 1; - } - - // Compare strings alphabetically, taking locale into account - return v1.value.localeCompare(v2.value); - }; - }]); - - - .friends-container { - display: inline-block; - margin: 0 30px; - } - - .friends { - border-collapse: collapse; - } - - .friends th { - border-bottom: 1px solid; - } - .friends td, .friends th { - border-left: 1px solid; - padding: 5px 10px; - } - .friends td:first-child, .friends th:first-child { - border-left: none; + content: '\25bc'; } - - - // Element locators - var container = element(by.css('.custom-comparator')); - var names = container.all(by.repeater('friends').column('friend.name')); - - it('should sort friends by favorite letter (in correct alphabetical order)', function() { - expect(names.get(0).getText()).toBe('John'); - expect(names.get(1).getText()).toBe('Adam'); - expect(names.get(2).getText()).toBe('Mike'); - expect(names.get(3).getText()).toBe('Mary'); - expect(names.get(4).getText()).toBe('Julie'); - }); - -
- * +
+
*/ orderByFilter.$inject = ['$parse']; function orderByFilter($parse) { - return function(array, sortPredicate, reverseOrder, compareFn) { + return function(array, sortPredicate, reverseOrder) { if (array == null) return array; if (!isArrayLike(array)) { @@ -44261,12 +44118,11 @@ function orderByFilter($parse) { if (!isArray(sortPredicate)) { sortPredicate = [sortPredicate]; } if (sortPredicate.length === 0) { sortPredicate = ['+']; } - var predicates = processPredicates(sortPredicate); - - var descending = reverseOrder ? -1 : 1; - - // Define the `compare()` function. Use a default comparator if none is specified. - var compare = isFunction(compareFn) ? compareFn : defaultCompare; + var predicates = processPredicates(sortPredicate, reverseOrder); + // Add a predicate at the end that evaluates to the element index. This makes the + // sort stable as it works as a tie-breaker when all the input predicates cannot + // distinguish between two elements. + predicates.push({ get: function() { return {}; }, descending: reverseOrder ? -1 : 1}); // The next three lines are a version of a Swartzian Transform idiom from Perl // (sometimes called the Decorate-Sort-Undecorate idiom) @@ -44278,12 +44134,8 @@ function orderByFilter($parse) { return array; function getComparisonObject(value, index) { - // NOTE: We are adding an extra `tieBreaker` value based on the element's index. - // This will be used to keep the sort stable when none of the input predicates can - // distinguish between two elements. return { value: value, - tieBreaker: {value: index, type: 'number', index: index}, predicateValues: predicates.map(function(predicate) { return getPredicateValue(predicate.get(value), index); }) @@ -44291,19 +44143,18 @@ function orderByFilter($parse) { } function doComparison(v1, v2) { - for (var i = 0, ii = predicates.length; i < ii; i++) { - var result = compare(v1.predicateValues[i], v2.predicateValues[i]); - if (result) { - return result * predicates[i].descending * descending; - } + var result = 0; + for (var index=0, length = predicates.length; index < length; ++index) { + result = compare(v1.predicateValues[index], v2.predicateValues[index]) * predicates[index].descending; + if (result) break; } - - return compare(v1.tieBreaker, v2.tieBreaker) * descending; + return result; } }; - function processPredicates(sortPredicates) { - return sortPredicates.map(function(predicate) { + function processPredicates(sortPredicate, reverseOrder) { + reverseOrder = reverseOrder ? -1 : 1; + return sortPredicate.map(function(predicate) { var descending = 1, get = identity; if (isFunction(predicate)) { @@ -44321,7 +44172,7 @@ function orderByFilter($parse) { } } } - return {get: get, descending: descending}; + return { get: get, descending: descending * reverseOrder }; }); } @@ -44336,9 +44187,9 @@ function orderByFilter($parse) { } } - function objectValue(value) { + function objectValue(value, index) { // If `valueOf` is a valid function use that - if (isFunction(value.valueOf)) { + if (typeof value.valueOf === 'function') { value = value.valueOf(); if (isPrimitive(value)) return value; } @@ -44347,8 +44198,8 @@ function orderByFilter($parse) { value = value.toString(); if (isPrimitive(value)) return value; } - - return value; + // We have a basic object so we use the position of the object in the collection + return index; } function getPredicateValue(value, index) { @@ -44356,39 +44207,23 @@ function orderByFilter($parse) { if (value === null) { type = 'string'; value = 'null'; + } else if (type === 'string') { + value = value.toLowerCase(); } else if (type === 'object') { - value = objectValue(value); + value = objectValue(value, index); } - return {value: value, type: type, index: index}; + return { value: value, type: type }; } - function defaultCompare(v1, v2) { + function compare(v1, v2) { var result = 0; - var type1 = v1.type; - var type2 = v2.type; - - if (type1 === type2) { - var value1 = v1.value; - var value2 = v2.value; - - if (type1 === 'string') { - // Compare strings case-insensitively - value1 = value1.toLowerCase(); - value2 = value2.toLowerCase(); - } else if (type1 === 'object') { - // For basic objects, use the position of the object - // in the collection instead of the value - if (isObject(value1)) value1 = v1.index; - if (isObject(value2)) value2 = v2.index; - } - - if (value1 !== value2) { - result = value1 < value2 ? -1 : 1; + if (v1.type === v2.type) { + if (v1.value !== v2.value) { + result = v1.value < v2.value ? -1 : 1; } } else { - result = type1 < type2 ? -1 : 1; + result = v1.type < v2.type ? -1 : 1; } - return result; } } @@ -44668,11 +44503,9 @@ var htmlAnchorDirective = valueFn({ * * @description * - * Sets the `readonly` attribute on the element, if the expression inside `ngReadonly` is truthy. - * Note that `readonly` applies only to `input` elements with specific types. [See the input docs on - * MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly) for more information. + * Sets the `readOnly` attribute on the element, if the expression inside `ngReadonly` is truthy. * - * A special directive is necessary because we cannot use interpolation inside the `readonly` + * A special directive is necessary because we cannot use interpolation inside the `readOnly` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * * @example @@ -44709,13 +44542,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `selected` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - *
- * **Note:** `ngSelected` does not interact with the `select` and `ngModel` directives, it only - * sets the `selected` attribute on the element. If you are using `ngModel` on the select, you - * should not use `ngSelected` on the options, as `ngModel` will set the select value and - * selected options. - *
- * * @example @@ -44752,11 +44578,6 @@ var htmlAnchorDirective = valueFn({ * A special directive is necessary because we cannot use interpolation inside the `open` * attribute. See the {@link guide/interpolation interpolation guide} for more info. * - * ## A note about browser compatibility - * - * Edge, Firefox, and Internet Explorer do not support the `details` element, it is - * recommended to use {@link ng.ngShow} and {@link ng.ngHide} instead. - * * @example @@ -45447,9 +45268,7 @@ var ISO_DATE_REGEXP = /^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+- // 9. Fragment // 1111111111111111 222 333333 44444 555555555555555555555555 666 77777777 8888888 999 var URL_REGEXP = /^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i; -/* jshint maxlen:220 */ -var EMAIL_REGEXP = /^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/; -/* jshint maxlen:200 */ +var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4,})-(\d{2})-(\d{2})$/; var DATETIMELOCAL_REGEXP = /^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; @@ -46834,7 +46653,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('min', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } minVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -46850,7 +46669,7 @@ function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { attr.$observe('max', function(val) { if (isDefined(val) && !isNumber(val)) { - val = parseFloat(val); + val = parseFloat(val, 10); } maxVal = isNumber(val) && !isNaN(val) ? val : undefined; // TODO(matsko): implement validateLater to reduce number of validations @@ -47657,11 +47476,6 @@ function classDirective(name, selector) { * When the expression changes, the previously added classes are removed and only then are the * new classes added. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `class` - * attribute, when using the `ngClass` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @animations * | Animation | Occurs | * |----------------------------------|-------------------------------------| @@ -51607,7 +51421,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, for (var i = options.items.length - 1; i >= 0; i--) { var option = options.items[i]; - if (isDefined(option.group)) { + if (option.group) { jqLiteRemove(option.element.parentNode); } else { jqLiteRemove(option.element); @@ -51639,8 +51453,7 @@ var ngOptionsDirective = ['$compile', '$document', '$parse', function($compile, listFragment.appendChild(groupElement); // Update the label on the group element - // "null" is special cased because of Safari - groupElement.label = option.group === null ? 'null' : option.group; + groupElement.label = option.group; // Store it for use later groupElementMap[option.group] = groupElement; @@ -51976,7 +51789,7 @@ var ngPluralizeDirective = ['$locale', '$interpolate', '$log', function($locale, * it's a prefix used by Angular for public (`$`) and private (`$$`) properties. * * - The built-in filters {@link ng.orderBy orderBy} and {@link ng.filter filter} do not work with - * objects, and will throw an error if used with one. + * objects, and will throw if used with one. * * If you are hitting any of these limitations, the recommended workaround is to convert your object into an array * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could @@ -52825,11 +52638,6 @@ var ngHideDirective = ['$animate', function($animate) { * @description * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. * - * @knownIssue - * You should not use {@link guide/interpolation interpolation} in the value of the `style` - * attribute, when using the `ngStyle` directive on the same element. - * See {@link guide/interpolation#known-issues here} for more info. - * * @element ANY * @param {expression} ngStyle * @@ -53241,63 +53049,37 @@ var ngSwitchDefaultDirective = ngDirective({ * */ var ngTranscludeMinErr = minErr('ngTransclude'); -var ngTranscludeDirective = ['$compile', function($compile) { - return { - restrict: 'EAC', - terminal: true, - compile: function ngTranscludeCompile(tElement) { - - // Remove and cache any original content to act as a fallback - var fallbackLinkFn = $compile(tElement.contents()); - tElement.empty(); - - return function ngTranscludePostLink($scope, $element, $attrs, controller, $transclude) { - - if (!$transclude) { - throw ngTranscludeMinErr('orphan', - 'Illegal use of ngTransclude directive in the template! ' + - 'No parent directive that requires a transclusion found. ' + - 'Element: {0}', - startingTag($element)); - } - - - // If the attribute is of the form: `ng-transclude="ng-transclude"` then treat it like the default - if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { - $attrs.ngTransclude = ''; - } - var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; +var ngTranscludeDirective = ngDirective({ + restrict: 'EAC', + link: function($scope, $element, $attrs, controller, $transclude) { - // If the slot is required and no transclusion content is provided then this call will throw an error - $transclude(ngTranscludeCloneAttachFn, null, slotName); - - // If the slot is optional and no transclusion content is provided then use the fallback content - if (slotName && !$transclude.isSlotFilled(slotName)) { - useFallbackContent(); - } + if ($attrs.ngTransclude === $attrs.$attr.ngTransclude) { + // If the attribute is of the form: `ng-transclude="ng-transclude"` + // then treat it like the default + $attrs.ngTransclude = ''; + } - function ngTranscludeCloneAttachFn(clone, transcludedScope) { - if (clone.length) { - $element.append(clone); - } else { - useFallbackContent(); - // There is nothing linked against the transcluded scope since no content was available, - // so it should be safe to clean up the generated scope. - transcludedScope.$destroy(); - } - } + function ngTranscludeCloneAttachFn(clone) { + if (clone.length) { + $element.empty(); + $element.append(clone); + } + } - function useFallbackContent() { - // Since this is the fallback content rather than the transcluded content, - // we link against the scope of this directive rather than the transcluded scope - fallbackLinkFn($scope, function(clone) { - $element.append(clone); - }); - } - }; + if (!$transclude) { + throw ngTranscludeMinErr('orphan', + 'Illegal use of ngTransclude directive in the template! ' + + 'No parent directive that requires a transclusion found. ' + + 'Element: {0}', + startingTag($element)); } - }; -}]; + + // If there is no slot name defined or the slot name is not optional + // then transclude the slot + var slotName = $attrs.ngTransclude || $attrs.ngTranscludeSlot; + $transclude(ngTranscludeCloneAttachFn, null, slotName); + } +}); /** * @ngdoc directive @@ -54352,11 +54134,11 @@ $provide.value("$locale", { })(window); !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(''); -},{}],71:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ require('./angular'); module.exports = angular; -},{"./angular":70}],72:[function(require,module,exports){ +},{"./angular":71}],73:[function(require,module,exports){ var asn1 = exports; asn1.bignum = require('bn.js'); @@ -54367,7 +54149,7 @@ asn1.constants = require('./asn1/constants'); asn1.decoders = require('./asn1/decoders'); asn1.encoders = require('./asn1/encoders'); -},{"./asn1/api":73,"./asn1/base":75,"./asn1/constants":79,"./asn1/decoders":81,"./asn1/encoders":84,"bn.js":91}],73:[function(require,module,exports){ +},{"./asn1/api":74,"./asn1/base":76,"./asn1/constants":80,"./asn1/decoders":82,"./asn1/encoders":85,"bn.js":92}],74:[function(require,module,exports){ var asn1 = require('../asn1'); var inherits = require('inherits'); @@ -54430,7 +54212,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) { return this._getEncoder(enc).encode(data, reporter); }; -},{"../asn1":72,"inherits":465,"vm":521}],74:[function(require,module,exports){ +},{"../asn1":73,"inherits":467,"vm":523}],75:[function(require,module,exports){ var inherits = require('inherits'); var Reporter = require('../base').Reporter; var Buffer = require('buffer').Buffer; @@ -54548,7 +54330,7 @@ EncoderBuffer.prototype.join = function join(out, offset) { return out; }; -},{"../base":75,"buffer":121,"inherits":465}],75:[function(require,module,exports){ +},{"../base":76,"buffer":122,"inherits":467}],76:[function(require,module,exports){ var base = exports; base.Reporter = require('./reporter').Reporter; @@ -54556,7 +54338,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer; base.EncoderBuffer = require('./buffer').EncoderBuffer; base.Node = require('./node'); -},{"./buffer":74,"./node":76,"./reporter":77}],76:[function(require,module,exports){ +},{"./buffer":75,"./node":77,"./reporter":78}],77:[function(require,module,exports){ var Reporter = require('../base').Reporter; var EncoderBuffer = require('../base').EncoderBuffer; var DecoderBuffer = require('../base').DecoderBuffer; @@ -54622,7 +54404,7 @@ module.exports = Node; var stateProps = [ 'enc', 'parent', 'children', 'tag', 'args', 'reverseArgs', 'choice', 'optional', 'any', 'obj', 'use', 'alteredUse', 'key', 'default', 'explicit', - 'implicit', 'contains' + 'implicit' ]; Node.prototype.clone = function clone() { @@ -54827,17 +54609,17 @@ Node.prototype.contains = function contains(item) { // Decoding // -Node.prototype._decode = function decode(input, options) { +Node.prototype._decode = function decode(input) { var state = this._baseState; // Decode root node if (state.parent === null) - return input.wrapResult(state.children[0]._decode(input, options)); + return input.wrapResult(state.children[0]._decode(input)); var result = state['default']; var present = true; - var prevKey = null; + var prevKey; if (state.key !== null) prevKey = input.enterKey(state.key); @@ -54856,9 +54638,9 @@ Node.prototype._decode = function decode(input, options) { var save = input.save(); try { if (state.choice === null) - this._decodeGeneric(state.tag, input, options); + this._decodeGeneric(state.tag, input); else - this._decodeChoice(input, options); + this._decodeChoice(input); present = true; } catch (e) { present = false; @@ -54886,8 +54668,6 @@ Node.prototype._decode = function decode(input, options) { input = explicit; } - var start = input.offset; - // Unwrap implicit and normal values if (state.use === null && state.choice === null) { if (state.any) @@ -54906,19 +54686,13 @@ Node.prototype._decode = function decode(input, options) { input = body; } - if (options && options.track && state.tag !== null) - options.track(input.path(), start, input.length, 'tagged'); - - if (options && options.track && state.tag !== null) - options.track(input.path(), input.offset, input.length, 'content'); - // Select proper method for tag if (state.any) result = result; else if (state.choice === null) - result = this._decodeGeneric(state.tag, input, options); + result = this._decodeGeneric(state.tag, input); else - result = this._decodeChoice(input, options); + result = this._decodeChoice(input); if (input.isError(result)) return result; @@ -54928,15 +54702,14 @@ Node.prototype._decode = function decode(input, options) { state.children.forEach(function decodeChildren(child) { // NOTE: We are ignoring errors here, to let parser continue with other // parts of encoded data - child._decode(input, options); + child._decode(input); }); } // Decode contained/encoded by schema, only in bit or octet strings if (state.contains && (state.tag === 'octstr' || state.tag === 'bitstr')) { var data = new DecoderBuffer(result); - result = this._getUse(state.contains, input._reporterState.obj) - ._decode(data, options); + result = this._getUse(state.contains, input._reporterState.obj)._decode(data); } } @@ -54947,40 +54720,35 @@ Node.prototype._decode = function decode(input, options) { // Set key if (state.key !== null && (result !== null || present === true)) input.leaveKey(prevKey, state.key, result); - else if (prevKey !== null) - input.exitKey(prevKey); return result; }; -Node.prototype._decodeGeneric = function decodeGeneric(tag, input, options) { +Node.prototype._decodeGeneric = function decodeGeneric(tag, input) { var state = this._baseState; if (tag === 'seq' || tag === 'set') return null; if (tag === 'seqof' || tag === 'setof') - return this._decodeList(input, tag, state.args[0], options); + return this._decodeList(input, tag, state.args[0]); else if (/str$/.test(tag)) - return this._decodeStr(input, tag, options); + return this._decodeStr(input, tag); else if (tag === 'objid' && state.args) - return this._decodeObjid(input, state.args[0], state.args[1], options); + return this._decodeObjid(input, state.args[0], state.args[1]); else if (tag === 'objid') - return this._decodeObjid(input, null, null, options); + return this._decodeObjid(input, null, null); else if (tag === 'gentime' || tag === 'utctime') - return this._decodeTime(input, tag, options); + return this._decodeTime(input, tag); else if (tag === 'null_') - return this._decodeNull(input, options); + return this._decodeNull(input); else if (tag === 'bool') - return this._decodeBool(input, options); + return this._decodeBool(input); else if (tag === 'int' || tag === 'enum') - return this._decodeInt(input, state.args && state.args[0], options); - - if (state.use !== null) { - return this._getUse(state.use, input._reporterState.obj) - ._decode(input, options); - } else { + return this._decodeInt(input, state.args && state.args[0]); + else if (state.use !== null) + return this._getUse(state.use, input._reporterState.obj)._decode(input); + else return input.error('unknown tag: ' + tag); - } }; Node.prototype._getUse = function _getUse(entity, obj) { @@ -54997,7 +54765,7 @@ Node.prototype._getUse = function _getUse(entity, obj) { return state.useDecoder; }; -Node.prototype._decodeChoice = function decodeChoice(input, options) { +Node.prototype._decodeChoice = function decodeChoice(input) { var state = this._baseState; var result = null; var match = false; @@ -55006,7 +54774,7 @@ Node.prototype._decodeChoice = function decodeChoice(input, options) { var save = input.save(); var node = state.choice[key]; try { - var value = node._decode(input, options); + var value = node._decode(input); if (input.isError(value)) return false; @@ -55187,7 +54955,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) { return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str); }; -},{"../base":75,"minimalistic-assert":472}],77:[function(require,module,exports){ +},{"../base":76,"minimalistic-assert":474}],78:[function(require,module,exports){ var inherits = require('inherits'); function Reporter(options) { @@ -55221,24 +54989,14 @@ Reporter.prototype.enterKey = function enterKey(key) { return this._reporterState.path.push(key); }; -Reporter.prototype.exitKey = function exitKey(index) { - var state = this._reporterState; - - state.path = state.path.slice(0, index - 1); -}; - Reporter.prototype.leaveKey = function leaveKey(index, key, value) { var state = this._reporterState; - this.exitKey(index); + state.path = state.path.slice(0, index - 1); if (state.obj !== null) state.obj[key] = value; }; -Reporter.prototype.path = function path() { - return this._reporterState.path.join('/'); -}; - Reporter.prototype.enterObject = function enterObject() { var state = this._reporterState; @@ -55310,7 +55068,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) { return this; }; -},{"inherits":465}],78:[function(require,module,exports){ +},{"inherits":467}],79:[function(require,module,exports){ var constants = require('../constants'); exports.tagClass = { @@ -55354,7 +55112,7 @@ exports.tag = { }; exports.tagByName = constants._reverse(exports.tag); -},{"../constants":79}],79:[function(require,module,exports){ +},{"../constants":80}],80:[function(require,module,exports){ var constants = exports; // Helper @@ -55375,7 +55133,7 @@ constants._reverse = function reverse(map) { constants.der = require('./der'); -},{"./der":78}],80:[function(require,module,exports){ +},{"./der":79}],81:[function(require,module,exports){ var inherits = require('inherits'); var asn1 = require('../../asn1'); @@ -55486,15 +55244,14 @@ DERNode.prototype._skipUntilEnd = function skipUntilEnd(buffer, fail) { } }; -DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder, - options) { +DERNode.prototype._decodeList = function decodeList(buffer, tag, decoder) { var result = []; while (!buffer.isEmpty()) { var possibleEnd = this._peekTag(buffer, 'end'); if (buffer.isError(possibleEnd)) return possibleEnd; - var res = decoder.decode(buffer, 'der', options); + var res = decoder.decode(buffer, 'der'); if (buffer.isError(res) && possibleEnd) break; result.push(res); @@ -55699,13 +55456,13 @@ function derDecodeLen(buf, primitive, fail) { return len; } -},{"../../asn1":72,"inherits":465}],81:[function(require,module,exports){ +},{"../../asn1":73,"inherits":467}],82:[function(require,module,exports){ var decoders = exports; decoders.der = require('./der'); decoders.pem = require('./pem'); -},{"./der":80,"./pem":82}],82:[function(require,module,exports){ +},{"./der":81,"./pem":83}],83:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -55756,7 +55513,7 @@ PEMDecoder.prototype.decode = function decode(data, options) { return DERDecoder.prototype.decode.call(this, input, options); }; -},{"./der":80,"buffer":121,"inherits":465}],83:[function(require,module,exports){ +},{"./der":81,"buffer":122,"inherits":467}],84:[function(require,module,exports){ var inherits = require('inherits'); var Buffer = require('buffer').Buffer; @@ -56051,13 +55808,13 @@ function encodeTag(tag, primitive, cls, reporter) { return res; } -},{"../../asn1":72,"buffer":121,"inherits":465}],84:[function(require,module,exports){ +},{"../../asn1":73,"buffer":122,"inherits":467}],85:[function(require,module,exports){ var encoders = exports; encoders.der = require('./der'); encoders.pem = require('./pem'); -},{"./der":83,"./pem":85}],85:[function(require,module,exports){ +},{"./der":84,"./pem":86}],86:[function(require,module,exports){ var inherits = require('inherits'); var DEREncoder = require('./der'); @@ -56080,7 +55837,7 @@ PEMEncoder.prototype.encode = function encode(data, options) { return out.join('\n'); }; -},{"./der":83,"inherits":465}],86:[function(require,module,exports){ +},{"./der":84,"inherits":467}],87:[function(require,module,exports){ // http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8! @@ -56441,7 +56198,7 @@ var objectKeys = Object.keys || function (obj) { return keys; }; -},{"util/":518}],87:[function(require,module,exports){ +},{"util/":520}],88:[function(require,module,exports){ (function (global){ "use strict"; @@ -56476,7 +56233,7 @@ define(String.prototype, "padRight", "".padEnd); [][key] && define(Array, key, Function.call.bind([][key])); }); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"core-js/fn/regexp/escape":123,"core-js/shim":416,"regenerator-runtime/runtime":497}],88:[function(require,module,exports){ +},{"core-js/fn/regexp/escape":124,"core-js/shim":418,"regenerator-runtime/runtime":499}],89:[function(require,module,exports){ 'use strict' exports.toByteArray = toByteArray @@ -56587,14 +56344,14 @@ function fromByteArray (uint8) { return parts.join('') } -},{}],89:[function(require,module,exports){ -/*! bignumber.js v2.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ +},{}],90:[function(require,module,exports){ +/*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ ;(function (globalObj) { 'use strict'; /* - bignumber.js v2.4.0 + bignumber.js v2.3.0 A JavaScript library for arbitrary-precision arithmetic. https://github.com/MikeMcl/bignumber.js Copyright (c) 2016 Michael Mclaughlin @@ -56602,7 +56359,7 @@ function fromByteArray (uint8) { */ - var BigNumber, cryptoObj, parseNumeric, + var cryptoObj, parseNumeric, isNumeric = /^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, mathceil = Math.ceil, mathfloor = Math.floor, @@ -59304,17 +59061,13 @@ function fromByteArray (uint8) { // EXPORT - BigNumber = constructorFactory(); - BigNumber.default = BigNumber.BigNumber = BigNumber; - - - // AMD. + // AMD. if ( typeof define == 'function' && define.amd ) { - define( function () { return BigNumber; } ); + define( function () { return constructorFactory(); } ); // Node.js and other environments that support module.exports. } else if ( typeof module != 'undefined' && module.exports ) { - module.exports = BigNumber; + module.exports = constructorFactory(); // Split string stops browserify adding crypto shim. if ( !cryptoObj ) try { cryptoObj = require('cry' + 'pto'); } catch (e) {} @@ -59322,11 +59075,11 @@ function fromByteArray (uint8) { // Browser. } else { if ( !globalObj ) globalObj = typeof self != 'undefined' ? self : Function('return this')(); - globalObj.BigNumber = BigNumber; + globalObj.BigNumber = constructorFactory(); } })(this); -},{}],90:[function(require,module,exports){ +},{}],91:[function(require,module,exports){ (function (Buffer){ // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] @@ -59441,7 +59194,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],91:[function(require,module,exports){ +},{"buffer":122}],92:[function(require,module,exports){ (function (module, exports) { 'use strict'; @@ -59499,12 +59252,8 @@ module.exports = { } BN.isBN = function isBN (num) { - if (num instanceof BN) { - return true; - } - return num !== null && typeof num === 'object' && - num.constructor.wordSize === BN.wordSize && Array.isArray(num.words); + num.constructor.name === 'BN' && Array.isArray(num.words); }; BN.max = function max (left, right) { @@ -61545,10 +61294,6 @@ module.exports = { assert(this.negative === 0, 'imaskn works only with positive numbers'); - if (this.length <= s) { - return this; - } - if (r !== 0) { s++; } @@ -62870,7 +62615,7 @@ module.exports = { }; })(typeof module === 'undefined' || module, this); -},{}],92:[function(require,module,exports){ +},{}],93:[function(require,module,exports){ var r; module.exports = function rand(len) { @@ -62929,9 +62674,9 @@ if (typeof window === 'object') { } } -},{}],93:[function(require,module,exports){ - },{}],94:[function(require,module,exports){ + +},{}],95:[function(require,module,exports){ (function (Buffer){ // based on the aes implimentation in triple sec // https://github.com/keybase/triplesec @@ -63112,7 +62857,7 @@ AES.prototype._doCryptBlock = function (M, keySchedule, SUB_MIX, SBOX) { exports.AES = AES }).call(this,require("buffer").Buffer) -},{"buffer":121}],95:[function(require,module,exports){ +},{"buffer":122}],96:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63213,7 +62958,7 @@ function xorTest (a, b) { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"./ghash":99,"buffer":121,"buffer-xor":120,"cipher-base":122,"inherits":465}],96:[function(require,module,exports){ +},{"./aes":95,"./ghash":100,"buffer":122,"buffer-xor":121,"cipher-base":123,"inherits":467}],97:[function(require,module,exports){ var ciphers = require('./encrypter') exports.createCipher = exports.Cipher = ciphers.createCipher exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv @@ -63226,7 +62971,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"./decrypter":97,"./encrypter":98,"./modes":100}],97:[function(require,module,exports){ +},{"./decrypter":98,"./encrypter":99,"./modes":101}],98:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63367,7 +63112,7 @@ exports.createDecipher = createDecipher exports.createDecipheriv = createDecipheriv }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],98:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],99:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63493,7 +63238,7 @@ exports.createCipheriv = createCipheriv exports.createCipher = createCipher }).call(this,require("buffer").Buffer) -},{"./aes":94,"./authCipher":95,"./modes":100,"./modes/cbc":101,"./modes/cfb":102,"./modes/cfb1":103,"./modes/cfb8":104,"./modes/ctr":105,"./modes/ecb":106,"./modes/ofb":107,"./streamCipher":108,"buffer":121,"cipher-base":122,"evp_bytestokey":456,"inherits":465}],99:[function(require,module,exports){ +},{"./aes":95,"./authCipher":96,"./modes":101,"./modes/cbc":102,"./modes/cfb":103,"./modes/cfb1":104,"./modes/cfb8":105,"./modes/ctr":106,"./modes/ecb":107,"./modes/ofb":108,"./streamCipher":109,"buffer":122,"cipher-base":123,"evp_bytestokey":458,"inherits":467}],100:[function(require,module,exports){ (function (Buffer){ var zeros = new Buffer(16) zeros.fill(0) @@ -63595,7 +63340,7 @@ function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],100:[function(require,module,exports){ +},{"buffer":122}],101:[function(require,module,exports){ exports['aes-128-ecb'] = { cipher: 'AES', key: 128, @@ -63768,7 +63513,7 @@ exports['aes-256-gcm'] = { type: 'auth' } -},{}],101:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ var xor = require('buffer-xor') exports.encrypt = function (self, block) { @@ -63787,7 +63532,7 @@ exports.decrypt = function (self, block) { return xor(out, pad) } -},{"buffer-xor":120}],102:[function(require,module,exports){ +},{"buffer-xor":121}],103:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63822,7 +63567,7 @@ function encryptStart (self, data, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],103:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],104:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad @@ -63860,7 +63605,7 @@ function shiftIn (buffer, value) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],104:[function(require,module,exports){ +},{"buffer":122}],105:[function(require,module,exports){ (function (Buffer){ function encryptByte (self, byteParam, decrypt) { var pad = self._cipher.encryptBlock(self._prev) @@ -63879,7 +63624,7 @@ exports.encrypt = function (self, chunk, decrypt) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],105:[function(require,module,exports){ +},{"buffer":122}],106:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63914,7 +63659,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],106:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],107:[function(require,module,exports){ exports.encrypt = function (self, block) { return self._cipher.encryptBlock(block) } @@ -63922,7 +63667,7 @@ exports.decrypt = function (self, block) { return self._cipher.decryptBlock(block) } -},{}],107:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ (function (Buffer){ var xor = require('buffer-xor') @@ -63942,7 +63687,7 @@ exports.encrypt = function (self, chunk) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"buffer-xor":120}],108:[function(require,module,exports){ +},{"buffer":122,"buffer-xor":121}],109:[function(require,module,exports){ (function (Buffer){ var aes = require('./aes') var Transform = require('cipher-base') @@ -63971,7 +63716,7 @@ StreamCipher.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"./aes":94,"buffer":121,"cipher-base":122,"inherits":465}],109:[function(require,module,exports){ +},{"./aes":95,"buffer":122,"cipher-base":123,"inherits":467}],110:[function(require,module,exports){ var ebtk = require('evp_bytestokey') var aes = require('browserify-aes/browser') var DES = require('browserify-des') @@ -64046,7 +63791,7 @@ function getCiphers () { } exports.listCiphers = exports.getCiphers = getCiphers -},{"browserify-aes/browser":96,"browserify-aes/modes":100,"browserify-des":110,"browserify-des/modes":111,"evp_bytestokey":456}],110:[function(require,module,exports){ +},{"browserify-aes/browser":97,"browserify-aes/modes":101,"browserify-des":111,"browserify-des/modes":112,"evp_bytestokey":458}],111:[function(require,module,exports){ (function (Buffer){ var CipherBase = require('cipher-base') var des = require('des.js') @@ -64093,7 +63838,7 @@ DES.prototype._final = function () { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"cipher-base":122,"des.js":424,"inherits":465}],111:[function(require,module,exports){ +},{"buffer":122,"cipher-base":123,"des.js":426,"inherits":467}],112:[function(require,module,exports){ exports['des-ecb'] = { key: 8, iv: 0 @@ -64119,7 +63864,7 @@ exports['des-ede'] = { iv: 0 } -},{}],112:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ (function (Buffer){ var bn = require('bn.js'); var randomBytes = require('randombytes'); @@ -64163,7 +63908,7 @@ function getr(priv) { } }).call(this,require("buffer").Buffer) -},{"bn.js":91,"buffer":121,"randombytes":486}],113:[function(require,module,exports){ +},{"bn.js":92,"buffer":122,"randombytes":488}],114:[function(require,module,exports){ (function (Buffer){ const Sha3 = require('js-sha3') @@ -64201,7 +63946,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"js-sha3":468}],114:[function(require,module,exports){ +},{"buffer":122,"js-sha3":470}],115:[function(require,module,exports){ (function (Buffer){ 'use strict' exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = { @@ -64277,7 +64022,7 @@ exports['RSA-MD5'] = exports.md5WithRSAEncryption = { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],115:[function(require,module,exports){ +},{"buffer":122}],116:[function(require,module,exports){ (function (Buffer){ var _algos = require('./algos') var createHash = require('create-hash') @@ -64384,7 +64129,7 @@ module.exports = { } }).call(this,require("buffer").Buffer) -},{"./algos":114,"./sign":117,"./verify":118,"buffer":121,"create-hash":419,"inherits":465,"stream":514}],116:[function(require,module,exports){ +},{"./algos":115,"./sign":118,"./verify":119,"buffer":122,"create-hash":421,"inherits":467,"stream":516}],117:[function(require,module,exports){ 'use strict' exports['1.3.132.0.10'] = 'secp256k1' @@ -64398,7 +64143,7 @@ exports['1.3.132.0.34'] = 'p384' exports['1.3.132.0.35'] = 'p521' -},{}],117:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var createHmac = require('create-hmac') @@ -64587,7 +64332,7 @@ module.exports.getKey = getKey module.exports.makeKey = makeKey }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"browserify-rsa":112,"buffer":121,"create-hmac":422,"elliptic":434,"parse-asn1":476}],118:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"browserify-rsa":113,"buffer":122,"create-hmac":424,"elliptic":436,"parse-asn1":478}],119:[function(require,module,exports){ (function (Buffer){ // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js var curves = require('./curves') @@ -64694,7 +64439,7 @@ function checkValue (b, q) { module.exports = verify }).call(this,require("buffer").Buffer) -},{"./curves":116,"bn.js":91,"buffer":121,"elliptic":434,"parse-asn1":476}],119:[function(require,module,exports){ +},{"./curves":117,"bn.js":92,"buffer":122,"elliptic":436,"parse-asn1":478}],120:[function(require,module,exports){ (function (global){ 'use strict'; @@ -64806,7 +64551,7 @@ exports.allocUnsafeSlow = function allocUnsafeSlow(size) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"buffer":121}],120:[function(require,module,exports){ +},{"buffer":122}],121:[function(require,module,exports){ (function (Buffer){ module.exports = function xor (a, b) { var length = Math.min(a.length, b.length) @@ -64820,7 +64565,7 @@ module.exports = function xor (a, b) { } }).call(this,require("buffer").Buffer) -},{"buffer":121}],121:[function(require,module,exports){ +},{"buffer":122}],122:[function(require,module,exports){ (function (global){ /*! * The buffer module from node.js, for the browser. @@ -64876,7 +64621,7 @@ exports.kMaxLength = kMaxLength() function typedArraySupport () { try { var arr = new Uint8Array(1) - arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }} + arr.foo = function () { return 42 } return arr.foo() === 42 && // typed array instances can be augmented typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` @@ -65020,7 +64765,7 @@ function allocUnsafe (that, size) { assertSize(size) that = createBuffer(that, size < 0 ? 0 : checked(size) | 0) if (!Buffer.TYPED_ARRAY_SUPPORT) { - for (var i = 0; i < size; ++i) { + for (var i = 0; i < size; i++) { that[i] = 0 } } @@ -65076,9 +64821,7 @@ function fromArrayBuffer (that, array, byteOffset, length) { throw new RangeError('\'length\' is out of bounds') } - if (byteOffset === undefined && length === undefined) { - array = new Uint8Array(array) - } else if (length === undefined) { + if (length === undefined) { array = new Uint8Array(array, byteOffset) } else { array = new Uint8Array(array, byteOffset, length) @@ -65200,14 +64943,14 @@ Buffer.concat = function concat (list, length) { var i if (length === undefined) { length = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { length += list[i].length } } var buffer = Buffer.allocUnsafe(length) var pos = 0 - for (i = 0; i < list.length; ++i) { + for (i = 0; i < list.length; i++) { var buf = list[i] if (!Buffer.isBuffer(buf)) { throw new TypeError('"list" argument must be an Array of Buffers') @@ -65239,6 +64982,7 @@ function byteLength (string, encoding) { switch (encoding) { case 'ascii': case 'binary': + // Deprecated case 'raw': case 'raws': return len @@ -65476,16 +65220,15 @@ function arrayIndexOf (arr, val, byteOffset, encoding) { } var foundIndex = -1 - for (var i = byteOffset; i < arrLength; ++i) { - if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + for (var i = 0; byteOffset + i < arrLength; i++) { + if (read(arr, byteOffset + i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { if (foundIndex === -1) foundIndex = i - if (i - foundIndex + 1 === valLength) return foundIndex * indexSize + if (i - foundIndex + 1 === valLength) return (byteOffset + foundIndex) * indexSize } else { if (foundIndex !== -1) i -= i - foundIndex foundIndex = -1 } } - return -1 } @@ -65550,7 +65293,7 @@ function hexWrite (buf, string, offset, length) { if (length > strLen / 2) { length = strLen / 2 } - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { var parsed = parseInt(string.substr(i * 2, 2), 16) if (isNaN(parsed)) return i buf[offset + i] = parsed @@ -65764,7 +65507,7 @@ function asciiSlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i] & 0x7F) } return ret @@ -65774,7 +65517,7 @@ function binarySlice (buf, start, end) { var ret = '' end = Math.min(buf.length, end) - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { ret += String.fromCharCode(buf[i]) } return ret @@ -65787,7 +65530,7 @@ function hexSlice (buf, start, end) { if (!end || end < 0 || end > len) end = len var out = '' - for (var i = start; i < end; ++i) { + for (var i = start; i < end; i++) { out += toHex(buf[i]) } return out @@ -65830,7 +65573,7 @@ Buffer.prototype.slice = function slice (start, end) { } else { var sliceLen = end - start newBuf = new Buffer(sliceLen, undefined) - for (var i = 0; i < sliceLen; ++i) { + for (var i = 0; i < sliceLen; i++) { newBuf[i] = this[i + start] } } @@ -66057,7 +65800,7 @@ Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { function objectWriteUInt16 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> (littleEndian ? i : 1 - i) * 8 } @@ -66091,7 +65834,7 @@ Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert function objectWriteUInt32 (buf, value, offset, littleEndian) { if (value < 0) value = 0xffffffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) { + for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff } } @@ -66306,12 +66049,12 @@ Buffer.prototype.copy = function copy (target, targetStart, start, end) { if (this === target && start < targetStart && targetStart < end) { // descending copy from end - for (i = len - 1; i >= 0; --i) { + for (i = len - 1; i >= 0; i--) { target[i + targetStart] = this[i + start] } } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { // ascending copy from start - for (i = 0; i < len; ++i) { + for (i = 0; i < len; i++) { target[i + targetStart] = this[i + start] } } else { @@ -66372,7 +66115,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { var i if (typeof val === 'number') { - for (i = start; i < end; ++i) { + for (i = start; i < end; i++) { this[i] = val } } else { @@ -66380,7 +66123,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { ? val : utf8ToBytes(new Buffer(val, encoding).toString()) var len = bytes.length - for (i = 0; i < end - start; ++i) { + for (i = 0; i < end - start; i++) { this[i + start] = bytes[i % len] } } @@ -66422,7 +66165,7 @@ function utf8ToBytes (string, units) { var leadSurrogate = null var bytes = [] - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { codePoint = string.charCodeAt(i) // is surrogate component @@ -66497,7 +66240,7 @@ function utf8ToBytes (string, units) { function asciiToBytes (str) { var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { // Node's code seems to be doing this and not & 0x7F.. byteArray.push(str.charCodeAt(i) & 0xFF) } @@ -66507,7 +66250,7 @@ function asciiToBytes (str) { function utf16leToBytes (str, units) { var c, hi, lo var byteArray = [] - for (var i = 0; i < str.length; ++i) { + for (var i = 0; i < str.length; i++) { if ((units -= 2) < 0) break c = str.charCodeAt(i) @@ -66525,7 +66268,7 @@ function base64ToBytes (str) { } function blitBuffer (src, dst, offset, length) { - for (var i = 0; i < length; ++i) { + for (var i = 0; i < length; i++) { if ((i + offset >= dst.length) || (i >= src.length)) break dst[i + offset] = src[i] } @@ -66537,7 +66280,7 @@ function isnan (val) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"base64-js":88,"ieee754":463,"isarray":467}],122:[function(require,module,exports){ +},{"base64-js":89,"ieee754":465,"isarray":469}],123:[function(require,module,exports){ (function (Buffer){ var Transform = require('stream').Transform var inherits = require('inherits') @@ -66631,21 +66374,21 @@ CipherBase.prototype._toString = function (value, enc, final) { } }).call(this,require("buffer").Buffer) -},{"buffer":121,"inherits":465,"stream":514,"string_decoder":515}],123:[function(require,module,exports){ +},{"buffer":122,"inherits":467,"stream":516,"string_decoder":517}],124:[function(require,module,exports){ require('../../modules/core.regexp.escape'); module.exports = require('../../modules/_core').RegExp.escape; -},{"../../modules/_core":144,"../../modules/core.regexp.escape":240}],124:[function(require,module,exports){ +},{"../../modules/_core":145,"../../modules/core.regexp.escape":242}],125:[function(require,module,exports){ module.exports = function(it){ if(typeof it != 'function')throw TypeError(it + ' is not a function!'); return it; }; -},{}],125:[function(require,module,exports){ -var cof = require('./_cof'); -module.exports = function(it, msg){ - if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); - return +it; +},{}],126:[function(require,module,exports){ +var cof = require('./_cof'); +module.exports = function(it, msg){ + if(typeof it != 'number' && cof(it) != 'Number')throw TypeError(msg); + return +it; }; -},{"./_cof":139}],126:[function(require,module,exports){ +},{"./_cof":140}],127:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables') , ArrayProto = Array.prototype; @@ -66653,19 +66396,19 @@ if(ArrayProto[UNSCOPABLES] == undefined)require('./_hide')(ArrayProto, UNSCOPABL module.exports = function(key){ ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":161,"./_wks":238}],127:[function(require,module,exports){ +},{"./_hide":162,"./_wks":239}],128:[function(require,module,exports){ module.exports = function(it, Constructor, name, forbiddenField){ if(!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)){ throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],128:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function(it){ if(!isObject(it))throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":170}],129:[function(require,module,exports){ +},{"./_is-object":171}],130:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66692,7 +66435,7 @@ module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, from += inc; } return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],130:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],131:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object') @@ -66708,7 +66451,7 @@ module.exports = function fill(value /*, start = 0, end = @length */){ while(endPos > index)O[index++] = value; return O; }; -},{"./_to-index":226,"./_to-length":229,"./_to-object":230}],131:[function(require,module,exports){ +},{"./_to-index":227,"./_to-length":230,"./_to-object":231}],132:[function(require,module,exports){ var forOf = require('./_for-of'); module.exports = function(iter, ITERATOR){ @@ -66717,7 +66460,7 @@ module.exports = function(iter, ITERATOR){ return result; }; -},{"./_for-of":158}],132:[function(require,module,exports){ +},{"./_for-of":159}],133:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject') @@ -66739,7 +66482,7 @@ module.exports = function(IS_INCLUDES){ } return !IS_INCLUDES && -1; }; }; -},{"./_to-index":226,"./_to-iobject":228,"./_to-length":229}],133:[function(require,module,exports){ +},{"./_to-index":227,"./_to-iobject":229,"./_to-length":230}],134:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -66784,60 +66527,60 @@ module.exports = function(TYPE, $create){ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result; }; }; -},{"./_array-species-create":136,"./_ctx":146,"./_iobject":166,"./_to-length":229,"./_to-object":230}],134:[function(require,module,exports){ -var aFunction = require('./_a-function') - , toObject = require('./_to-object') - , IObject = require('./_iobject') - , toLength = require('./_to-length'); - -module.exports = function(that, callbackfn, aLen, memo, isRight){ - aFunction(callbackfn); - var O = toObject(that) - , self = IObject(O) - , length = toLength(O.length) - , index = isRight ? length - 1 : 0 - , i = isRight ? -1 : 1; - if(aLen < 2)for(;;){ - if(index in self){ - memo = self[index]; - index += i; - break; - } - index += i; - if(isRight ? index < 0 : length <= index){ - throw TypeError('Reduce of empty array with no initial value'); - } - } - for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ - memo = callbackfn(memo, self[index], index, O); - } - return memo; +},{"./_array-species-create":137,"./_ctx":147,"./_iobject":167,"./_to-length":230,"./_to-object":231}],135:[function(require,module,exports){ +var aFunction = require('./_a-function') + , toObject = require('./_to-object') + , IObject = require('./_iobject') + , toLength = require('./_to-length'); + +module.exports = function(that, callbackfn, aLen, memo, isRight){ + aFunction(callbackfn); + var O = toObject(that) + , self = IObject(O) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(aLen < 2)for(;;){ + if(index in self){ + memo = self[index]; + index += i; + break; + } + index += i; + if(isRight ? index < 0 : length <= index){ + throw TypeError('Reduce of empty array with no initial value'); + } + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in self){ + memo = callbackfn(memo, self[index], index, O); + } + return memo; +}; +},{"./_a-function":125,"./_iobject":167,"./_to-length":230,"./_to-object":231}],136:[function(require,module,exports){ +var isObject = require('./_is-object') + , isArray = require('./_is-array') + , SPECIES = require('./_wks')('species'); + +module.exports = function(original){ + var C; + if(isArray(original)){ + C = original.constructor; + // cross-realm fallback + if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; + if(isObject(C)){ + C = C[SPECIES]; + if(C === null)C = undefined; + } + } return C === undefined ? Array : C; }; -},{"./_a-function":124,"./_iobject":166,"./_to-length":229,"./_to-object":230}],135:[function(require,module,exports){ -var isObject = require('./_is-object') - , isArray = require('./_is-array') - , SPECIES = require('./_wks')('species'); - -module.exports = function(original){ - var C; - if(isArray(original)){ - C = original.constructor; - // cross-realm fallback - if(typeof C == 'function' && (C === Array || isArray(C.prototype)))C = undefined; - if(isObject(C)){ - C = C[SPECIES]; - if(C === null)C = undefined; - } - } return C === undefined ? Array : C; -}; -},{"./_is-array":168,"./_is-object":170,"./_wks":238}],136:[function(require,module,exports){ +},{"./_is-array":169,"./_is-object":171,"./_wks":239}],137:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); module.exports = function(original, length){ return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":135}],137:[function(require,module,exports){ +},{"./_array-species-constructor":136}],138:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function') , isObject = require('./_is-object') @@ -66862,7 +66605,7 @@ module.exports = Function.bind || function bind(that /*, args... */){ if(isObject(fn.prototype))bound.prototype = fn.prototype; return bound; }; -},{"./_a-function":124,"./_invoke":165,"./_is-object":170}],138:[function(require,module,exports){ +},{"./_a-function":125,"./_invoke":166,"./_is-object":171}],139:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof') , TAG = require('./_wks')('toStringTag') @@ -66886,16 +66629,17 @@ module.exports = function(it){ // ES3 arguments fallback : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":139,"./_wks":238}],139:[function(require,module,exports){ +},{"./_cof":140,"./_wks":239}],140:[function(require,module,exports){ var toString = {}.toString; module.exports = function(it){ return toString.call(it).slice(8, -1); }; -},{}],140:[function(require,module,exports){ +},{}],141:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f , create = require('./_object-create') + , hide = require('./_hide') , redefineAll = require('./_redefine-all') , ctx = require('./_ctx') , anInstance = require('./_an-instance') @@ -67035,7 +66779,7 @@ module.exports = { setSpecies(NAME); } }; -},{"./_an-instance":127,"./_ctx":146,"./_defined":148,"./_descriptors":149,"./_for-of":158,"./_iter-define":174,"./_iter-step":176,"./_meta":183,"./_object-create":187,"./_object-dp":188,"./_redefine-all":207,"./_set-species":212}],141:[function(require,module,exports){ +},{"./_an-instance":128,"./_ctx":147,"./_defined":149,"./_descriptors":150,"./_for-of":159,"./_hide":162,"./_iter-define":175,"./_iter-step":177,"./_meta":184,"./_object-create":188,"./_object-dp":189,"./_redefine-all":208,"./_set-species":213}],142:[function(require,module,exports){ // https://github.com/DavidBruant/Map-Set.prototype.toJSON var classof = require('./_classof') , from = require('./_array-from-iterable'); @@ -67045,7 +66789,7 @@ module.exports = function(NAME){ return from(this); }; }; -},{"./_array-from-iterable":131,"./_classof":138}],142:[function(require,module,exports){ +},{"./_array-from-iterable":132,"./_classof":139}],143:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all') , getWeak = require('./_meta').getWeak @@ -67129,7 +66873,7 @@ module.exports = { }, ufstore: uncaughtFrozenStore }; -},{"./_an-instance":127,"./_an-object":128,"./_array-methods":133,"./_for-of":158,"./_has":160,"./_is-object":170,"./_meta":183,"./_redefine-all":207}],143:[function(require,module,exports){ +},{"./_an-instance":128,"./_an-object":129,"./_array-methods":134,"./_for-of":159,"./_has":161,"./_is-object":171,"./_meta":184,"./_redefine-all":208}],144:[function(require,module,exports){ 'use strict'; var global = require('./_global') , $export = require('./_export') @@ -67215,19 +66959,19 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){ return C; }; -},{"./_an-instance":127,"./_export":153,"./_fails":155,"./_for-of":158,"./_global":159,"./_inherit-if-required":164,"./_is-object":170,"./_iter-detect":175,"./_meta":183,"./_redefine":208,"./_redefine-all":207,"./_set-to-string-tag":213}],144:[function(require,module,exports){ +},{"./_an-instance":128,"./_export":154,"./_fails":156,"./_for-of":159,"./_global":160,"./_inherit-if-required":165,"./_is-object":171,"./_iter-detect":176,"./_meta":184,"./_redefine":209,"./_redefine-all":208,"./_set-to-string-tag":214}],145:[function(require,module,exports){ var core = module.exports = {version: '2.4.0'}; if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef -},{}],145:[function(require,module,exports){ -'use strict'; -var $defineProperty = require('./_object-dp') - , createDesc = require('./_property-desc'); - -module.exports = function(object, index, value){ - if(index in object)$defineProperty.f(object, index, createDesc(0, value)); - else object[index] = value; +},{}],146:[function(require,module,exports){ +'use strict'; +var $defineProperty = require('./_object-dp') + , createDesc = require('./_property-desc'); + +module.exports = function(object, index, value){ + if(index in object)$defineProperty.f(object, index, createDesc(0, value)); + else object[index] = value; }; -},{"./_object-dp":188,"./_property-desc":206}],146:[function(require,module,exports){ +},{"./_object-dp":189,"./_property-desc":207}],147:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function(fn, that, length){ @@ -67248,28 +66992,28 @@ module.exports = function(fn, that, length){ return fn.apply(that, arguments); }; }; -},{"./_a-function":124}],147:[function(require,module,exports){ -'use strict'; -var anObject = require('./_an-object') - , toPrimitive = require('./_to-primitive') - , NUMBER = 'number'; - -module.exports = function(hint){ - if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); - return toPrimitive(anObject(this), hint != NUMBER); +},{"./_a-function":125}],148:[function(require,module,exports){ +'use strict'; +var anObject = require('./_an-object') + , toPrimitive = require('./_to-primitive') + , NUMBER = 'number'; + +module.exports = function(hint){ + if(hint !== 'string' && hint !== NUMBER && hint !== 'default')throw TypeError('Incorrect hint'); + return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":128,"./_to-primitive":231}],148:[function(require,module,exports){ +},{"./_an-object":129,"./_to-primitive":232}],149:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function(it){ if(it == undefined)throw TypeError("Can't call method on " + it); return it; }; -},{}],149:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function(){ return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_fails":155}],150:[function(require,module,exports){ +},{"./_fails":156}],151:[function(require,module,exports){ var isObject = require('./_is-object') , document = require('./_global').document // in old IE typeof document.createElement is 'object' @@ -67277,12 +67021,12 @@ var isObject = require('./_is-object') module.exports = function(it){ return is ? document.createElement(it) : {}; }; -},{"./_global":159,"./_is-object":170}],151:[function(require,module,exports){ -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' +},{"./_global":160,"./_is-object":171}],152:[function(require,module,exports){ +// IE 8- don't enum bug keys +module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],152:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys') , gOPS = require('./_object-gops') @@ -67298,7 +67042,7 @@ module.exports = function(it){ while(symbols.length > i)if(isEnum.call(it, key = symbols[i++]))result.push(key); } return result; }; -},{"./_object-gops":194,"./_object-keys":197,"./_object-pie":198}],153:[function(require,module,exports){ +},{"./_object-gops":195,"./_object-keys":198,"./_object-pie":199}],154:[function(require,module,exports){ var global = require('./_global') , core = require('./_core') , hide = require('./_hide') @@ -67342,7 +67086,7 @@ $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":144,"./_ctx":146,"./_global":159,"./_hide":161,"./_redefine":208}],154:[function(require,module,exports){ +},{"./_core":145,"./_ctx":147,"./_global":160,"./_hide":162,"./_redefine":209}],155:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function(KEY){ var re = /./; @@ -67355,7 +67099,7 @@ module.exports = function(KEY){ } catch(f){ /* empty */ } } return true; }; -},{"./_wks":238}],155:[function(require,module,exports){ +},{"./_wks":239}],156:[function(require,module,exports){ module.exports = function(exec){ try { return !!exec(); @@ -67363,7 +67107,7 @@ module.exports = function(exec){ return true; } }; -},{}],156:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ 'use strict'; var hide = require('./_hide') , redefine = require('./_redefine') @@ -67392,7 +67136,7 @@ module.exports = function(KEY, length, exec){ ); } }; -},{"./_defined":148,"./_fails":155,"./_hide":161,"./_redefine":208,"./_wks":238}],157:[function(require,module,exports){ +},{"./_defined":149,"./_fails":156,"./_hide":162,"./_redefine":209,"./_wks":239}],158:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -67406,7 +67150,7 @@ module.exports = function(){ if(that.sticky) result += 'y'; return result; }; -},{"./_an-object":128}],158:[function(require,module,exports){ +},{"./_an-object":129}],159:[function(require,module,exports){ var ctx = require('./_ctx') , call = require('./_iter-call') , isArrayIter = require('./_is-array-iter') @@ -67432,17 +67176,17 @@ var exports = module.exports = function(iterable, entries, fn, that, ITERATOR){ }; exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":128,"./_ctx":146,"./_is-array-iter":167,"./_iter-call":172,"./_to-length":229,"./core.get-iterator-method":239}],159:[function(require,module,exports){ +},{"./_an-object":129,"./_ctx":147,"./_is-array-iter":168,"./_iter-call":173,"./_to-length":230,"./core.get-iterator-method":240}],160:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef -},{}],160:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function(it, key){ return hasOwnProperty.call(it, key); }; -},{}],161:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ var dP = require('./_object-dp') , createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function(object, key, value){ @@ -67451,22 +67195,22 @@ module.exports = require('./_descriptors') ? function(object, key, value){ object[key] = value; return object; }; -},{"./_descriptors":149,"./_object-dp":188,"./_property-desc":206}],162:[function(require,module,exports){ +},{"./_descriptors":150,"./_object-dp":189,"./_property-desc":207}],163:[function(require,module,exports){ module.exports = require('./_global').document && document.documentElement; -},{"./_global":159}],163:[function(require,module,exports){ -module.exports = !require('./_descriptors') && !require('./_fails')(function(){ - return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; +},{"./_global":160}],164:[function(require,module,exports){ +module.exports = !require('./_descriptors') && !require('./_fails')(function(){ + return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; }); -},{"./_descriptors":149,"./_dom-create":150,"./_fails":155}],164:[function(require,module,exports){ -var isObject = require('./_is-object') - , setPrototypeOf = require('./_set-proto').set; -module.exports = function(that, target, C){ - var P, S = target.constructor; - if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ - setPrototypeOf(that, P); - } return that; -}; -},{"./_is-object":170,"./_set-proto":211}],165:[function(require,module,exports){ +},{"./_descriptors":150,"./_dom-create":151,"./_fails":156}],165:[function(require,module,exports){ +var isObject = require('./_is-object') + , setPrototypeOf = require('./_set-proto').set; +module.exports = function(that, target, C){ + var P, S = target.constructor; + if(S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf){ + setPrototypeOf(that, P); + } return that; +}; +},{"./_is-object":171,"./_set-proto":212}],166:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function(fn, args, that){ var un = that === undefined; @@ -67483,13 +67227,13 @@ module.exports = function(fn, args, that){ : fn.call(that, args[0], args[1], args[2], args[3]); } return fn.apply(that, args); }; -},{}],166:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":139}],167:[function(require,module,exports){ +},{"./_cof":140}],168:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators') , ITERATOR = require('./_wks')('iterator') @@ -67498,24 +67242,24 @@ var Iterators = require('./_iterators') module.exports = function(it){ return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":177,"./_wks":238}],168:[function(require,module,exports){ +},{"./_iterators":178,"./_wks":239}],169:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg){ return cof(arg) == 'Array'; }; -},{"./_cof":139}],169:[function(require,module,exports){ +},{"./_cof":140}],170:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object') , floor = Math.floor; module.exports = function isInteger(it){ return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":170}],170:[function(require,module,exports){ +},{"./_is-object":171}],171:[function(require,module,exports){ module.exports = function(it){ return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],171:[function(require,module,exports){ +},{}],172:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object') , cof = require('./_cof') @@ -67524,7 +67268,7 @@ module.exports = function(it){ var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":139,"./_is-object":170,"./_wks":238}],172:[function(require,module,exports){ +},{"./_cof":140,"./_is-object":171,"./_wks":239}],173:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function(iterator, fn, value, entries){ @@ -67537,7 +67281,7 @@ module.exports = function(iterator, fn, value, entries){ throw e; } }; -},{"./_an-object":128}],173:[function(require,module,exports){ +},{"./_an-object":129}],174:[function(require,module,exports){ 'use strict'; var create = require('./_object-create') , descriptor = require('./_property-desc') @@ -67551,7 +67295,7 @@ module.exports = function(Constructor, NAME, next){ Constructor.prototype = create(IteratorPrototype, {next: descriptor(1, next)}); setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":161,"./_object-create":187,"./_property-desc":206,"./_set-to-string-tag":213,"./_wks":238}],174:[function(require,module,exports){ +},{"./_hide":162,"./_object-create":188,"./_property-desc":207,"./_set-to-string-tag":214,"./_wks":239}],175:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library') , $export = require('./_export') @@ -67622,7 +67366,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED } return methods; }; -},{"./_export":153,"./_has":160,"./_hide":161,"./_iter-create":173,"./_iterators":177,"./_library":179,"./_object-gpo":195,"./_redefine":208,"./_set-to-string-tag":213,"./_wks":238}],175:[function(require,module,exports){ +},{"./_export":154,"./_has":161,"./_hide":162,"./_iter-create":174,"./_iterators":178,"./_library":180,"./_object-gpo":196,"./_redefine":209,"./_set-to-string-tag":214,"./_wks":239}],176:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator') , SAFE_CLOSING = false; @@ -67644,13 +67388,13 @@ module.exports = function(exec, skipClosing){ } catch(e){ /* empty */ } return safe; }; -},{"./_wks":238}],176:[function(require,module,exports){ +},{"./_wks":239}],177:[function(require,module,exports){ module.exports = function(done, value){ return {value: value, done: !!done}; }; -},{}],177:[function(require,module,exports){ -module.exports = {}; },{}],178:[function(require,module,exports){ +module.exports = {}; +},{}],179:[function(require,module,exports){ var getKeys = require('./_object-keys') , toIObject = require('./_to-iobject'); module.exports = function(object, el){ @@ -67661,9 +67405,9 @@ module.exports = function(object, el){ , key; while(length > index)if(O[key = keys[index++]] === el)return key; }; -},{"./_object-keys":197,"./_to-iobject":228}],179:[function(require,module,exports){ +},{"./_object-keys":198,"./_to-iobject":229}],180:[function(require,module,exports){ module.exports = false; -},{}],180:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -67674,17 +67418,17 @@ module.exports = (!$expm1 ) ? function expm1(x){ return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],181:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x){ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],182:[function(require,module,exports){ +},{}],183:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x){ return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],183:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ var META = require('./_uid')('meta') , isObject = require('./_is-object') , has = require('./_has') @@ -67738,7 +67482,7 @@ var meta = module.exports = { getWeak: getWeak, onFreeze: onFreeze }; -},{"./_fails":155,"./_has":160,"./_is-object":170,"./_object-dp":188,"./_uid":235}],184:[function(require,module,exports){ +},{"./_fails":156,"./_has":161,"./_is-object":171,"./_object-dp":189,"./_uid":236}],185:[function(require,module,exports){ var Map = require('./es6.map') , $export = require('./_export') , shared = require('./_shared')('metadata') @@ -67790,7 +67534,7 @@ module.exports = { key: toMetaKey, exp: exp }; -},{"./_export":153,"./_shared":215,"./es6.map":270,"./es6.weak-map":376}],185:[function(require,module,exports){ +},{"./_export":154,"./_shared":216,"./es6.map":272,"./es6.weak-map":378}],186:[function(require,module,exports){ var global = require('./_global') , macrotask = require('./_task').set , Observer = global.MutationObserver || global.WebKitMutationObserver @@ -67859,7 +67603,7 @@ module.exports = function(){ } last = task; }; }; -},{"./_cof":139,"./_global":159,"./_task":225}],186:[function(require,module,exports){ +},{"./_cof":140,"./_global":160,"./_task":226}],187:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var getKeys = require('./_object-keys') @@ -67893,50 +67637,48 @@ module.exports = !$assign || require('./_fails')(function(){ while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key]; } return T; } : $assign; -},{"./_fails":155,"./_iobject":166,"./_object-gops":194,"./_object-keys":197,"./_object-pie":198,"./_to-object":230}],187:[function(require,module,exports){ -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = require('./_an-object') - , dPs = require('./_object-dps') - , enumBugKeys = require('./_enum-bug-keys') - , IE_PROTO = require('./_shared-key')('IE_PROTO') - , Empty = function(){ /* empty */ } - , PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function(){ - // Thrash, waste and sodomy: IE GC bug - var iframe = require('./_dom-create')('iframe') - , i = enumBugKeys.length - , lt = '<' - , gt = '>' - , iframeDocument; - iframe.style.display = 'none'; - require('./_html').appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while(i--)delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties){ - var result; - if(O !== null){ - Empty[PROTOTYPE] = anObject(O); - result = new Empty; - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - -},{"./_an-object":128,"./_dom-create":150,"./_enum-bug-keys":151,"./_html":162,"./_object-dps":189,"./_shared-key":214}],188:[function(require,module,exports){ +},{"./_fails":156,"./_iobject":167,"./_object-gops":195,"./_object-keys":198,"./_object-pie":199,"./_to-object":231}],188:[function(require,module,exports){ +// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) +var anObject = require('./_an-object') + , dPs = require('./_object-dps') + , enumBugKeys = require('./_enum-bug-keys') + , IE_PROTO = require('./_shared-key')('IE_PROTO') + , Empty = function(){ /* empty */ } + , PROTOTYPE = 'prototype'; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var createDict = function(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = require('./_dom-create')('iframe') + , i = enumBugKeys.length + , gt = '>' + , iframeDocument; + iframe.style.display = 'none'; + require('./_html').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write('